Bläddra i källkod

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-editer into develop

zhangyu 4 år sedan
förälder
incheckning
f9e8ac3ce6
1 ändrade filer med 22 tillägg och 20 borttagningar
  1. 22 20
      src/components/edit/edit-dialog.vue

+ 22 - 20
src/components/edit/edit-dialog.vue

@@ -14,18 +14,19 @@
                     <div class="select">
                         <a-select style="width: 236px;margin: 0 10px" :default-value="majorId">
                             <a-select-opt-group>
-                                <span slot="label">设备设施</span>
-                                <a-select-option v-for="item in majorList" :value="item.id" @click="handleChange(item)">
-                                    {{item.name}}
-                                </a-select-option>
-                            </a-select-opt-group>
-                            <a-select-opt-group>
                                 <span slot="label">位置区域</span>
                                 <a-select-option v-for="item in locationList" :value="item.id"
                                                  @click="handleChange(item)">
                                     {{item.name}}
+                            </a-select-option>
+                            <a-select-opt-group>
+                                <span slot="label">设备设施</span>
+                                <a-select-option v-for="item in majorList" :value="item.id" @click="handleChange(item)">
+                                    {{item.name}}
                                 </a-select-option>
                             </a-select-opt-group>
+
+                            </a-select-opt-group>
                         </a-select>
                         <!--            <Select style="margin: 0 10px"-->
                         <!--                    v-model="majorId"-->
@@ -279,7 +280,7 @@
                     size: this.size,//条数
                 }
                 if (this.keyword) {
-                    data.keyword = this.typeEdit == 'Image' ? `${this.keyword}:brand` : `${this.keyword}:wzjc`
+                    data.keyword = this.typeEdit == 'Image' ? `${this.keyword}:sbjc` : `${this.keyword}:wzjc`
                 }
                 const paramData = {classstructureid: this.classstructureid, gname: this.floorId};
                 const paramDataLocal = {locfl: this.locfl, gname: this.floorId};
@@ -394,35 +395,36 @@
             },
             //获取设备大类和位置大类
             getQuerySmsxt() {
-                // if (this.typeEdit=='Image'){
-                getQuerySmsxt({}).then(res => {
+                queryWzfldl({}).then(res => {
                     if (res.result == 'success') {
                         if (res.data) {
                             const data = res.data;
                             data.map(item => {
-                                item.id = item.code;
-                                item.name = item.name;
-                                item.type = 'Image';
+                                item.id = item.dl;
+                                item.name = item.dl;
+                                item.type = 'Zone'
                             })
-                            this.majorList = data;
+                            this.locationList = data;
                         }
                     }
                 })
-                // }else if(this.typeEdit =='Zone'){
-
-                queryWzfldl({}).then(res => {
+                // if (this.typeEdit=='Image'){
+                getQuerySmsxt({}).then(res => {
                     if (res.result == 'success') {
                         if (res.data) {
                             const data = res.data;
                             data.map(item => {
-                                item.id = item.dl;
-                                item.name = item.dl;
-                                item.type = 'Zone'
+                                item.id = item.code;
+                                item.name = item.name;
+                                item.type = 'Image';
                             })
-                            this.locationList = data;
+                            this.majorList = data;
                         }
                     }
                 })
+                // }else if(this.typeEdit =='Zone'){
+
+
                 // }
 
             },