|
|
@@ -538,7 +538,6 @@
|
|
|
import {
|
|
|
updateIsAuto,
|
|
|
updateUser,
|
|
|
- exportUser,
|
|
|
getMyQwCompanyList,
|
|
|
relieveFastGptRoleById,
|
|
|
loginQwIpad,
|
|
|
@@ -553,7 +552,7 @@ import {
|
|
|
outLoginQwIpad,
|
|
|
changeVideoStatus,
|
|
|
handleAllocateRemoteHost,
|
|
|
- qwBindCloudHost, qwUnbindCloudHost, handleAuthAppKey, handleInputAuthAppKey, selectCloudAP, staffListUser
|
|
|
+ qwBindCloudHost, qwUnbindCloudHost, handleAuthAppKey, handleInputAuthAppKey, selectCloudAP, staffListUser, exportStaff
|
|
|
} from '../../../api/qw/user'
|
|
|
import fastGptRole from "@/views/fastGpt/fastGptRole/fastGptRole";
|
|
|
|
|
|
@@ -1204,13 +1203,13 @@ export default {
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
- this.$confirm('是否确认导出所有企微用户数据项?', "警告", {
|
|
|
+ this.$confirm('是否确认导出所有企微员工数据项?', "警告", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning"
|
|
|
}).then(() => {
|
|
|
this.exportLoading = true;
|
|
|
- return exportUser(queryParams);
|
|
|
+ return exportStaff(queryParams);
|
|
|
}).then(response => {
|
|
|
this.download(response.msg);
|
|
|
this.exportLoading = false;
|