|
@@ -1,5 +1,6 @@
|
|
|
import { getWebsit } from '@/api/customerManagement.js'
|
|
|
import { memberListPageV2 } from '@/api/masterManagement'
|
|
|
+import { adminWebsitWebsitList } from '@/api/workOrderPool'
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
@@ -269,18 +270,64 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- // 普通工单选择网点数据
|
|
|
- if (!!~[1, 2, 3].indexOf(this?.workOrderType) || this.isAllWebsit) {
|
|
|
- getWebsit({ type: 'C', status: true, isAll: this.isAllWebsit || this.id ? true : false }).then(res => {
|
|
|
- this.websitList = res.data.map(item => ({
|
|
|
- label: item.name,
|
|
|
- value: item.websitId,
|
|
|
- data: item
|
|
|
- }))
|
|
|
- })
|
|
|
- }
|
|
|
+ // // 普通工单选择网点数据
|
|
|
+ // if (!!~[1, 2, 3].indexOf(this?.workOrderType) || this.isAllWebsit) {
|
|
|
+ // getWebsit({ type: 'C', status: true, isAll: this.isAllWebsit || this.id ? true : false }).then(res => {
|
|
|
+ // this.websitList = res.data.map(item => ({
|
|
|
+ // label: item.name,
|
|
|
+ // value: item.websitId,
|
|
|
+ // data: item
|
|
|
+ // }))
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+
|
|
|
+ this.getWebsitFun()
|
|
|
},
|
|
|
methods: {
|
|
|
+ getWebsitFun(bool) {
|
|
|
+ if (bool) {
|
|
|
+ this.orderInfo.websitId = ''
|
|
|
+ this.orderInfo.websitName = ''
|
|
|
+ this.orderInfo.workerId = ''
|
|
|
+ this.orderInfo.workerName = ''
|
|
|
+ this.orderInfo.workerIdcard = ''
|
|
|
+ this.orderInfo.workerMobile = ''
|
|
|
+ this.workerList = []
|
|
|
+ this.orderInfo.orderWorkers = []
|
|
|
+ }
|
|
|
+ if (
|
|
|
+ this.orderInfo.orderChannelId &&
|
|
|
+ this.orderInfo?.orderProducts?.find(item => item?.mainId)?.mainId &&
|
|
|
+ this.orderInfo.source &&
|
|
|
+ this.orderInfo.orderSmallType &&
|
|
|
+ this.orderInfo.streetId
|
|
|
+ ) {
|
|
|
+ adminWebsitWebsitList({
|
|
|
+ channelId: this.orderInfo.orderChannelId,
|
|
|
+ categoryId: this.orderInfo?.orderProducts?.find(item => item?.mainId)?.mainId,
|
|
|
+ orderSource: this.orderInfo.source,
|
|
|
+ orderSmallId: this.orderInfo.orderSmallType,
|
|
|
+ streetCode: this.orderInfo.streetId,
|
|
|
+ status: true,
|
|
|
+ type: 'C'
|
|
|
+ }).then(res => {
|
|
|
+ this.websitList = res.data.map(item => ({
|
|
|
+ label: item.name,
|
|
|
+ value: item.websitId,
|
|
|
+ data: item
|
|
|
+ }))
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ this.orderInfo.websitId = ''
|
|
|
+ this.orderInfo.websitName = ''
|
|
|
+ this.orderInfo.workerId = ''
|
|
|
+ this.orderInfo.workerName = ''
|
|
|
+ this.orderInfo.workerIdcard = ''
|
|
|
+ this.orderInfo.workerMobile = ''
|
|
|
+ this.workerList = []
|
|
|
+ this.orderInfo.orderWorkers = []
|
|
|
+ }
|
|
|
+ },
|
|
|
getWorkers() {
|
|
|
if (this.orderInfo.websitId) {
|
|
|
memberListPageV2({
|