From c7a8258401d932b56eace5a3d28ff28a58cdb816 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 11 Jul 2024 18:27:45 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=B8=82=E5=9C=BA=E6=B3=95=E8=A7=84?= =?UTF-8?q?=E6=B8=85=E5=8D=95=E5=8F=91=E5=B8=83=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/api.js | 3 +-- .../marketListReleaseProcess/modules/BaseInfoForm.vue | 7 +++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/api/api.js b/src/api/api.js index d36d17b..4db1a4c 100644 --- a/src/api/api.js +++ b/src/api/api.js @@ -133,8 +133,7 @@ const getFileInfo = (params) => getAction('/sys/oss/file/queryById', params) const getStandardList = (params) => getAction('/laws/standard/common/getManyStandardSelectionBox', params) // 市场法规清单选择框,分页查询数据(无权限) -// todo 需要换没权限的 -const getMarketRegulationsList = (params) => getAction('/laws/marketStandard/page', params) +const getMarketRegulationsList = (params) => getAction('/laws/marketStandard/queryPageListByOther', params) // 内部工作组,左侧树查询 const getWorkGroupTreeList = (params) => getAction('/sys/lawsWorkingGroup/list', params) diff --git a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue index ed039dd..4b67cc0 100644 --- a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue @@ -15,6 +15,8 @@ selectOnly :name-str="formInline.manifestNo" :placeholder="$t('pleaseSelect') + $t('listNumber')" + @listChange="listChange" + :filters="{manifestStatus: '2,3'}" v-model="formInline.manifestId" /> @@ -412,8 +414,8 @@ export default { // 版本号 formInline.manifestVersion = result.manifestVersion // 国家/地区 - if (formInline.country) { - formInline.country = formInline.country.split(',').map(item => { + if (result.country) { + formInline.country = result.country.split(',').map(item => { return { value: item } }) } @@ -424,6 +426,7 @@ export default { } }).finally(() => { this.loading = false + this.isGetDataAfter = true let manifestVersion = '' if (this.formInline.manifestVersion) { manifestVersion = this.getStringBetween(this.formInline.manifestVersion, 'V', '.')