|
|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
- <!-- 修改账户 -->
|
|
|
+ <!-- 修改登录账户 -->
|
|
|
<a-modal class="commonModal add-business-info"
|
|
|
- title="修改业务账户"
|
|
|
+ title="修改登录账户"
|
|
|
v-model:visible="visible"
|
|
|
@cancel="cancel"
|
|
|
centered
|
|
|
@@ -20,14 +20,15 @@
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="账户角色"
|
|
|
- name="userinfotype">
|
|
|
- <a-checkbox-group class="commonCheckboxGroup">
|
|
|
+ name="roleids">
|
|
|
+ <a-checkbox-group class="commonCheckboxGroup"
|
|
|
+ v-model:value="formState.roleids">
|
|
|
<a-row>
|
|
|
<a-col :span="12">
|
|
|
- <a-checkbox value="A">业务员</a-checkbox>
|
|
|
+ <a-checkbox :value="22">业务员</a-checkbox>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-checkbox value="B">跟单员</a-checkbox>
|
|
|
+ <a-checkbox :value="23">跟单员</a-checkbox>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-checkbox-group>
|
|
|
@@ -35,33 +36,29 @@
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="账户名称"
|
|
|
- name="">
|
|
|
+ name="logincode">
|
|
|
<a-input class="dialogInput"
|
|
|
style="width: 200px"
|
|
|
+ v-model:value="formState.logincode"
|
|
|
placeholder="请输入账户名称" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="登录账号"
|
|
|
- name="">
|
|
|
+ name="accountname">
|
|
|
<a-input class="dialogInput"
|
|
|
style="width: 200px"
|
|
|
+ readonly
|
|
|
+ v-model:value="formState.accountname"
|
|
|
placeholder="请输入登录账号" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
- <a-form-item label="登录密码"
|
|
|
- name="">
|
|
|
- <a-input-password class="dialogInput"
|
|
|
- style="width: 200px"
|
|
|
- placeholder="请输入登录密码" />
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="24">
|
|
|
<a-form-item label="手机号码"
|
|
|
- name="">
|
|
|
+ name="mobile">
|
|
|
<a-input class="dialogInput"
|
|
|
style="width: 200px"
|
|
|
+ v-model:value="formState.mobile"
|
|
|
placeholder="请输入手机号码" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
@@ -72,55 +69,64 @@
|
|
|
|
|
|
<script lang="ts">
|
|
|
import { closeModal } from '@/common/setup/modal/index';
|
|
|
-import { initData } from '@/common/methods/index';
|
|
|
-import { defineComponent, ref, reactive, toRaw, UnwrapRef } from 'vue';
|
|
|
-import { AllEnums } from '@/services/go/commonService/interface';
|
|
|
-import { RuleObject, ValidateErrorEntity } from 'ant-design-vue/es/form/interface';
|
|
|
+import { defineComponent, ref, toRaw, watchEffect, PropType } from 'vue';
|
|
|
+import { ValidateErrorEntity } from 'ant-design-vue/es/form/interface';
|
|
|
+import { handleBusinessForm } from '../setup';
|
|
|
+import { BusinessFormState } from '../interface';
|
|
|
+import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
+import { loginAccountOperate } from '@/services/proto/accountinfo';
|
|
|
+import { mergeTwoObj } from '@/utils/objHandle';
|
|
|
+import { ErmcpLoginUser } from '@/services/go/ermcp/account/interface';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'add-custom',
|
|
|
components: {},
|
|
|
- setup() {
|
|
|
+ props: {
|
|
|
+ selectedData: {
|
|
|
+ default: {},
|
|
|
+ type: Object as PropType<ErmcpLoginUser>,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ setup(props, context) {
|
|
|
// 控制关闭弹窗
|
|
|
const { visible, cancel } = closeModal('account_info_business_btn_modify');
|
|
|
- // 证件类型
|
|
|
- // const cardTypeList = ref<AllEnums[]>(getCardType());
|
|
|
- // // 表单
|
|
|
- // const formRef = ref();
|
|
|
- // const formState: UnwrapRef<FormState> = reactive(initFormState());
|
|
|
- // const rules = {
|
|
|
- // userinfotype: [{ required: true, message: '请选择客户类型', trigger: 'change' }],
|
|
|
- // customername: [{ required: true, message: '请输入企业名称', trigger: 'blur' }],
|
|
|
- // nickname: [{ required: true, message: '请输入企业简称', trigger: 'blur' }],
|
|
|
- // cardtype: [{ required: true, message: '请选择证件类型', trigger: 'change' }],
|
|
|
- // };
|
|
|
- // // 下单方法
|
|
|
- // const { loading, applyAction } = handleApply();
|
|
|
- // function isPersonal(): boolean {
|
|
|
- // return formState.userinfotype === '1';
|
|
|
- // }
|
|
|
- // function submit() {
|
|
|
- // formRef.value
|
|
|
- // .validate()
|
|
|
- // .then(() => {
|
|
|
- // const param = toRaw(formState);
|
|
|
- // applyAction(param);
|
|
|
- // console.log('values', formState);
|
|
|
- // })
|
|
|
- // .catch((error: ValidateErrorEntity<FormState>) => {
|
|
|
- // console.log('error', error);
|
|
|
- // });
|
|
|
- // }
|
|
|
+ const { rules, formState, formRef } = handleBusinessForm();
|
|
|
+ const loading = ref<boolean>(false);
|
|
|
+ watchEffect(() => {
|
|
|
+ if (visible.value) {
|
|
|
+ mergeTwoObj(formState, props.selectedData);
|
|
|
+ // roletype :string;//角色类型(逗号隔开,如22,23), 22:业务员 23:跟单员 24:交易员
|
|
|
+ formState.roleids = props.selectedData.roletype.split(',').map((e) => +e);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ function submit() {
|
|
|
+ formRef.value
|
|
|
+ .validate()
|
|
|
+ .then(() => {
|
|
|
+ const param = toRaw(formState);
|
|
|
+ const reqParam = {
|
|
|
+ operatetype: 2,
|
|
|
+ };
|
|
|
+ Object.assign(reqParam, param);
|
|
|
+ console.log('reqParam', reqParam);
|
|
|
+
|
|
|
+ requestResultLoadingAndInfo(loginAccountOperate, reqParam, loading, ['修改账户成功', '修改账户失败:']).then(() => {
|
|
|
+ cancel();
|
|
|
+ context.emit('refresh');
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch((error: ValidateErrorEntity<BusinessFormState>) => {
|
|
|
+ console.log('error', error);
|
|
|
+ });
|
|
|
+ }
|
|
|
return {
|
|
|
- // formState,
|
|
|
- // rules,
|
|
|
- // formRef,
|
|
|
- // cardTypeList,
|
|
|
- // isPersonal,
|
|
|
+ formState,
|
|
|
+ rules,
|
|
|
+ formRef,
|
|
|
visible,
|
|
|
cancel,
|
|
|
- // submit,
|
|
|
- // loading,
|
|
|
+ submit,
|
|
|
+ loading,
|
|
|
};
|
|
|
},
|
|
|
});
|
|
|
@@ -221,3 +227,4 @@ export default defineComponent({
|
|
|
}
|
|
|
</style
|
|
|
>;
|
|
|
+
|