Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
3 changed files
with
14 additions
and
5 deletions
| ... | @@ -85,10 +85,18 @@ | ... | @@ -85,10 +85,18 @@ |
| 85 | ...this.queryForm, | 85 | ...this.queryForm, |
| 86 | }).then((res) => { | 86 | }).then((res) => { |
| 87 | if (res.code === 200) { | 87 | if (res.code === 200) { |
| 88 | let { records } = res.result; | ||
| 89 | 88 | ||
| 90 | this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid); | 89 | let { records } = res.result; |
| 90 | console.log("records",records); | ||
| 91 | if(records){ | ||
| 92 | console.log("false"); | ||
| 93 | this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid); | ||
| 91 | this.$endLoading(); | 94 | this.$endLoading(); |
| 95 | }else{ | ||
| 96 | this.$endLoading(); | ||
| 97 | this.treedata=[] | ||
| 98 | } | ||
| 99 | |||
| 92 | } | 100 | } |
| 93 | }); | 101 | }); |
| 94 | }else{ | 102 | }else{ | ... | ... |
| ... | @@ -49,7 +49,7 @@ export default { | ... | @@ -49,7 +49,7 @@ export default { |
| 49 | * @author: renchao | 49 | * @author: renchao |
| 50 | */ | 50 | */ |
| 51 | getFromRouter (tabname) { | 51 | getFromRouter (tabname) { |
| 52 | console.log(tabname, 'tabnametabnametabnametabnametabname'); | 52 | console.log(tabname, 'tabname'); |
| 53 | //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性 | 53 | //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性 |
| 54 | for (let item of this.tabList) { | 54 | for (let item of this.tabList) { |
| 55 | if (item.value === tabname) { | 55 | if (item.value === tabname) { | ... | ... |
| ... | @@ -13,11 +13,11 @@ | ... | @@ -13,11 +13,11 @@ |
| 13 | <div class="triangle"></div> | 13 | <div class="triangle"></div> |
| 14 | </div> | 14 | </div> |
| 15 | <el-row :gutter="10"> | 15 | <el-row :gutter="10"> |
| 16 | <el-col :span="8"> | 16 | <!-- <el-col :span="8"> |
| 17 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:" prop="slsq.ywh"> | 17 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:" prop="slsq.ywh"> |
| 18 | <el-input disabled v-model="ruleForm.flow.ywh"></el-input> | 18 | <el-input disabled v-model="ruleForm.flow.ywh"></el-input> |
| 19 | </el-form-item> | 19 | </el-form-item> |
| 20 | </el-col> | 20 | </el-col> --> |
| 21 | <el-col :span="8"> | 21 | <el-col :span="8"> |
| 22 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:" prop="slsq.slry"> | 22 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:" prop="slsq.slry"> |
| 23 | <el-input disabled v-model="ruleForm.slsq.slry"></el-input> | 23 | <el-input disabled v-model="ruleForm.slsq.slry"></el-input> |
| ... | @@ -183,6 +183,7 @@ | ... | @@ -183,6 +183,7 @@ |
| 183 | }; | 183 | }; |
| 184 | }, | 184 | }, |
| 185 | created () { | 185 | created () { |
| 186 | console.log("批量查封登记材料信息"); | ||
| 186 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | 187 | this.ableOperation = this.$parent.currentSelectTab.ableOperation |
| 187 | this.propsParam = this.$attrs; | 188 | this.propsParam = this.$attrs; |
| 188 | var formdata = new FormData(); | 189 | var formdata = new FormData(); | ... | ... |
-
Please register or sign in to post a comment