f6b2a245 by xiaomiao

--no commit message

1 parent 5150e2a9
...@@ -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
89 let { records } = res.result;
90 console.log("records",records);
91 if(records){
92 console.log("false");
90 this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid); 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{
......
...@@ -76,7 +76,6 @@ ...@@ -76,7 +76,6 @@
76 * @author: renchao 76 * @author: renchao
77 */ 77 */
78 handleSubmit () { 78 handleSubmit () {
79 debugger
80 this.$refs['ruleForm'].validate((valid) => { 79 this.$refs['ruleForm'].validate((valid) => {
81 if (valid) { 80 if (valid) {
82 this.$parent.addSave(this.ruleForm); 81 this.$parent.addSave(this.ruleForm);
......
...@@ -177,7 +177,6 @@ ...@@ -177,7 +177,6 @@
177 * @author: renchao 177 * @author: renchao
178 */ 178 */
179 batchUnitClick () { 179 batchUnitClick () {
180 debugger
181 this.currentSelectProps.batchOperation = true; 180 this.currentSelectProps.batchOperation = true;
182 // this.activeIndex = "-1"; 181 // this.activeIndex = "-1";
183 this.$parent.stepForm(0); 182 this.$parent.stepForm(0);
......
...@@ -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();
......