|
|
@@ -11,64 +11,25 @@
|
|
|
<a-button key="submit"
|
|
|
type="primary"
|
|
|
:loading="loading"
|
|
|
- @click="submit">锁定</a-button>
|
|
|
+ @click="submit">解锁</a-button>
|
|
|
</template>
|
|
|
- <a-form class="inlineForm"
|
|
|
- :model="formState">
|
|
|
- <a-row :gutter="24">
|
|
|
- <a-col :span="12">
|
|
|
- <a-form-item label="登录账号"
|
|
|
- name="">
|
|
|
- <span class="white">{{formState.logincode}}</span>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <a-form-item label="账户名称"
|
|
|
- name="">
|
|
|
- <span class="white">{{formState.accountname}}</span>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <a-form-item label="手机号码"
|
|
|
- name="">
|
|
|
- <span class="white">{{formState.mobile}}</span>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <a-form-item label="账户角色"
|
|
|
- name="userinfotype">
|
|
|
- <a-checkbox-group class="commonCheckboxGroup"
|
|
|
- v-model:value="formState.roleids">
|
|
|
- <a-row>
|
|
|
- <a-col :span="12">
|
|
|
- <a-checkbox :value="22">业务员</a-checkbox>
|
|
|
- </a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <a-checkbox :value="23">跟单员</a-checkbox>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-checkbox-group>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-form>
|
|
|
+ <Detail :selectedData="selectedData" />
|
|
|
</a-modal>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
import { closeModal } from '@/common/setup/modal/index';
|
|
|
-import { defineComponent, ref, PropType, watchEffect } from 'vue';
|
|
|
+import { defineComponent, ref, PropType } from 'vue';
|
|
|
import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
import { loginAccountOperate } from '@/services/proto/accountinfo';
|
|
|
import { LoginaccountOperateReq } from '@/services/proto/accountinfo/interface';
|
|
|
import { ErmcpLoginUser } from '@/services/go/ermcp/account/interface';
|
|
|
import { Modal } from 'ant-design-vue';
|
|
|
-import { mergeTwoObj } from '@/utils/objHandle';
|
|
|
-import { handleBusinessForm } from '../setup';
|
|
|
+import Detail from '../detail-commom-business/index.vue';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'account_info_business_btn_unlocked',
|
|
|
- components: {},
|
|
|
+ components: { Detail },
|
|
|
props: {
|
|
|
selectedData: {
|
|
|
default: {},
|
|
|
@@ -79,14 +40,6 @@ export default defineComponent({
|
|
|
// 控制关闭弹窗
|
|
|
const { visible, cancel } = closeModal('account_info_business_btn_unlocked');
|
|
|
const loading = ref<boolean>(false);
|
|
|
- const { formState } = handleBusinessForm();
|
|
|
- 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() {
|
|
|
Modal.confirm({
|
|
|
title: '是否确认解锁该账户',
|
|
|
@@ -108,7 +61,6 @@ export default defineComponent({
|
|
|
});
|
|
|
}
|
|
|
return {
|
|
|
- formState,
|
|
|
visible,
|
|
|
cancel,
|
|
|
submit,
|