|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
- <a-drawer
|
|
|
+ <BasicDrawer
|
|
|
:title="title"
|
|
|
:maskClosable="true"
|
|
|
+ :confirmLoading="confirmLoading"
|
|
|
:width="drawerWidth"
|
|
|
placement="right"
|
|
|
:closable="true"
|
|
@@ -9,161 +10,46 @@
|
|
|
v-model:open="visible"
|
|
|
style="height: 100%; overflow: auto; padding-bottom: 53px"
|
|
|
>
|
|
|
- <template #title>
|
|
|
- <div style="width: 100%">
|
|
|
- <span>{{ title }}</span>
|
|
|
- <span style="display: inline-block; width: calc(100% - 51px); padding-right: 10px; text-align: right">
|
|
|
- <a-button @click="toggleScreen" icon="appstore" style="height: 20px; width: 20px; border: 0px" />
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
- <a-spin :spinning="confirmLoading">
|
|
|
- <a-form :ref="formRef" :model="model" :rules="formRules">
|
|
|
- <a-form-item label="用户账号" :labelCol="labelCol" :wrapperCol="wrapperCol" name="username">
|
|
|
- <a-input placeholder="请输入用户账号" :disabled="!!model.id" />
|
|
|
- </a-form-item>
|
|
|
- <a-form-item label="用户姓名" :labelCol="labelCol" :wrapperCol="wrapperCol" name="realname">
|
|
|
- <a-input placeholder="请输入用户姓名" name="realname" />
|
|
|
- </a-form-item>
|
|
|
- <template v-if="!model.id">
|
|
|
- <a-form-item label="登录密码" :labelCol="labelCol" :wrapperCol="wrapperCol" name="password">
|
|
|
- <a-input type="password" autocomplete="new-password" placeholder="请输入登录密码" />
|
|
|
- </a-form-item>
|
|
|
- <a-form-item label="确认密码" :labelCol="labelCol" :wrapperCol="wrapperCol" name="confirmpassword">
|
|
|
- <a-input type="password" @blur="handleConfirmBlur" placeholder="请重新输入登录密码" />
|
|
|
- </a-form-item>
|
|
|
- </template>
|
|
|
- <template v-if="siteCode === dictSiteCode">
|
|
|
- <a-form-item label="性别" :labelCol="labelCol" :wrapperCol="wrapperCol" name="sex">
|
|
|
- <a-radio-group>
|
|
|
- <a-radio :value="1">男</a-radio>
|
|
|
- <a-radio :value="2">女</a-radio>
|
|
|
- </a-radio-group>
|
|
|
- </a-form-item>
|
|
|
- <a-form-item label="工作手机" :labelCol="labelCol" :wrapperCol="wrapperCol" name="phone">
|
|
|
- <a-input placeholder="请输入手机号码" />
|
|
|
- </a-form-item>
|
|
|
- <a-form-item label="企业邮箱" :labelCol="labelCol" :wrapperCol="wrapperCol" name="email">
|
|
|
- <a-input placeholder="请输入邮箱" />
|
|
|
- </a-form-item>
|
|
|
- </template>
|
|
|
- <template v-if="siteCode !== dictSiteCode">
|
|
|
- <a-form-item label="手机号码" :labelCol="labelCol" :wrapperCol="wrapperCol" name="phone">
|
|
|
- <a-input placeholder="请输入手机号码" />
|
|
|
- </a-form-item>
|
|
|
- <a-form-item label="邮箱" :labelCol="labelCol" :wrapperCol="wrapperCol" name="email">
|
|
|
- <a-input placeholder="请输入邮箱" />
|
|
|
- </a-form-item>
|
|
|
- </template>
|
|
|
- <a-form-item label="头像" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
|
- <j-image-upload class="avatar-uploader" text="上传" v-model="fileList" />
|
|
|
- </a-form-item>
|
|
|
- </a-form>
|
|
|
- </a-spin>
|
|
|
- <enterprise-depart-window ref="enterpriseDepartWindow" @ok="modalFormOk" />
|
|
|
+ <BasicForm @register="registerForm" />
|
|
|
+
|
|
|
<div class="drawer-bootom-button" v-show="!disableSubmit">
|
|
|
<a-button @click="handleCancel" style="margin-right: 0.8rem">取消</a-button>
|
|
|
<a-button @click="handleSubmit" type="primary" :loading="confirmLoading">提交</a-button>
|
|
|
</div>
|
|
|
- </a-drawer>
|
|
|
+ </BasicDrawer>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
- // 引入搜索部门弹出框的组件
|
|
|
- import enterpriseDepartWindow from './EnterpriseDepartWindow.vue';
|
|
|
-
|
|
|
import { getAction, postAction } from '@/api/manage/manage';
|
|
|
- import { addEnterpriseUser, queryEnterpriseAll } from '../EnterpriseUserManage.api';
|
|
|
- import { duplicateCheck } from '@/views/system/user/user.api';
|
|
|
- import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue';
|
|
|
- import { nextTick, onBeforeMount, reactive, ref } from 'vue';
|
|
|
+ import { formSchema } from '../EnterpriseUserManage.data';
|
|
|
+ import { onBeforeMount, ref } from 'vue';
|
|
|
import { useUserStore } from '/@/store/modules/user';
|
|
|
- import pick from 'lodash.pick';
|
|
|
- import type { FormInstance } from 'ant-design-vue';
|
|
|
+ import { useMessage } from '@/hooks/web/useMessage';
|
|
|
+ import { BasicForm, useForm } from '@/components/Form';
|
|
|
+ import { BasicDrawer } from '@/components/Drawer';
|
|
|
+ import { getTenantId } from '/@/utils/auth';
|
|
|
|
|
|
const userStore = useUserStore();
|
|
|
- const isMasterAccount = ref(false);
|
|
|
- const departDisabled = ref(false);
|
|
|
- const roleDisabled = ref(false);
|
|
|
- const modaltoggleFlag = ref(true);
|
|
|
- const confirmDirty = ref(false);
|
|
|
- const modalWidth = ref(800);
|
|
|
+
|
|
|
let drawerWidth = ref(700);
|
|
|
- const formRef = ref<FormInstance>();
|
|
|
- const queryParam = reactive({ username: userStore.getUserInfo.username });
|
|
|
- let selectedDepartKeys = reactive([]);
|
|
|
- let checkedDepartKeys = reactive([]);
|
|
|
- let checkedDepartNames = reactive([]);
|
|
|
+
|
|
|
let checkedDepartNameString = ref('');
|
|
|
- let resultDepartOptions = reactive([]);
|
|
|
+
|
|
|
let userId = ref('');
|
|
|
const disableSubmit = ref(false);
|
|
|
- const userDepartModel = reactive({ userId: '', departIdList: [] }); // 保存SysUserDepart的用户部门中间表数据需要的对象
|
|
|
- const dateFormat = ref('YYYY-MM-DD');
|
|
|
- const formRules = reactive({
|
|
|
- username: [
|
|
|
- { required: true, message: '请输入用户账号', trigger: 'blur' },
|
|
|
- {
|
|
|
- validator: validateUsername,
|
|
|
- },
|
|
|
- ],
|
|
|
- password: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- pattern: /^(?=.*[a-zA-Z])(?=.*\d)(?=.*[~!@#$%^&*()_+`\-={}:";'<>?,./]).{8,}$/,
|
|
|
- message: '密码由8位数字、大小写字母和特殊符号组成!',
|
|
|
- },
|
|
|
- {
|
|
|
- validator: validateToNextPassword,
|
|
|
- },
|
|
|
- ],
|
|
|
- confirmpassword: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: '请重新输入登录密码!',
|
|
|
- },
|
|
|
- {
|
|
|
- validator: compareToFirstPassword,
|
|
|
- },
|
|
|
- ],
|
|
|
- realname: [{ required: true, message: '请输入用户名称!' }],
|
|
|
- phone: [{ validator: validatePhone }],
|
|
|
- email: [
|
|
|
- {
|
|
|
- validator: validateEmail,
|
|
|
- },
|
|
|
- ],
|
|
|
- roles: {},
|
|
|
- telephone: [{ pattern: /^0\d{2,3}-[1-9]\d{6,7}$/, message: '请输入正确的座机号码' }],
|
|
|
- });
|
|
|
|
|
|
let departIdShow = ref(false);
|
|
|
- const departIds = reactive([]);
|
|
|
+
|
|
|
const title = ref('操作');
|
|
|
const visible = ref(false);
|
|
|
- let model = reactive({ userIdentity: '', id: '', tenantId: '' });
|
|
|
- let roleList = reactive([]);
|
|
|
- const selectedRole = ref([]);
|
|
|
- const labelCol = reactive({
|
|
|
- xs: { span: 24 },
|
|
|
- sm: { span: 5 },
|
|
|
- });
|
|
|
|
|
|
- const wrapperCol = reactive({
|
|
|
- xs: { span: 24 },
|
|
|
- sm: { span: 16 },
|
|
|
- });
|
|
|
+ const selectedRole = ref([]);
|
|
|
|
|
|
- const uploadLoading = false;
|
|
|
- const confirmLoading = false;
|
|
|
+ const confirmLoading = ref(false);
|
|
|
|
|
|
- const headers = reactive({});
|
|
|
const picUrl = ref('');
|
|
|
const identity = ref('1');
|
|
|
- let fileList = reactive([]);
|
|
|
- let tenantList = reactive([]);
|
|
|
- let currentTenant = reactive([]);
|
|
|
+
|
|
|
let siteCode = ref('');
|
|
|
let dictSiteCode = ref('');
|
|
|
const url = {
|
|
@@ -172,61 +58,26 @@
|
|
|
syncUserByUserName: '/act/process/extActProcess/doSyncUserByUserName', //同步用户到工作流
|
|
|
queryTenantList: '/sys/tenant/queryList',
|
|
|
};
|
|
|
- const emit = defineEmits(['ok', 'close']);
|
|
|
+ const emit = defineEmits(['ok', 'close', 'success']);
|
|
|
+
|
|
|
+ //表单配置
|
|
|
+ const [registerForm, { setProps, resetFields, setFieldsValue, validate, updateSchema }] = useForm({
|
|
|
+ labelWidth: 90,
|
|
|
+ schemas: formSchema,
|
|
|
+ showActionButtonGroup: false,
|
|
|
+ });
|
|
|
+
|
|
|
+ const { createMessage } = useMessage();
|
|
|
|
|
|
onBeforeMount(() => {
|
|
|
- initTenantList();
|
|
|
siteCode.value = localStorage.getItem('siteCode') ?? '';
|
|
|
getTurnInquiryCode();
|
|
|
});
|
|
|
|
|
|
- function initTenantList() {
|
|
|
- getAction(url.queryTenantList, {}).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- tenantList = res.result;
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- //窗口最大化切换
|
|
|
- function toggleScreen() {
|
|
|
- if (modaltoggleFlag.value) {
|
|
|
- modalWidth.value = window.innerWidth;
|
|
|
- } else {
|
|
|
- modalWidth.value = 800;
|
|
|
- }
|
|
|
- modaltoggleFlag.value = !modaltoggleFlag.value;
|
|
|
- }
|
|
|
-
|
|
|
- function initialRoleList() {
|
|
|
- queryEnterpriseAll({ username: queryParam.username }).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- roleList = res.result;
|
|
|
- } else {
|
|
|
- console.log(res.message);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- function loadUserRoles(userid) {
|
|
|
- queryUserRole({ userid: userid }).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- selectedRole.value = res.result;
|
|
|
- } else {
|
|
|
- console.log(res.message);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
function refresh() {
|
|
|
- selectedDepartKeys = [];
|
|
|
- checkedDepartKeys = [];
|
|
|
- checkedDepartNames = [];
|
|
|
checkedDepartNameString.value = '';
|
|
|
userId.value = '';
|
|
|
- resultDepartOptions = [];
|
|
|
departIdShow.value = false;
|
|
|
- currentTenant = [];
|
|
|
}
|
|
|
|
|
|
function add() {
|
|
@@ -238,37 +89,16 @@
|
|
|
function edit(record) {
|
|
|
resetScreenSize(); // 调用此方法,根据屏幕宽度自适应调整抽屉的宽度
|
|
|
|
|
|
- initialRoleList();
|
|
|
checkedDepartNameString.value = '';
|
|
|
|
|
|
if (record.hasOwnProperty('id')) {
|
|
|
- loadUserRoles(record.id);
|
|
|
- setTimeout(() => {
|
|
|
- fileList = record.avatar;
|
|
|
- }, 5);
|
|
|
+ setFieldsValue({
|
|
|
+ ...record,
|
|
|
+ });
|
|
|
}
|
|
|
userId.value = record.id;
|
|
|
- model = Object.assign({}, record);
|
|
|
- nextTick(() => {
|
|
|
- // formRef.value.setFieldsValue(pick(model, 'username', 'sex', 'realname', 'email', 'phone', 'activitiSync', 'telephone', 'post'));
|
|
|
- });
|
|
|
+
|
|
|
visible.value = true;
|
|
|
- //身份为上级显示负责部门,否则不显示
|
|
|
- if (model.userIdentity == '2') {
|
|
|
- identity.value = '2';
|
|
|
- departIdShow.value = true;
|
|
|
- } else {
|
|
|
- identity.value = '1';
|
|
|
- departIdShow.value = false;
|
|
|
- }
|
|
|
- // 调用查询用户对应的部门信息的方法
|
|
|
- checkedDepartKeys = [];
|
|
|
- //update-begin-author:taoyan date:2020710 for:多租户配置
|
|
|
- if (!record.relTenantIds || record.relTenantIds.length == 0) {
|
|
|
- currentTenant = [];
|
|
|
- } else {
|
|
|
- currentTenant = record.relTenantIds.split(',').map(Number);
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
function close() {
|
|
@@ -276,250 +106,56 @@
|
|
|
visible.value = false;
|
|
|
disableSubmit.value = false;
|
|
|
selectedRole.value = [];
|
|
|
- userDepartModel = { userId: '', departIdList: [] };
|
|
|
- checkedDepartNames = [];
|
|
|
checkedDepartNameString.value = '';
|
|
|
- checkedDepartKeys = [];
|
|
|
- selectedDepartKeys = [];
|
|
|
- resultDepartOptions = [];
|
|
|
- departIds = [];
|
|
|
departIdShow.value = false;
|
|
|
identity.value = '1';
|
|
|
- fileList = [];
|
|
|
- }
|
|
|
-
|
|
|
- function handleSubmit() {
|
|
|
- const that = this;
|
|
|
- // 触发表单验证
|
|
|
- form.validateFields((err, values) => {
|
|
|
- if (!err) {
|
|
|
- confirmLoading = true;
|
|
|
- if (!values.birthday) {
|
|
|
- values.birthday = '';
|
|
|
- } else {
|
|
|
- values.birthday = values.birthday.format(dateFormat);
|
|
|
- }
|
|
|
- let formData = Object.assign(model, values);
|
|
|
- if (fileList != '') {
|
|
|
- formData.avatar = fileList;
|
|
|
- } else {
|
|
|
- formData.avatar = null;
|
|
|
- }
|
|
|
- if (formData.email == '') {
|
|
|
- formData.email = null;
|
|
|
- }
|
|
|
- //update-begin-author:taoyan date:2020710 for:多租户配置
|
|
|
- formData.relTenantIds = currentTenant.length > 0 ? currentTenant.join(',') : '';
|
|
|
- //update-end-author:taoyan date:2020710 for:多租户配置
|
|
|
- formData.selectedroles = selectedRole.value.length > 0 ? selectedRole.value.join(',') : '';
|
|
|
- formData.selecteddeparts = userDepartModel.departIdList.length > 0 ? userDepartModel.departIdList.join(',') : '';
|
|
|
- formData.userIdentity = identity;
|
|
|
- //如果是上级择传入departIds,否则为空
|
|
|
- if (identity.value === '2') {
|
|
|
- formData.departIds = departIds.join(',');
|
|
|
- } else {
|
|
|
- formData.departIds = '';
|
|
|
- }
|
|
|
- // addDepartsToUser(that,formData); // 调用根据当前用户添加部门信息的方法
|
|
|
- let obj;
|
|
|
- formData.masterId = store.getters.userInfo.id;
|
|
|
- formData.masterName = store.getters.userInfo.username;
|
|
|
- if (!model.id) {
|
|
|
- formData.id = userId;
|
|
|
- formData.siteCode = siteCode;
|
|
|
- obj = addEnterpriseUser(formData);
|
|
|
- } else {
|
|
|
- formData.masterEmail = store.getters.userInfo.email;
|
|
|
- formData.siteCode = siteCode;
|
|
|
- obj = postAction('/enterprise/user/edit', formData);
|
|
|
- }
|
|
|
- obj
|
|
|
- .then((res) => {
|
|
|
- if (res.success) {
|
|
|
- $message.success(res.message);
|
|
|
- $emit('ok');
|
|
|
- confirmLoading = false;
|
|
|
- checkedDepartNames = [];
|
|
|
- userDepartModel.departIdList = { userId: '', departIdList: [] };
|
|
|
- close();
|
|
|
- } else {
|
|
|
- confirmLoading = false;
|
|
|
- $message.warning(res.message);
|
|
|
- }
|
|
|
- })
|
|
|
- .finally(() => {});
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- function handleCancel() {
|
|
|
- close();
|
|
|
}
|
|
|
- function validateToNextPassword(rule, value, callback) {
|
|
|
- const form = form;
|
|
|
- const confirmpassword = form.getFieldValue('confirmpassword');
|
|
|
|
|
|
- if (value && confirmpassword && value !== confirmpassword) {
|
|
|
- callback('两次输入的密码不一样!');
|
|
|
- }
|
|
|
- if (value && confirmDirty) {
|
|
|
- form.validateFields(['confirm'], { force: true });
|
|
|
- }
|
|
|
- callback();
|
|
|
- }
|
|
|
+ async function handleSubmit() {
|
|
|
+ try {
|
|
|
+ let values = await validate();
|
|
|
+ confirmLoading.value = true;
|
|
|
+ values.userIdentity === 1 && (values.departIds = '');
|
|
|
|
|
|
- function compareToFirstPassword(rule, value, callback) {
|
|
|
- const form = form;
|
|
|
- if (value && value !== form.getFieldValue('password')) {
|
|
|
- callback('两次输入的密码不一样!');
|
|
|
- } else {
|
|
|
- callback();
|
|
|
- }
|
|
|
- }
|
|
|
+ let obj;
|
|
|
+ values.masterId = userStore.getUserInfo.id;
|
|
|
+ values.masterName = userStore.getUserInfo.username;
|
|
|
|
|
|
- function validatePhone(rule, value, callback) {
|
|
|
- if (!value) {
|
|
|
- callback();
|
|
|
- } else {
|
|
|
- //update-begin--Author:kangxiaolin Date:20190826 for:[05] 手机号不支持199号码段--------------------
|
|
|
- if (new RegExp(/^1[3|4|5|7|8|9][0-9]\d{8}$/).test(value)) {
|
|
|
- //update-end--Author:kangxiaolin Date:20190826 for:[05] 手机号不支持199号码段--------------------
|
|
|
-
|
|
|
- var params = {
|
|
|
- tableName: 'sys_user',
|
|
|
- fieldName: 'phone',
|
|
|
- fieldVal: value,
|
|
|
- dataId: userId,
|
|
|
- };
|
|
|
- duplicateCheck(params).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- callback();
|
|
|
- } else {
|
|
|
- callback('手机号已存在!');
|
|
|
- }
|
|
|
- });
|
|
|
+ if (!values.id) {
|
|
|
+ values.siteCode = siteCode.value;
|
|
|
+ values.relTenantIds = getTenantId();
|
|
|
+ obj = postAction('/enterprise/user/add', values, 120000);
|
|
|
} else {
|
|
|
- callback('请输入正确格式的手机号码!');
|
|
|
+ values.masterEmail = userStore.getUserInfo.email;
|
|
|
+ values.siteCode = siteCode;
|
|
|
+ obj = postAction('/enterprise/user/edit', values, 120000);
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function validateEmail(rule, value, callback) {
|
|
|
- if (!value) {
|
|
|
- callback();
|
|
|
- } else {
|
|
|
- if (
|
|
|
- new RegExp(
|
|
|
- /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
|
|
|
- ).test(value)
|
|
|
- ) {
|
|
|
- var params = {
|
|
|
- tableName: 'sys_user',
|
|
|
- fieldName: 'email',
|
|
|
- fieldVal: value,
|
|
|
- dataId: userId,
|
|
|
- };
|
|
|
- duplicateCheck(params).then((res) => {
|
|
|
- console.log(res);
|
|
|
- if (res.success) {
|
|
|
- callback();
|
|
|
+ //提交表单
|
|
|
+ obj
|
|
|
+ .then((res) => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ createMessage.success(res.message);
|
|
|
+ confirmLoading.value = false;
|
|
|
+ close();
|
|
|
+ emit('ok');
|
|
|
} else {
|
|
|
- callback('邮箱已存在!');
|
|
|
+ confirmLoading.value = false;
|
|
|
+ createMessage.warning(res.message);
|
|
|
}
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ //关闭弹窗
|
|
|
+ close();
|
|
|
});
|
|
|
- } else {
|
|
|
- callback('请输入正确格式的邮箱!');
|
|
|
- }
|
|
|
+ } finally {
|
|
|
+ confirmLoading.value = false;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- function validateUsername(rule, value, callback) {
|
|
|
- var params = {
|
|
|
- tableName: 'sys_user',
|
|
|
- fieldName: 'username',
|
|
|
- fieldVal: value,
|
|
|
- dataId: userId,
|
|
|
- };
|
|
|
- duplicateCheck(params).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- callback();
|
|
|
- } else {
|
|
|
- callback('用户名已存在!');
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- function handleConfirmBlur(e) {
|
|
|
- const value = e.target.value;
|
|
|
- confirmDirty.value = confirmDirty.value || !!value;
|
|
|
- }
|
|
|
-
|
|
|
- function normFile(e) {
|
|
|
- console.log('Upload event:', e);
|
|
|
- if (Array.isArray(e)) {
|
|
|
- return e;
|
|
|
- }
|
|
|
- return e && e.fileList;
|
|
|
- }
|
|
|
-
|
|
|
- function beforeUpload(file) {
|
|
|
- var fileType = file.type;
|
|
|
- if (fileType.indexOf('image') < 0) {
|
|
|
- $message.warning('请上传图片');
|
|
|
- return false;
|
|
|
- }
|
|
|
- //TODO 验证文件大小
|
|
|
- }
|
|
|
-
|
|
|
- function handleChange(info) {
|
|
|
- picUrl.value = '';
|
|
|
- if (info.file.status === 'uploading') {
|
|
|
- uploadLoading = true;
|
|
|
- return;
|
|
|
- }
|
|
|
- if (info.file.status === 'done') {
|
|
|
- var response = info.file.response;
|
|
|
- uploadLoading = false;
|
|
|
- console.log(response);
|
|
|
- if (response.success) {
|
|
|
- model.avatar = response.message;
|
|
|
- picUrl.value = 'Has no pic url yet';
|
|
|
- } else {
|
|
|
- $message.warning(response.message);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 搜索用户对应的部门API
|
|
|
- function onSearch() {
|
|
|
- $refs.enterpriseDepartWindow.add(checkedDepartKeys, userId);
|
|
|
+ function handleCancel() {
|
|
|
+ close();
|
|
|
}
|
|
|
|
|
|
- // 获取用户对应部门弹出框提交给返回的数据
|
|
|
- function modalFormOk(formData) {
|
|
|
- checkedDepartNames = [];
|
|
|
- selectedDepartKeys = [];
|
|
|
- checkedDepartNameString.value = '';
|
|
|
- userId.value = formData.userId;
|
|
|
- userDepartModel.userId = formData.userId;
|
|
|
- departIds = [];
|
|
|
- resultDepartOptions = [];
|
|
|
- var depart = [];
|
|
|
- for (let i = 0; i < formData.departIdList.length; i++) {
|
|
|
- selectedDepartKeys.push(formData.departIdList[i].key);
|
|
|
- checkedDepartNames.push(formData.departIdList[i].title);
|
|
|
- checkedDepartNameString.value = checkedDepartNames.join(',');
|
|
|
- //新增部门选择,如果上面部门选择后不为空直接付给负责部门
|
|
|
- depart.push({
|
|
|
- key: formData.departIdList[i].key,
|
|
|
- title: formData.departIdList[i].title,
|
|
|
- });
|
|
|
- departIds.push(formData.departIdList[i].key);
|
|
|
- }
|
|
|
- resultDepartOptions = depart;
|
|
|
- userDepartModel.departIdList = selectedDepartKeys;
|
|
|
- checkedDepartKeys = selectedDepartKeys; //更新当前的选择keys
|
|
|
- }
|
|
|
// 根据屏幕变化,设置抽屉尺寸
|
|
|
function resetScreenSize() {
|
|
|
let screenWidth = document.body.clientWidth;
|
|
@@ -530,14 +166,6 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- function identityChange(e) {
|
|
|
- if (e.target.value === '1') {
|
|
|
- departIdShow.value = false;
|
|
|
- } else {
|
|
|
- departIdShow.value = true;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
//获取需要轮流询盘的站点code
|
|
|
function getTurnInquiryCode() {
|
|
|
getAction('/adweb/adwebEnquiry/getTurnInquiryCode', {}).then((res) => {
|
|
@@ -549,6 +177,8 @@
|
|
|
|
|
|
defineExpose({
|
|
|
add,
|
|
|
+ edit,
|
|
|
+ disableSubmit,
|
|
|
title,
|
|
|
});
|
|
|
</script>
|