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

1

parent a1403042
...@@ -524,7 +524,7 @@ export default { ...@@ -524,7 +524,7 @@ export default {
},watch:{ },watch:{
BusinessId: { BusinessId: {
handler(val, oldVal){ handler(val, oldVal){
// this.GetContactByBusinessID() this.GetLogPageList()
}, },
deep:true deep:true
} }
......
...@@ -162,9 +162,9 @@ ...@@ -162,9 +162,9 @@
<el-select v-model="form.CustomerId" :disabled="type==='1' ? true : false" placeholder="请选择客户" v-else> <el-select v-model="form.CustomerId" :disabled="type==='1' ? true : false" placeholder="请选择客户" v-else>
<el-option <el-option
v-for="item in CustomerList" v-for="item in CustomerList"
:key="item.ID" :key="item.Id"
:label="item.GusetName" :label="item.GuestName"
:value="item.ID"> :value="item.Id">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
......
...@@ -251,7 +251,7 @@ ...@@ -251,7 +251,7 @@
:visible.sync="drawer2" :visible.sync="drawer2"
direction="rtl" direction="rtl"
:before-close="handleClose"> :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> </el-drawer>
<!-- 编辑客户 --> <!-- 编辑客户 -->
<div v-if="dialogCustomerVisible"> <div v-if="dialogCustomerVisible">
...@@ -498,7 +498,6 @@ export default { ...@@ -498,7 +498,6 @@ export default {
$this.getList() $this.getList()
}) })
this.MsgBus.$on('editScene', function (){ this.MsgBus.$on('editScene', function (){
console.log(1)
$this.GetSceneEmployeeList() $this.GetSceneEmployeeList()
}) })
},beforeDestroy() { },beforeDestroy() {
...@@ -626,7 +625,6 @@ export default { ...@@ -626,7 +625,6 @@ export default {
}, },
// 关注 // 关注
CareforCustomerBusiness(scope){ CareforCustomerBusiness(scope){
console.log(scope.row)
this.apipost('/api/Customer/CareforCustomerBusiness', {BusinessCreateID: scope.row.BusinessCreateID}, res=>{ this.apipost('/api/Customer/CareforCustomerBusiness', {BusinessCreateID: scope.row.BusinessCreateID}, res=>{
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.$message.success('操作成功'); this.$message.success('操作成功');
...@@ -637,7 +635,6 @@ export default { ...@@ -637,7 +635,6 @@ export default {
// 转移 // 转移
transfer(type){ transfer(type){
if (type !== 2) { if (type !== 2) {
console.log(typeof type)
if (type === 3) { if (type === 3) {
this.multipleSelection.push(this.CustomerId) this.multipleSelection.push(this.CustomerId)
} }
...@@ -691,7 +688,6 @@ export default { ...@@ -691,7 +688,6 @@ export default {
this.dialogCustomerVisible = true this.dialogCustomerVisible = true
}, },
openDetails2(scope){ openDetails2(scope){
console.log(scope.row)
this.BusinessId = scope.row.ID this.BusinessId = scope.row.ID
this.BusinessIdCustomerId = scope.row.CustomerId this.BusinessIdCustomerId = scope.row.CustomerId
this.drawer2 = true this.drawer2 = true
......
...@@ -440,7 +440,8 @@ export default { ...@@ -440,7 +440,8 @@ export default {
sendObj:"", sendObj:"",
sendTime:"", sendTime:"",
isAll:false, isAll:false,
} },
transferMsg: {}
}; };
}, },
mounted() { 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