From c76d348859c3f33a0a53c61a972be34deaf5c395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <14166000+zhangtonghai@user.noreply.gitee.com> Date: Mon, 14 Oct 2024 15:16:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E5=B1=80=E6=9B=BF=E6=8D=A2=20?= =?UTF-8?q?=E5=9B=BD=E5=AE=B6=20=E4=B8=BA=20=E5=9B=BD=E5=AE=B6=E5=9C=B0?= =?UTF-8?q?=E5=8C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/configOptions.ts | 6 +- src/store/modules/options.ts | 4 +- .../baseinfo/country/TenantAuditStepModal.vue | 2 +- src/views/baseinfo/country/columns.tsx | 22 +- src/views/baseinfo/country/index.vue | 4 +- src/views/baseinfo/infoclient/EditColumns.tsx | 2 +- src/views/baseinfo/infoclient/api.ts | 2 +- src/views/baseinfo/infoclient/columns.tsx | 10 +- .../baseinfo/infoclientAudit/columns.tsx | 2 +- src/views/baseinfo/port/columns.tsx | 10 +- src/views/baseinfo/sendReciveTem/columns.tsx | 14 +- src/views/baseinfo/shipping/columns.tsx | 6 +- .../bookingcabin/CabinInventory/columns.tsx | 68 +- .../bookingcabin/CabinManagement/columns.tsx | 2 +- .../detail/components/applyInfoColumns.tsx | 28 +- .../detail/components/applyInfoColumns.tsx | 28 +- .../operation/seaexport/api/BookingLedger.js | 44 +- .../detail/components/ladingInfo.tsx | 187 +- .../seaexport/detail/modules/preOrder.tsx | 115 +- .../seaexport/detail/modules/preOrder.vue | 1754 +++++++++-------- .../detail/modules/preOrderData.json | 12 +- .../taskList/transPlanHasChange.vue | 392 ++-- 22 files changed, 1411 insertions(+), 1303 deletions(-) diff --git a/src/store/modules/configOptions.ts b/src/store/modules/configOptions.ts index 63b8cfd1..7b5d9188 100644 --- a/src/store/modules/configOptions.ts +++ b/src/store/modules/configOptions.ts @@ -25,7 +25,7 @@ import { GetCodeCountryList, GetClientGoodsList, GetYardClientList, - GetControllerClientList + GetControllerClientList, } from '/@/views/operation/seaexport/api/BookingLedger' import { getList } from '/@/views/flowcenter/flowInstances/api' import { @@ -33,7 +33,7 @@ import { GetClientListByCode, GetCtnSelectList, GetTenantParamSelectList, - getOrgList + getOrgList, } from '/@/api/common/index' import { getClientBankList } from '/@/views/baseinfo/infoclient/api' export default { @@ -185,7 +185,7 @@ export default { return res.data }) }, - // 国家 + // 国家地区 GetCodeCountryList: () => { return GetCodeCountryList().then((res) => { return res.data diff --git a/src/store/modules/options.ts b/src/store/modules/options.ts index 8149930c..11a986a9 100644 --- a/src/store/modules/options.ts +++ b/src/store/modules/options.ts @@ -46,7 +46,7 @@ export const useOptionsStore = defineStore({ GetFeeCurrencySelectList: null, // 用户表 GetUserList: null, - // 国家 + // 国家地区 GetCodeCountryList: null, // 车队 GetTruckClientList: null, @@ -67,7 +67,7 @@ export const useOptionsStore = defineStore({ // 场站 GetYardClientList: null, // 委托单位 - GetControllerClientList: null + GetControllerClientList: null, }), getters: { // 通过code获取下拉字典(code)就是接口尾部单词 diff --git a/src/views/baseinfo/country/TenantAuditStepModal.vue b/src/views/baseinfo/country/TenantAuditStepModal.vue index b3326ccb..fa7f8c76 100644 --- a/src/views/baseinfo/country/TenantAuditStepModal.vue +++ b/src/views/baseinfo/country/TenantAuditStepModal.vue @@ -79,7 +79,7 @@ setModalProps({ loading: false }) }) - const getTitle = computed(() => (!unref(isUpdate) ? '新增国家信息' : '编辑国家信息')) + const getTitle = computed(() => (!unref(isUpdate) ? '新增国家地区信息' : '编辑国家地区信息')) async function handleSave(exit) { try { diff --git a/src/views/baseinfo/country/columns.tsx b/src/views/baseinfo/country/columns.tsx index c58a87da..07304880 100644 --- a/src/views/baseinfo/country/columns.tsx +++ b/src/views/baseinfo/country/columns.tsx @@ -2,17 +2,17 @@ import { BasicColumn, FormSchema } from '/@/components/Table' import { Tag } from 'ant-design-vue' export const columns: BasicColumn[] = [ { - title: '国家唯一代码', + title: '国家地区唯一代码', dataIndex: 'countryCode', width: 150, }, { - title: '国家名称', + title: '国家地区名称', dataIndex: 'countryName', width: 200, }, { - title: '国家英文名称', + title: '国家地区英文名称', dataIndex: 'countryEnName', width: 200, }, @@ -37,12 +37,12 @@ export const columns: BasicColumn[] = [ width: 200, }, { - title: '国家3字代码', + title: '国家地区3字代码', dataIndex: 'countryCode3', width: 200, }, { - title: '国家描述', + title: '国家地区描述', dataIndex: 'explain', width: 200, }, @@ -74,7 +74,7 @@ export const columns: BasicColumn[] = [ export const searchFormSchema: FormSchema[] = [ { field: 'CountryName', - label: '国家名称', + label: '国家地区名称', component: 'Input', colProps: { span: 6 }, }, @@ -89,7 +89,7 @@ export const formSchema: FormSchema[] = [ }, { field: 'countryCode', - label: '国家唯一代码', + label: '国家地区唯一代码', component: 'Input', required: true, colProps: { span: 12 }, @@ -99,14 +99,14 @@ export const formSchema: FormSchema[] = [ }, { field: 'countryName', - label: '国家名称', + label: '国家地区名称', component: 'Input', required: true, colProps: { span: 12 }, }, { field: 'countryEnName', - label: '国家英文名称', + label: '国家地区英文名称', component: 'Input', colProps: { span: 12 }, @@ -139,14 +139,14 @@ export const formSchema: FormSchema[] = [ }, { field: 'countryCode3', - label: '国家3字代码', + label: '国家地区3字代码', component: 'Input', colProps: { span: 12 }, }, { field: 'explain', - label: '国家描述', + label: '国家地区描述', component: 'InputTextArea', colProps: { span: 12 }, diff --git a/src/views/baseinfo/country/index.vue b/src/views/baseinfo/country/index.vue index bcf54225..5e966411 100644 --- a/src/views/baseinfo/country/index.vue +++ b/src/views/baseinfo/country/index.vue @@ -20,7 +20,7 @@ - 导入国家信息 + 导入国家地区信息