Browse Source

no message

linwenxin 8 months ago
parent
commit
fe356af461

+ 0 - 1
src/views/workOrder/automaticDispatchConfig/streetConfiguration/index.vue

@@ -134,7 +134,6 @@ export default {
     },
     // 树形选中
     handleNodeClick(e) {
-      console.log(e)
       this.$refs.pageRef.refreshList()
     },
     // 列表请求函数

+ 19 - 1
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/pandanxinxi.js

@@ -69,7 +69,7 @@ export default {
     pandanxinxi() {
       return [
         {
-          isShow: this.formOptions.websitId.isShow,
+          isShow: !this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
           name: 'el-select',
           options: this.websitList,
           md: 8,
@@ -102,6 +102,24 @@ export default {
           }
         },
         {
+          isShow: this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
+          name: 'slot-component',
+          md: 8,
+          attributes: { disabled: true, placeholder: '请输入' },
+          formItemAttributes: { label: '网点信息', prop: 'websitName' },
+          render: (h, { props, onInput }) => {
+            var { formData } = props
+            return (
+              <el-input
+                value={`${formData.websitName || ''}-${formData.websitId || ''}`}
+                disabled={true}
+                size="mini"
+                placeholder="请输入"
+              ></el-input>
+            )
+          }
+        },
+        {
           isShow: this.formOptions.isQd.isShow,
           name: 'el-switch',
           md: 8,