From 9ed5a1ac4280da0476cefb3015f1cdabf7c89827 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Mon, 23 Mar 2026 16:28:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BE=9B=E5=BA=94=E5=95=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=8F=8A=E4=BF=AE=E6=94=B9=E5=91=98=E5=B7=A5?= =?UTF-8?q?=E5=A4=B4=E5=83=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/admin/bizSuppliers/NuBizSuppliersApply.data.ts | 6 +++--- src/views/admin/bizSuppliers/NuBizSuppliersApplyList.vue | 6 +++--- src/views/admin/bizSuppliers/NuBizSuppliersInfo.data.ts | 9 ++++++--- src/views/admin/bizSuppliers/NuBizSuppliersInfoList.vue | 6 +++--- .../bizSuppliers/components/NuBizSuppliersApplyForm.vue | 2 +- .../bizSuppliers/components/NuBizSuppliersInfoForm.vue | 2 +- .../configSuppliersInfo/ConfigSuppliersInfo.data.ts | 6 +++--- 7 files changed, 20 insertions(+), 17 deletions(-) diff --git a/src/views/admin/bizSuppliers/NuBizSuppliersApply.data.ts b/src/views/admin/bizSuppliers/NuBizSuppliersApply.data.ts index bbc602a..ac899bc 100644 --- a/src/views/admin/bizSuppliers/NuBizSuppliersApply.data.ts +++ b/src/views/admin/bizSuppliers/NuBizSuppliersApply.data.ts @@ -49,7 +49,7 @@ export const columns: BasicColumn[] = [ dataIndex: 'openingBankNo' }, { - title: '资质照片', + title: '营业执照', align: "center", dataIndex: 'imgPath', customRender: render.renderImage, @@ -139,7 +139,7 @@ export const columns2: BasicColumn[] = [ dataIndex: 'openingBankNo' }, { - title: '资质照片', + title: '营业执照', align: "center", dataIndex: 'imgPath', customRender: render.renderImage, @@ -192,7 +192,7 @@ export const superQuerySchema = { supplyState: {title: '供应状态',order: 5,view: 'list', type: 'string',dictCode: '',}, openingBank: {title: '开户行',order: 6,view: 'text', type: 'string',}, openingBankNo: {title: '开户行账号',order: 7,view: 'text', type: 'string',}, - imgPath: {title: '资质照片',order: 8,view: 'image', type: 'string',}, + imgPath: {title: '营业执照',order: 8,view: 'image', type: 'string',}, status: {title: '审核状态',order: 9,view: 'text', type: 'string',}, auditContent: {title: '审核内容',order: 10,view: 'text', type: 'string',}, }; diff --git a/src/views/admin/bizSuppliers/NuBizSuppliersApplyList.vue b/src/views/admin/bizSuppliers/NuBizSuppliersApplyList.vue index 8dbe556..a56733a 100644 --- a/src/views/admin/bizSuppliers/NuBizSuppliersApplyList.vue +++ b/src/views/admin/bizSuppliers/NuBizSuppliersApplyList.vue @@ -105,9 +105,9 @@ const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext; const labelCol = reactive({ xs:24, - sm:8, - xl:8, - xxl:8 + sm:6, + xl:6, + xxl:6 }); const wrapperCol = reactive({ xs: 24, diff --git a/src/views/admin/bizSuppliers/NuBizSuppliersInfo.data.ts b/src/views/admin/bizSuppliers/NuBizSuppliersInfo.data.ts index 48f216c..08d8136 100644 --- a/src/views/admin/bizSuppliers/NuBizSuppliersInfo.data.ts +++ b/src/views/admin/bizSuppliers/NuBizSuppliersInfo.data.ts @@ -48,7 +48,7 @@ export const columns: BasicColumn[] = [ dataIndex: 'openingBankNo' }, { - title: '资质照片', + title: '营业执照', align: "center", dataIndex: 'imgPath', customRender: render.renderImage, @@ -58,7 +58,10 @@ export const columns: BasicColumn[] = [ title: '入驻日期', align: "center", dataIndex: 'createTime', - width: 160 + width: 160, + customRender: function ({ text }) { + return text?text.substring(0,10):''; + }, }, ]; @@ -72,6 +75,6 @@ export const superQuerySchema = { supplyState: {title: '供应状态',order: 5,view: 'list', type: 'string',dictCode: 'supply_status',}, openingBank: {title: '开户行',order: 6,view: 'text', type: 'string',}, openingBankNo: {title: '开户行账号',order: 7,view: 'text', type: 'string',}, - imgPath: {title: '资质照片',order: 8,view: 'image', type: 'string',}, + imgPath: {title: '营业执照',order: 8,view: 'image', type: 'string',}, createTime: {title: '创建日期',order: 9,view: 'datetime', type: 'string',}, }; diff --git a/src/views/admin/bizSuppliers/NuBizSuppliersInfoList.vue b/src/views/admin/bizSuppliers/NuBizSuppliersInfoList.vue index c3c7d77..c113459 100644 --- a/src/views/admin/bizSuppliers/NuBizSuppliersInfoList.vue +++ b/src/views/admin/bizSuppliers/NuBizSuppliersInfoList.vue @@ -104,9 +104,9 @@ const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext; const labelCol = reactive({ xs:24, - sm:8, - xl:8, - xxl:8 + sm:6, + xl:6, + xxl:6 }); const wrapperCol = reactive({ xs: 24, diff --git a/src/views/admin/bizSuppliers/components/NuBizSuppliersApplyForm.vue b/src/views/admin/bizSuppliers/components/NuBizSuppliersApplyForm.vue index c46410c..b3e1502 100644 --- a/src/views/admin/bizSuppliers/components/NuBizSuppliersApplyForm.vue +++ b/src/views/admin/bizSuppliers/components/NuBizSuppliersApplyForm.vue @@ -43,7 +43,7 @@ - + diff --git a/src/views/admin/bizSuppliers/components/NuBizSuppliersInfoForm.vue b/src/views/admin/bizSuppliers/components/NuBizSuppliersInfoForm.vue index d2ff127..4df997b 100644 --- a/src/views/admin/bizSuppliers/components/NuBizSuppliersInfoForm.vue +++ b/src/views/admin/bizSuppliers/components/NuBizSuppliersInfoForm.vue @@ -40,7 +40,7 @@ - + diff --git a/src/views/invoicing/configSuppliersInfo/ConfigSuppliersInfo.data.ts b/src/views/invoicing/configSuppliersInfo/ConfigSuppliersInfo.data.ts index 4323b65..74cf78d 100644 --- a/src/views/invoicing/configSuppliersInfo/ConfigSuppliersInfo.data.ts +++ b/src/views/invoicing/configSuppliersInfo/ConfigSuppliersInfo.data.ts @@ -51,7 +51,7 @@ export const columns: BasicColumn[] = [ dataIndex: 'wechartId' }, { - title: '资质照片', + title: '营业执照', align:"center", dataIndex: 'imgPath', customRender:render.renderImage, @@ -152,7 +152,7 @@ export const formSchema: FormSchema[] = [ component: 'Input', }, { - label: '资质照片', + label: '营业执照', field: 'imgPath', component: 'JImageUpload', componentProps:{ @@ -179,7 +179,7 @@ export const superQuerySchema = { openingBank: {title: '开户行',order: 6,view: 'text', type: 'string',}, openingBankNo: {title: '开户行账号',order: 7,view: 'text', type: 'string',}, wechartId: {title: '微信账号',order: 8,view: 'text', type: 'string',}, - imgPath: {title: '资质照片',order: 9,view: 'image', type: 'string',}, + imgPath: {title: '营业执照',order: 9,view: 'image', type: 'string',}, }; /**