1. 办公基价作价
This commit is contained in:
@ -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() {
|
||||
|
@ -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">
|
||||
|
Reference in New Issue
Block a user