|
@@ -103,8 +103,8 @@
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
<div class="page-content-box">
|
|
<div class="page-content-box">
|
|
- <el-table class="table-box" v-loading="loading" border :data="dataList"
|
|
|
|
- @selection-change="handleSelectionChange" ref="multipleTable" :row-key="getRowKeys">
|
|
|
|
|
|
+ <el-table class="table-box" v-loading="loading" border :data="dataList" ref="table-box"
|
|
|
|
+ @selection-change="handleSelectionChange" :row-key="getRowKeys">
|
|
<el-table-column type="selection" width="50" fixed :reserve-selection="true" align="center"/>
|
|
<el-table-column type="selection" width="50" fixed :reserve-selection="true" align="center"/>
|
|
<el-table-column label="化学品名称" align="left" fixed width="250" prop="chemicalName" />
|
|
<el-table-column label="化学品名称" align="left" fixed width="250" prop="chemicalName" />
|
|
<el-table-column label="编码" align="left" width="150" prop="tagCode" />
|
|
<el-table-column label="编码" align="left" width="150" prop="tagCode" />
|
|
@@ -252,6 +252,8 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.queryParams.page = 1;
|
|
this.queryParams.page = 1;
|
|
|
|
+ this.$refs['table-box'].clearSelection();
|
|
|
|
+ this.$set(this.exportConfig,'ids','');
|
|
this.getList();
|
|
this.getList();
|
|
},
|
|
},
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
@@ -269,6 +271,8 @@
|
|
chemicalLevel:'',
|
|
chemicalLevel:'',
|
|
cabinetId:'',
|
|
cabinetId:'',
|
|
});
|
|
});
|
|
|
|
+ this.$refs['table-box'].clearSelection();
|
|
|
|
+ this.$set(this.exportConfig,'ids','');
|
|
this.handleQuery();
|
|
this.handleQuery();
|
|
},
|
|
},
|
|
//获取化学品类别
|
|
//获取化学品类别
|