diff --git a/src/views/ProjectManage/api.js b/src/views/ProjectManage/api.js index 09ee38c4..ef3640af 100644 --- a/src/views/ProjectManage/api.js +++ b/src/views/ProjectManage/api.js @@ -123,7 +123,7 @@ export function setSurveyStatus(params) { export function getTagsList(params) { return request({ method: "GET", - url: '/console/survey_tags', + url: `/console/survey_tags`, params, }); } diff --git a/src/views/ProjectManage/components/ScreenBox.vue b/src/views/ProjectManage/components/ScreenBox.vue index 788ded9e..db712e88 100644 --- a/src/views/ProjectManage/components/ScreenBox.vue +++ b/src/views/ProjectManage/components/ScreenBox.vue @@ -30,7 +30,35 @@ :key="item.id" >
- {{ item.title }} + {{ + item.title + }} +
+ + + + + + + +
+ {{ + item.title + }}
+ @@ -272,7 +308,17 @@ const columns = [ dataIndex: "tag[0].title", align: "center", slots: { - customRender: "tag", + customRender: "templateTag", + }, + width: 200, + }, + { + title: "模板标签", + key: "template_tags[0].title", + dataIndex: "template_tags[0].title", + align: "center", + slots: { + customRender: "templateTag", }, width: 200, }, @@ -833,7 +879,7 @@ export default defineComponent({ .ant-table-title { padding: 0 !important; } -.table-sell{ +.table-sell { color: $yili-default-color; word-break: keep-all; }