From 545f796578e5dbae3d1235bb11f9ba1cca01aa26 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 15 Jun 2023 17:05:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8F=E5=90=8C=E5=AE=A3=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/router/axios.js | 1 + .../Announce/AppAnnounce/components/Add.vue | 23 +++++++++++++++---- .../AppAnnounce/components/Detail.vue | 4 +++- .../Announce/AppAnnounce/components/List.vue | 5 ++-- 4 files changed, 26 insertions(+), 7 deletions(-) diff --git a/examples/router/axios.js b/examples/router/axios.js index d02ec70d..cd72a33e 100644 --- a/examples/router/axios.js +++ b/examples/router/axios.js @@ -35,6 +35,7 @@ instance.interceptors.request.use(config => { if (['/qxn', '/analysis'].includes(config.baseURL)) { config.url = config.url.replace(/(app|auth|admin)\//, "api/") } + config.url = config.url.replace(/(app|auth|admin)\//, "api/") return config }, error => Message.error(error)) export default instance diff --git a/packages/wxwork/Announce/AppAnnounce/components/Add.vue b/packages/wxwork/Announce/AppAnnounce/components/Add.vue index 0e8c4a1f..ad8bbe64 100644 --- a/packages/wxwork/Announce/AppAnnounce/components/Add.vue +++ b/packages/wxwork/Announce/AppAnnounce/components/Add.vue @@ -131,15 +131,25 @@ -
+
从本地上传,图片最大支持10MB,支持JPG,PNG格式;视频最大支持10MB,支持MP4格式;文件最大支持20MB
+ + + + {{ item.dictName }} + + + 确认 - + @@ -141,6 +141,7 @@ { slot: 'user', label: '创建人', openType: 'userName', align: 'center' }, { prop: 'choiceTime', label: '群发时间', align: 'center' }, { prop: 'taskEndTime', label: '群发结束时间', align: 'center' }, + { prop: 'markTag', label: '标签', align: 'center' }, { prop: 'status', align: 'center', @@ -159,7 +160,7 @@ }, created () { - this.dict.load('mstStatus', 'mstSendType').then(() => { + this.dict.load('mstStatus', 'mstSendType', 'mstTag').then(() => { this.getList() }) },