|
@@ -19,37 +19,7 @@
|
|
|
@click="submit">解锁
|
|
@click="submit">解锁
|
|
|
</a-button>
|
|
</a-button>
|
|
|
</template>
|
|
</template>
|
|
|
- <a-form class="inlineForm"
|
|
|
|
|
- ref="formRef"
|
|
|
|
|
- :model="formState"
|
|
|
|
|
- :rules="rules">
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="账户权限"
|
|
|
|
|
- name="userid">
|
|
|
|
|
- <span class="white">{{selectedData.rolename}}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="账户名称"
|
|
|
|
|
- name="logincode">
|
|
|
|
|
- <span class="white">{{selectedData.loginname}}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="登录账号"
|
|
|
|
|
- name="accountname">
|
|
|
|
|
- <span class="white">{{selectedData.logincode}}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="手机号码"
|
|
|
|
|
- name="mobile">
|
|
|
|
|
- <span class="white">{{selectedData.mobile}}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </a-form>
|
|
|
|
|
|
|
+ <Detail :selectedData="selectedData" />
|
|
|
</a-modal>
|
|
</a-modal>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -61,10 +31,11 @@ import { Modal } from 'ant-design-vue';
|
|
|
import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
import { LoginaccountOperateReq } from '@/services/proto/accountinfo/interface';
|
|
import { LoginaccountOperateReq } from '@/services/proto/accountinfo/interface';
|
|
|
import { loginAccountOperate } from '@/services/proto/accountinfo';
|
|
import { loginAccountOperate } from '@/services/proto/accountinfo';
|
|
|
|
|
+import Detail from '../detail-commom-manager/index.vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'account_info_manager_btn_unlocked',
|
|
name: 'account_info_manager_btn_unlocked',
|
|
|
- components: {},
|
|
|
|
|
|
|
+ components: { Detail },
|
|
|
props: {
|
|
props: {
|
|
|
selectedData: {
|
|
selectedData: {
|
|
|
type: Object as PropType<ErmcpLoginUser>,
|
|
type: Object as PropType<ErmcpLoginUser>,
|