huangbin 4 年 前
コミット
e732cbd978

+ 2 - 1
src/views/platinum/platinum_customer_info/compoments/cancel/index.vue

@@ -27,13 +27,14 @@ import { ModifyUserInfoReq, QueryCustomInfoType } from '@/services/go/ermcp/cust
 import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
 import { QueryModifyUserInfo } from '@/services/go/ermcp/customInfo';
 import Detail from '../common-detail/index.vue';
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'custom_info_btn_cancel',
     components: { Detail },
     props: {
         selectedRow: {
-            type: Object as PropType<QueryCustomInfoType>,
+            type: Object as PropType<QhjCustomer>,
             default: {},
         },
     },

+ 2 - 1
src/views/platinum/platinum_customer_info/compoments/check/index.vue

@@ -37,13 +37,14 @@ import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo
 import { auditWskhUserInfo, userInfoCheck } from '@/services/proto/accountinfo';
 import Detail from '../common-detail/index.vue';
 import { getLongTypeLoginID } from '@/services/bus/login';
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'custom_info_btn_check',
     components: { Detail },
     props: {
         selectedRow: {
-            type: Object as PropType<QueryCustomInfoType>,
+            type: Object as PropType<QhjCustomer>,
             default: {},
         },
     },

+ 3 - 3
src/views/platinum/platinum_customer_info/compoments/common-detail/index.vue

@@ -21,7 +21,7 @@ import { formatValue } from '@/common/methods';
 import { getCardTypeEnumItemName } from '@/common/constants/enumsName';
 import { Des, DescriptionsList, handleDesList } from '@/common/components/commonDes';
 import { handlePreviewImg } from '@/common/setup/upload';
-import {QhjCustomer} from "@/services/go/ermcp/qhj/interface";
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'custom-detail-desc',
@@ -64,7 +64,7 @@ export default defineComponent({
                     { label: '身份证号码', value: formatValue(data.cardnum) },
                     { label: '手机号码', value: formatValue(data.mobile) },
                     { label: '身份证正面照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
-                    { label: '身份证反面照', value: formatValue(getImgName(data.cardbackphotourl)), className: 'blue'  },
+                    { label: '身份证反面照', value: formatValue(getImgName(data.cardbackphotourl)), className: 'blue' },
                     { label: '邮箱', value: formatValue(data.email) },
                     { label: '联系电话', value: formatValue(data.telphone) },
                     { label: '通讯地址', value: formatValue(data.address) },
@@ -81,7 +81,7 @@ export default defineComponent({
                     { label: '法定代表人', value: formatValue(data.legalpersonname) },
                     { label: '证件号码', value: formatValue(data.cardnum) },
                     { label: '纳税人识别号', value: formatValue(data.taxpayernum) },
-                    { label: '营业执照', value: formatValue(getImgName(data.attachment1)), className: 'blue'  },
+                    { label: '营业执照', value: formatValue(getImgName(data.attachment1)), className: 'blue' },
                     { label: '联系人', value: formatValue(data.contactname) },
                     { label: '联系人手机号', value: formatValue(data.mobile) },
                     { label: '联系电话', value: formatValue(data.telphone) },

+ 2 - 1
src/views/platinum/platinum_customer_info/compoments/delete/index.vue

@@ -25,13 +25,14 @@ import { Modal } from 'ant-design-vue';
 import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
 import { QueryDeleteUserInfoApply } from '@/services/go/ermcp/customInfo';
 import Detail from '../common-detail/index.vue';
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'recover-custom',
     components: { Detail },
     props: {
         selectedRow: {
-            type: Object as PropType<QueryCustomInfoType>,
+            type: Object as PropType<QhjCustomer>,
             default: {},
         },
     },

+ 2 - 1
src/views/platinum/platinum_customer_info/compoments/disable/index.vue

@@ -30,13 +30,14 @@ import { Modal } from 'ant-design-vue';
 import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
 import { UpdateUserAccountStatus } from '@/services/go/ermcp/customInfo';
 import Detail from '../common-detail/index.vue';
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'custom-disable',
     components: { Detail },
     props: {
         selectedRow: {
-            type: Object as PropType<QueryCustomInfoType>,
+            type: Object as PropType<QhjCustomer>,
             default: {},
         },
     },

+ 2 - 1
src/views/platinum/platinum_customer_info/compoments/recover/index.vue

@@ -29,13 +29,14 @@ import { Modal } from 'ant-design-vue';
 import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
 import { UpdateUserAccountStatus } from '@/services/go/ermcp/customInfo';
 import Detail from '../common-detail/index.vue';
+import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
 
 export default defineComponent({
     name: 'modify-custom',
     components: { Detail },
     props: {
         selectedRow: {
-            type: Object as PropType<QueryCustomInfoType>,
+            type: Object as PropType<QhjCustomer>,
             default: {},
         },
     },