Commit 66b004a9 authored by 华国豪's avatar 华国豪 🙄

1

parent a1403042
......@@ -524,7 +524,7 @@ export default {
},watch:{
BusinessId: {
handler(val, oldVal){
// this.GetContactByBusinessID()
this.GetLogPageList()
},
deep:true
}
......
......@@ -162,9 +162,9 @@
<el-select v-model="form.CustomerId" :disabled="type==='1' ? true : false" placeholder="请选择客户" v-else>
<el-option
v-for="item in CustomerList"
:key="item.ID"
:label="item.GusetName"
:value="item.ID">
:key="item.Id"
:label="item.GuestName"
:value="item.Id">
</el-option>
</el-select>
</el-form-item>
......
......@@ -251,7 +251,7 @@
:visible.sync="drawer2"
direction="rtl"
:before-close="handleClose">
<businessInfoBox :BusinessId="BusinessId" :BusinessIdCustomerId="BusinessIdCustomerId" @transferS="transfer" @watersS="waters" @editCustbusiness="editCustbusiness"/>
<businessInfoBox :BusinessId="BusinessId" :CustomerType="msg.CustomerType" :BusinessIdCustomerId="BusinessIdCustomerId" @transferS="transfer" @watersS="waters" @editCustbusiness="editCustbusiness"/>
</el-drawer>
<!-- 编辑客户 -->
<div v-if="dialogCustomerVisible">
......@@ -498,7 +498,6 @@ export default {
$this.getList()
})
this.MsgBus.$on('editScene', function (){
console.log(1)
$this.GetSceneEmployeeList()
})
},beforeDestroy() {
......@@ -626,7 +625,6 @@ export default {
},
// 关注
CareforCustomerBusiness(scope){
console.log(scope.row)
this.apipost('/api/Customer/CareforCustomerBusiness', {BusinessCreateID: scope.row.BusinessCreateID}, res=>{
if (res.data.resultCode == 1) {
this.$message.success('操作成功');
......@@ -637,7 +635,6 @@ export default {
// 转移
transfer(type){
if (type !== 2) {
console.log(typeof type)
if (type === 3) {
this.multipleSelection.push(this.CustomerId)
}
......@@ -691,7 +688,6 @@ export default {
this.dialogCustomerVisible = true
},
openDetails2(scope){
console.log(scope.row)
this.BusinessId = scope.row.ID
this.BusinessIdCustomerId = scope.row.CustomerId
this.drawer2 = true
......
......@@ -440,7 +440,8 @@ export default {
sendObj:"",
sendTime:"",
isAll:false,
}
},
transferMsg: {}
};
},
mounted() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment