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 @@ - 导入国家信息 + 导入国家地区信息