瀏覽代碼

no message

linwenxin 8 月之前
父節點
當前提交
2772db2e30

+ 1 - 1
src/api/workOrderPool.js

@@ -183,7 +183,7 @@ export function orderBaseStatusCount(params) {
 export function adminWebsitWebsitList(params) {
   return request({
     url: `/admin/websit/websitList`,
-    method: 'post',
+    method: 'get',
     params
   })
 }

+ 1 - 0
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/basicInfo.js

@@ -541,6 +541,7 @@ export default {
       }
       // 删除gps地址
       this.orderInfo.gpsAddress = ''
+      this.getWebsitFun(true)
     }
   }
 }

+ 57 - 10
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/pandanxinxi.js

@@ -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({

+ 7 - 3
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/productColumns.js

@@ -91,14 +91,18 @@ export default {
                         row.mainName = ''
                         row.imgUrl = ''
                       }
+                      this.getWebsitFun(true)
                     }}
                     placeholder="请选择"
                   >
                     {this.classifyList
                       .filter(val_ => {
-                        var v_ = this.orderInfo?.orderProducts?.find(item => item[column.columnAttributes.prop])?.[
-                          column.columnAttributes.prop
-                        ]
+                        var v_ =
+                          this.orderInfo?.orderProducts?.length > 1
+                            ? this.orderInfo?.orderProducts?.find(item => item[column.columnAttributes.prop])?.[
+                                column.columnAttributes.prop
+                              ]
+                            : false
                         return v_ ? val_.categoryId === v_ : true
                       })
                       .map((item, index_) => (

+ 7 - 0
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/serviceInfo.js

@@ -50,6 +50,7 @@ export default {
               } else {
                 this.orderInfo.orderSmallTypeText = ''
               }
+              this.getWebsitFun(true)
             }
           }
         },
@@ -210,6 +211,7 @@ export default {
               } else {
                 this.orderInfo.orderChannelText = ''
               }
+              this.getWebsitFun(true)
             }
           }
         },
@@ -265,6 +267,11 @@ export default {
             label: '工单来源',
             prop: 'source',
             rules: this.formOptions.source.isRules
+          },
+          events: {
+            change: val => {
+              this.getWebsitFun(true)
+            }
           }
         },