diff --git a/src/components/CostEntry/mainInfo.vue b/src/components/CostEntry/mainInfo.vue index cf8d7b3f..d14d090e 100644 --- a/src/components/CostEntry/mainInfo.vue +++ b/src/components/CostEntry/mainInfo.vue @@ -71,8 +71,12 @@ .ant-form-item-label { label { font-size: 12px; + height: 24px; } } + .ant-form-item-control-input { + min-height: 24px; + } .ant-form-item-control-input-content { font-size: 12px; font-weight: 600; diff --git a/src/components/File/list.vue b/src/components/File/list.vue index 1ec17982..39b66718 100644 --- a/src/components/File/list.vue +++ b/src/components/File/list.vue @@ -128,7 +128,7 @@ } // 预览 const previewFile = (item) => { - let fileURL = `http://118.190.144.189:3008//${item.filePath}` + let fileURL = `http://118.190.144.189:3008/LinkAttach/${item.filePath}` window.open(fileURL) } const showIcon = (v) => { diff --git a/src/views/operation/seaexport/detail/index.vue b/src/views/operation/seaexport/detail/index.vue index d32bb939..73d1c843 100644 --- a/src/views/operation/seaexport/detail/index.vue +++ b/src/views/operation/seaexport/detail/index.vue @@ -968,7 +968,8 @@ const submit = async () => { const postData = { businessId: id.value, - businessType: '1' + businessType: '1', + taskTypeName: 'WAIT_ORDER_AUDIT' } loading.value = true await CreateTask(postData) diff --git a/src/views/operation/seaexport/detail/modules/baseInfo.tsx b/src/views/operation/seaexport/detail/modules/baseInfo.tsx index 6cd21130..79ee347c 100644 --- a/src/views/operation/seaexport/detail/modules/baseInfo.tsx +++ b/src/views/operation/seaexport/detail/modules/baseInfo.tsx @@ -199,6 +199,15 @@ export const basicInfoFormSchema: FormSchema[] = [ valueFormat: 'YYYY-MM', }, }, + { + field: 'isBusinessLocking', + label: '业务锁定', + component: 'Input', + required: false, + dynamicDisabled: true, + colProps: { span: 4 }, + colSlot: 'isBusinessLocking' + }, { field: 'blType', label: '装运方式', @@ -227,15 +236,6 @@ export const basicInfoFormSchema: FormSchema[] = [ } } }, - { - field: 'isBusinessLocking', - label: '业务锁定', - component: 'Input', - required: false, - dynamicDisabled: true, - colProps: { span: 4 }, - colSlot: 'isBusinessLocking' - }, { label: '业务来源', field: 'sourceId', diff --git a/src/views/operation/seaexport/detail/modules/basicInfo.vue b/src/views/operation/seaexport/detail/modules/basicInfo.vue index f0e58baf..682c7c6b 100644 --- a/src/views/operation/seaexport/detail/modules/basicInfo.vue +++ b/src/views/operation/seaexport/detail/modules/basicInfo.vue @@ -55,13 +55,13 @@