ff54b459 by tianhaohao@pashanhoo.com

修改一并申请的配置

1 parent 9205d969
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
8 <ul class="edit-title-list" v-if="djlxList.length > 0"> 8 <ul class="edit-title-list" v-if="djlxList.length > 0 ">
9 <li v-for="(item, index) in djlxList" @click="handleTitleSelct(item, index)" :key="index" 9 <li v-for="(item, index) in djlxList" @click="handleTitleSelct(item, index)" :key="index"
10 :class="{ active: index == tn }"> 10 :class="{ active: index == tn }">
11 {{ item.nodename }} 11 {{ item.nodename }}
...@@ -190,6 +190,9 @@ ...@@ -190,6 +190,9 @@
190 */ 190 */
191 init () { 191 init () {
192 this.tn = 0; 192 this.tn = 0;
193 if(this.formData.sqfl=="2"){
194 this.getDetail(this.formData.bsmSqyw);
195 }else{
193 getDjlxInfo(this.formData.bsmSqyw).then((res) => { 196 getDjlxInfo(this.formData.bsmSqyw).then((res) => {
194 let { result } = res; 197 let { result } = res;
195 this.djlxList = result ? result : []; 198 this.djlxList = result ? result : [];
...@@ -199,6 +202,7 @@ ...@@ -199,6 +202,7 @@
199 this.getDetail(this.formData.bsmSqyw); 202 this.getDetail(this.formData.bsmSqyw);
200 } 203 }
201 }) 204 })
205 }
202 }, 206 },
203 /** 207 /**
204 * @description: orderNoChange 208 * @description: orderNoChange
......