单位管理(重置密码/删除/导出导入)

yfy
许宏杰 2 months ago
parent 2cf549171f
commit 41614b5762

@ -14,11 +14,21 @@
/>
</template>
<template v-slot:tablec>
<el-button type="info" plain icon="el-icon-upload2" size="mini"
<el-button
type="info"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
>导入</el-button
>
<el-button type="warning" plain icon="el-icon-download" size="mini"
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button
>
@ -156,9 +166,16 @@
size="mini"
plain
icon="el-icon-refresh-left"
v-hasRole="['common']"
@click="changePassword(scope.row)"
>重置密码</el-button
>
<el-button type="danger" size="mini" plain icon="el-icon-delete"
<el-button
type="danger"
size="mini"
plain
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button
>
</template>
@ -174,6 +191,46 @@
:limit.sync="queryParams.size"
@pagination="getList"
/>
<!-- 用户导入对话框 -->
<el-dialog
:title="upload.title"
:visible.sync="upload.open"
width="400px"
append-to-body
>
<el-upload
ref="upload"
:limit="1"
accept=".xlsx, .xls"
:headers="upload.headers"
:action="upload.url + '?updateSupport=' + upload.updateSupport"
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<!-- <div class="el-upload__tip" slot="tip">
<el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
</div> -->
<span>仅允许导入xlsxlsx格式文件</span>
<el-link
type="primary"
:underline="false"
style="font-size: 12px; vertical-align: baseline"
@click="importTemplate"
>下载模板</el-link
>
</div>
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</template>
</main-app>
</template>
@ -301,6 +358,99 @@ export default {
this.getDeptTree();
},
methods: {
/** 导入按钮操作 */
handleImport() {
this.upload.title = "单位导入";
this.upload.open = true;
},
/** 下载模板操作 */
importTemplate() {
this.download(
"/tc/unit/importTemplate",
{},
`单位导入模板${new Date().getTime()}.xlsx`
);
},
//
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
//
handleFileSuccess(response, file, fileList) {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$alert(
"<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
response.msg +
"</div>",
"导入结果",
{ dangerouslyUseHTMLString: true }
);
this.getList();
},
//
submitFileForm() {
this.$refs.upload.submit();
},
/** 导出按钮操作 */
handleExport() {
this.download(
"/tc/unit/export",
{
...this.queryParams,
},
`单位列表${new Date().getTime()}.xlsx`
);
},
/**
* 重置密码
*/
changePassword(row) {
editPassword(row.id).then((res) => {
if (res.code == 200 && res.msg) {
let msg = res.msg;
MessageBox.confirm(`${msg}`, "重置密码", {
confirmButtonText: "确定",
showClose: false,
type: "success ",
callback: (action) => {
if (window.clipboardData) {
window.clipboardData.setData("text", msg);
} else {
(function () {
document.oncopy = function (e) {
e.clipboardData.setData("text", msg);
e.preventDefault();
document.oncopy = null;
};
})(msg);
document.execCommand("Copy");
}
this.$message({
type: "success",
message: `密码复制成功: ${msg}`,
});
this.getList();
},
});
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const userIds = row.id || this.ids;
this.$modal
.confirm('是否确认删除单位id为"' + userIds + '"的数据项?')
.then(function () {
return delUnit(userIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
// table
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 !== 0) {

Loading…
Cancel
Save