b1dec24d by jiaozeping@pashanhoo.com

1

1 parent 43181a2e
...@@ -96,8 +96,10 @@ export default { ...@@ -96,8 +96,10 @@ export default {
96 methods: { 96 methods: {
97 //默认加载表格信息 97 //默认加载表格信息
98 queryClick () { 98 queryClick () {
99 this.$startLoading();
99 this.queryForm.bsmSqyw = this.bsmSqyw; 100 this.queryForm.bsmSqyw = this.bsmSqyw;
100 selectQlxx({ ...this.queryForm, ...this.pageData }).then((res) => { 101 selectQlxx({ ...this.queryForm, ...this.pageData }).then((res) => {
102 this.$endLoading();
101 if (res.code === 200) { 103 if (res.code === 200) {
102 let { total, records } = res.result; 104 let { total, records } = res.result;
103 this.tableData.total = total; 105 this.tableData.total = total;
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
10 placeholder="请输入不动产单元号" 10 placeholder="请输入不动产单元号"
11 v-model="queryForm.bdcdyh" 11 v-model="queryForm.bdcdyh"
12 clearable 12 clearable
13 maxlength="28"
13 class="width300px" 14 class="width300px"
14 > 15 >
15 </el-input> 16 </el-input>
......