|
|
|
|
@ -232,6 +232,16 @@
|
|
|
|
|
v-hasPermi="['dangan:zfnyhkcg:add']"
|
|
|
|
|
>新增手动识别</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="warning"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
v-hasPermi="['dangan:zfnyhkcg:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
@ -303,7 +313,7 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="handleShenHe(scope.row)"
|
|
|
|
|
v-hasPermi="['dangan:zfnyhkcg:edit']"
|
|
|
|
|
v-hasPermi="['dangan:zfnyhkcg:audit']"
|
|
|
|
|
>审核</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
@ -1045,6 +1055,12 @@ export default {
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
this.download('dangan/zfnyhkcg/export', {
|
|
|
|
|
...this.queryParams
|
|
|
|
|
}, `zfnyhkcg_${new Date().getTime()}.xlsx`)
|
|
|
|
|
},
|
|
|
|
|
/** 审核按钮操作 */
|
|
|
|
|
handleShenHe(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
|