|
@@ -83,12 +83,12 @@
|
|
v-if="scope.row.IsSuspend ===1 || scope.row.Status=='潜在'"
|
|
v-if="scope.row.IsSuspend ===1 || scope.row.Status=='潜在'"
|
|
@click="goDetail(scope.row)"
|
|
@click="goDetail(scope.row)"
|
|
class="mouse-enter"
|
|
class="mouse-enter"
|
|
- :class="{'color-red':(scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0) || scope.row.IsUserMaker==0}"
|
|
|
|
|
|
+ :class="{'color-red':(scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0) || scope.row.IsUserMaker== 0}"
|
|
:style="scope.row.Status=='潜在'?'':'color:#bbb;cursor:pointer'">
|
|
:style="scope.row.Status=='潜在'?'':'color:#bbb;cursor:pointer'">
|
|
{{scope.row.CompanyName}}
|
|
{{scope.row.CompanyName}}
|
|
</span>
|
|
</span>
|
|
<span v-else style="color:#409EFF;cursor:pointer;" @click="goDetail(scope.row)" class="customName"
|
|
<span v-else style="color:#409EFF;cursor:pointer;" @click="goDetail(scope.row)" class="customName"
|
|
- :class="{'isShared':scope.row.IsShared,'color-red':(scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0) || scope.row.IsUserMaker==0}">{{scope.row.CompanyName}}
|
|
|
|
|
|
+ :class="{'isShared':scope.row.IsShared,'color-red':(scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0) || scope.row.IsUserMaker== 0}">{{scope.row.CompanyName}}
|
|
</span>
|
|
</span>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<img width="15" src="../../../assets/img/icons/remark.png" alt="" v-if="scope.row.RenewalReason||(scope.row.Status==='冻结'&&scope.rowFreezeReason)">
|
|
<img width="15" src="../../../assets/img/icons/remark.png" alt="" v-if="scope.row.RenewalReason||(scope.row.Status==='冻结'&&scope.rowFreezeReason)">
|
|
@@ -483,6 +483,7 @@
|
|
@addOver="addTryOver"
|
|
@addOver="addTryOver"
|
|
@close="isAddTrial=false"/>
|
|
@close="isAddTrial=false"/>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
+ <historical-notes-dlg :historicalNotesDlgVisible.sync="historicalNotesDlgVisible" :CompanyId.sync="historicalNotesId" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -497,10 +498,13 @@ import CustomRemarkDialog from './components/customRemarkDialog.vue';
|
|
import ContractInfo from '../compontents/ContractInfo.vue';
|
|
import ContractInfo from '../compontents/ContractInfo.vue';
|
|
import CompleteInfo from '../compontents/CompleteInfo.vue';
|
|
import CompleteInfo from '../compontents/CompleteInfo.vue';
|
|
import Cauthlist from '../compontents/CauthList.vue';
|
|
import Cauthlist from '../compontents/CauthList.vue';
|
|
|
|
+
|
|
|
|
+import HistoricalNotesDlg from "@/components/historicalNotesDlg.vue";
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
name:'',
|
|
name:'',
|
|
mixins: [ mixin ],
|
|
mixins: [ mixin ],
|
|
- components: {TotalDayDialog,AccumulativeFrequencyDlg,permissionView, ShareListDialog,CustomRemarkDialog,ContractInfo,CompleteInfo,Cauthlist},
|
|
|
|
|
|
+ components: {TotalDayDialog,AccumulativeFrequencyDlg,permissionView, ShareListDialog,CustomRemarkDialog,ContractInfo,CompleteInfo,Cauthlist,HistoricalNotesDlg},
|
|
computed:{
|
|
computed:{
|
|
isPWang(){
|
|
isPWang(){
|
|
return this.adminId == 66
|
|
return this.adminId == 66
|
|
@@ -571,6 +575,7 @@ export default {
|
|
BtnServiceRecord:'沟通记录',
|
|
BtnServiceRecord:'沟通记录',
|
|
BtnRemarkView:'备注',
|
|
BtnRemarkView:'备注',
|
|
BtnShare:'设置共享',
|
|
BtnShare:'设置共享',
|
|
|
|
+ BtnRemarkViewHistory:'历史备注'
|
|
}, // 按钮命令列表
|
|
}, // 按钮命令列表
|
|
accumulativeFrequencyDlg:false,//路演业阅读的弹框
|
|
accumulativeFrequencyDlg:false,//路演业阅读的弹框
|
|
accumulativeFrequencyItem:{},
|
|
accumulativeFrequencyItem:{},
|
|
@@ -599,6 +604,10 @@ export default {
|
|
},//销售级联配置
|
|
},//销售级联配置
|
|
|
|
|
|
IsShareGroup:false,//是否为咨询组销售
|
|
IsShareGroup:false,//是否为咨询组销售
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ historicalNotesDlgVisible: false, //历史备注的弹框
|
|
|
|
+ historicalNotesId: 0,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -694,6 +703,8 @@ export default {
|
|
this.addTrialHandle(query.data)
|
|
this.addTrialHandle(query.data)
|
|
}else if(query.type=='设置共享' || query.type=='取消共享'){
|
|
}else if(query.type=='设置共享' || query.type=='取消共享'){
|
|
this.shareSetting(query.data)
|
|
this.shareSetting(query.data)
|
|
|
|
+ }else if(query.type=='历史备注'){
|
|
|
|
+ this.historicalNotesClickHandler(query.data)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 设置/取消 共享
|
|
// 设置/取消 共享
|
|
@@ -1044,6 +1055,11 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ // 点击了历史留言
|
|
|
|
+ historicalNotesClickHandler(item) {
|
|
|
|
+ this.historicalNotesDlgVisible = true;
|
|
|
|
+ this.historicalNotesId = item.CompanyId;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
this.getSale()
|
|
this.getSale()
|