From 4e32f1188e9d0cafd3511994d2d13617ca6e08f9 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 15 十二月 2023 11:15:00 +0800 Subject: [PATCH] 完成 --- src/views/repositoryai/templateku/configurat/index.vue | 31 +++++++++++++++++++++++++------ 1 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/views/repositoryai/templateku/configurat/index.vue b/src/views/repositoryai/templateku/configurat/index.vue index bd95c12..97892d0 100644 --- a/src/views/repositoryai/templateku/configurat/index.vue +++ b/src/views/repositoryai/templateku/configurat/index.vue @@ -128,13 +128,15 @@ v-if="inputVisible" @change="handleInputConfirm" filterable + allow-create + default-first-option placeholder="璇烽�夋嫨" > <el-option - v-for="item in options" - :key="item.label" - :label="item.label" - :value="item.label" + v-for="item in optionstag" + :key="item.tagname" + :label="item.tagname" + :value="item.tagname" > </el-option> </el-select> @@ -538,7 +540,7 @@ </el-form-item></el-col > <el-col :span="8"> - <div style="text-align: right; padding-right: 10px;" > + <div style="text-align: right; padding-right: 10px"> <el-button type="danger" round>鍒犻櫎</el-button> </div> </el-col> @@ -705,6 +707,8 @@ </template> <script> +import { listtag } from "@/api/system/label"; + export default { data() { return { @@ -736,6 +740,7 @@ }, rules: {}, rulesa: {}, + optionstag:[], xjxsoptions: [ { value: "閫夐」1", @@ -839,7 +844,10 @@ }; }, - created() {}, + created() { + this.gettabList(); + + }, methods: { getIndexInArray(arr, obj) { @@ -931,6 +939,17 @@ ); }, // 鏍囩----------------- + gettabList() { + const tagqueryParams = { + pageNum: 1, + pageSize: 1000, + tagcategoryid: "0", + }; + listtag(tagqueryParams).then((response) => { + console.log(response); + this.optionstag = response.rows; + }); + }, handleClose(tag) { this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1); }, -- Gitblit v1.9.3