|
|
|
@ -315,7 +315,8 @@ import { getDept } from '@/api/system/dept';
|
|
|
|
|
import { getListMaterial } from '@/api/basic/basicMaterial'; |
|
|
|
|
import { getListCopy } from '@/api/basicdata/basicdataWarehouse'; |
|
|
|
|
import { getListIdsName} from '@/api/basicdata/basicdataStoreBrand'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import { getListName} from '@/api/basicdata/basicdataStoreBusiness'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
@ -352,7 +353,7 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
// 表单数据 |
|
|
|
|
form: { |
|
|
|
|
serviceType: "1" |
|
|
|
|
serviceType: null, |
|
|
|
|
}, |
|
|
|
|
formDetail: {}, |
|
|
|
|
// 选择行 |
|
|
|
@ -630,12 +631,20 @@ export default {
|
|
|
|
|
//门店查询 |
|
|
|
|
async getMenDian(row){ |
|
|
|
|
// console.log("值阿德飒飒的",row); |
|
|
|
|
|
|
|
|
|
let aa = ''; |
|
|
|
|
this.options.some(i =>{ |
|
|
|
|
// console.log(">><><><<>",i); |
|
|
|
|
if(i.value == row){ |
|
|
|
|
this.form.customerName = i.label; |
|
|
|
|
//查询客户服务类型 |
|
|
|
|
aa= i.value; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
let bu = await getListName(this.page.currentPage, this.page.pageSize,{ clientId: aa ,typeService: '3'}); |
|
|
|
|
// console.log("bububu",bu.data.data.records); |
|
|
|
|
if(bu.data.data?.records.length > 0){ |
|
|
|
|
this.form.serviceType = bu.data.data.records[0].mold; |
|
|
|
|
} |
|
|
|
|
let cl = await getListClient(this.page.currentPage, this.page.pageSize,{pid:row}); |
|
|
|
|
// console.log(">>>>",cl.data.data.records); |
|
|
|
|
cl.data.data.records.forEach(i =>{ |
|
|
|
@ -676,11 +685,11 @@ export default {
|
|
|
|
|
if (query) { |
|
|
|
|
// this.loading = true; |
|
|
|
|
let cl = await getListClient(this.page.currentPage, this.page.pageSize,{clientName:query}); |
|
|
|
|
// console.log(">>>>",cl.data.data.records); |
|
|
|
|
console.log("客户信息1234>>>>",cl.data.data.records); |
|
|
|
|
cl.data.data.records.forEach(i =>{ |
|
|
|
|
let st= { |
|
|
|
|
label: i.clientName, |
|
|
|
|
value: i.id |
|
|
|
|
value: i.id, |
|
|
|
|
} |
|
|
|
|
this.options.push(st); |
|
|
|
|
}); |
|
|
|
|