修改
This commit is contained in:
parent
b77fd4c06e
commit
f17e3aceb1
@ -40,7 +40,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="getList">搜索</el-button>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -172,6 +172,7 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.selectAgencyinfo();
|
this.selectAgencyinfo();
|
||||||
this.getList();
|
this.getList();
|
||||||
|
this.getFollowUpDetailinfo();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getMaxTableHeight()
|
this.getMaxTableHeight()
|
||||||
@ -350,7 +351,6 @@ export default {
|
|||||||
this.echartlist = res.data
|
this.echartlist = res.data
|
||||||
this.echartinfo();
|
this.echartinfo();
|
||||||
this.echartinfotwo();
|
this.echartinfotwo();
|
||||||
this.getFollowUpDetailinfo();
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
async getFollowUpDetailinfo() {
|
async getFollowUpDetailinfo() {
|
||||||
@ -378,13 +378,17 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
handleQuery() {
|
||||||
|
this.getList();
|
||||||
|
this.getFollowUpDetailinfo();
|
||||||
|
},
|
||||||
/** 重置按钮操作 */
|
/** 重置按钮操作 */
|
||||||
resetQuery() {
|
resetQuery() {
|
||||||
this.visitDate = [];
|
this.visitDate = [];
|
||||||
this.queryParams.visitDateStart = null;
|
this.queryParams.visitDateStart = null;
|
||||||
this.queryParams.visitDateEnd = null;
|
this.queryParams.visitDateEnd = null;
|
||||||
this.resetForm("queryForm");
|
this.resetForm("queryForm");
|
||||||
this.getList();
|
this.handleQuery()
|
||||||
},
|
},
|
||||||
selectAgencyinfo() {
|
selectAgencyinfo() {
|
||||||
let query = {
|
let query = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user