f6b2a245 by xiaomiao

--no commit message

1 parent 5150e2a9
......@@ -85,10 +85,18 @@
...this.queryForm,
}).then((res) => {
if (res.code === 200) {
let { records } = res.result;
let { records } = res.result;
console.log("records",records);
if(records){
console.log("false");
this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid);
this.$endLoading();
}else{
this.$endLoading();
this.treedata=[]
}
}
});
}else{
......
......@@ -76,7 +76,6 @@
* @author: renchao
*/
handleSubmit () {
debugger
this.$refs['ruleForm'].validate((valid) => {
if (valid) {
this.$parent.addSave(this.ruleForm);
......
......@@ -177,7 +177,6 @@
* @author: renchao
*/
batchUnitClick () {
debugger
this.currentSelectProps.batchOperation = true;
// this.activeIndex = "-1";
this.$parent.stepForm(0);
......
......@@ -49,7 +49,7 @@ export default {
* @author: renchao
*/
getFromRouter (tabname) {
console.log(tabname, 'tabnametabnametabnametabnametabname');
console.log(tabname, 'tabname');
//根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性
for (let item of this.tabList) {
if (item.value === tabname) {
......
......@@ -13,11 +13,11 @@
<div class="triangle"></div>
</div>
<el-row :gutter="10">
<el-col :span="8">
<!-- <el-col :span="8">
<el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:" prop="slsq.ywh">
<el-input disabled v-model="ruleForm.flow.ywh"></el-input>
</el-form-item>
</el-col>
</el-col> -->
<el-col :span="8">
<el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:" prop="slsq.slry">
<el-input disabled v-model="ruleForm.slsq.slry"></el-input>
......@@ -183,6 +183,7 @@
};
},
created () {
console.log("批量查封登记材料信息");
this.ableOperation = this.$parent.currentSelectTab.ableOperation
this.propsParam = this.$attrs;
var formdata = new FormData();
......