Sfoglia il codice sorgente

Merge branch 'hw' of http://121.41.102.225:8099/Nidong/jiufang

Andy 3 anni fa
parent
commit
4e9059f6d6
1 ha cambiato i file con 20 aggiunte e 0 eliminazioni
  1. 20 0
      src/views/Dispatching/DispatchingDetail.vue

+ 20 - 0
src/views/Dispatching/DispatchingDetail.vue

@@ -30,6 +30,22 @@
               ></Option>
             </Select>
           </FormItem>
+           <FormItem label="图号:">
+            <Select
+              size="small"
+              clearable
+              filterable
+              placeholder="请选择图号"
+              v-model="searchData.url_number"
+            >
+              <Option
+                v-for="(_product, _index) in url_number_list"
+                :key="_index"
+                :value="_product"
+                :label="_product"
+              ></Option>
+            </Select>
+          </FormItem>
           <FormItem label="产品:">
             <Select
               size="small"
@@ -261,6 +277,7 @@ export default {
           key: "client_name",
           minWidth: 150,
         },
+         { title: "图号", align: "center", key: "url_number", minWidth: 150 },
         { title: "产品", align: "center", key: "product_title", minWidth: 150 },
         { title: "部件", align: "center", key: "part_title", minWidth: 150 },
         // { title: "材质", align: "center", key: "material", minWidth: 150 },
@@ -279,6 +296,7 @@ export default {
         material: "",
         color: "",
         work: "",
+        url_number:'',
       },
       infoData: {},
       selected: [],
@@ -293,6 +311,7 @@ export default {
       },
       headerList: [],
       productList: [],
+      url_number_list:[],
       partList: [],
       projectList: [],
       materialList: [],
@@ -340,6 +359,7 @@ export default {
           this.productList = res.data.header.product_list;
           this.partList = res.data.header.part_list;
           this.projectList = res.data.header.project;
+          this.url_number_list = res.data.header.url_number;
           this.materialList = res.data.header.material;
           this.colorList = res.data.header.color;
           this.workList = res.data.header.workmanship;