|
|
|
|
@ -642,6 +642,7 @@
|
|
|
|
|
<div>
|
|
|
|
|
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="drwScpfzhInfo.multiple"
|
|
|
|
|
@click="drwDeleteUsers" v-hasPermi="['system:user:remove']">清除评分账号</el-button>
|
|
|
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="drwUserExport" v-hasPermi="['system:user:export']">评分账号导出</el-button>
|
|
|
|
|
<el-table style="margin-top: 10px;" border v-loading="drwScpfzhInfo.loading" :data="drwScpfzhInfo.list" @selection-change="handleSelectionChange1">
|
|
|
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
|
|
|
<el-table-column label="用户编号" align="center" prop="userId" width="90"/>
|
|
|
|
|
@ -1735,6 +1736,11 @@ export default {
|
|
|
|
|
this.$modal.msgSuccess("删除成功")
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
drwUserExport(){
|
|
|
|
|
this.download('system/user/export', {
|
|
|
|
|
...this.drwScpfzhInfo.queryParams
|
|
|
|
|
}, `评分账号_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|