From 7cd5ea98451006f9bfb3f18b3b55cd05c32bd813 Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Tue, 26 Mar 2024 11:33:45 +0800
Subject: [PATCH] 议事管理指定人员优化
---
src/views/article/publicSignUp.vue | 34 ++++++++++++++++++----------------
src/views/article/discussionManage.vue | 2 +-
2 files changed, 19 insertions(+), 17 deletions(-)
diff --git a/src/views/article/discussionManage.vue b/src/views/article/discussionManage.vue
index a61f288..0ce1743 100644
--- a/src/views/article/discussionManage.vue
+++ b/src/views/article/discussionManage.vue
@@ -697,7 +697,7 @@
this.page.total = data.total
this.data = data.records
this.data.forEach(item => {
- // item.articleRange = JSON.parse(item.articleRange)
+ item.articleList = JSON.parse(item.articleRange)
if (item.url.length > 0) {
var urls = []
var names = item.url.split(",")
diff --git a/src/views/article/publicSignUp.vue b/src/views/article/publicSignUp.vue
index 8ec3620..30b8a48 100644
--- a/src/views/article/publicSignUp.vue
+++ b/src/views/article/publicSignUp.vue
@@ -146,21 +146,6 @@
}, ],
},
{
- width: 110,
- label: "文章封面",
- prop: "url",
- // align:'center',
- type: "upload",
- listType: "picture-img",
- action: "/api/blade-resource/oss/endpoint/put-file",
- propsHttp: {
- res: "data",
- url: "link",
- },
- // hide: true,
- span: 24,
- },
- {
label: "文章范围",
prop: "articleList",
span: 12,
@@ -178,8 +163,24 @@
label: "name",
value: 'id'
},
- hide: true,
+ // hide: true,
},
+ {
+ width: 110,
+ label: "文章封面",
+ prop: "url",
+ // align:'center',
+ type: "upload",
+ listType: "picture-img",
+ action: "/api/blade-resource/oss/endpoint/put-file",
+ propsHttp: {
+ res: "data",
+ url: "link",
+ },
+ // hide: true,
+ span: 24,
+ },
+
{
width: 110,
label: "文章类型",
@@ -643,6 +644,7 @@
this.page.total = data.total
this.data = data.records
this.data.forEach(item => {
+ item.articleList = JSON.parse(item.articleRange)
if (item.url.length > 0) {
var urls = []
var names = item.url.split(",")
--
Gitblit v1.9.3