1. 办公基价作价

This commit is contained in:
purple
2020-06-09 19:28:45 +08:00
parent 645c661478
commit 517f42edf5
10 changed files with 452 additions and 227 deletions

View File

@ -354,8 +354,8 @@ export default {
return "";
},
/** 查询办公基价列表 */
getList(formName) {
this.$refs[formName].validate(valid => {
getList() {
this.$refs['queryForm'].validate(valid => {
if (valid) {
this.loading = true;
list(this.queryParams).then(response => {
@ -381,7 +381,7 @@ export default {
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageIndex = 1;
this.getList("queryForm");
this.getList();
},
/** 重置按钮操作 */
resetQuery() {

View File

@ -64,6 +64,15 @@
v-hasPermi="['system:user:import']"
>导入</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-druid"
size="mini"
@click="handleImport"
v-hasPermi="['system:user:import']"
>基价变化一览</el-button>
</el-col>
</el-row>
<el-table v-loading="loading" :data="dataList">