|
@@ -28,7 +28,7 @@
|
|
<div class="add-tag-box">
|
|
<div class="add-tag-box">
|
|
<el-input placeholder="请输入标签名称" v-model.trim="addText"></el-input>
|
|
<el-input placeholder="请输入标签名称" v-model.trim="addText"></el-input>
|
|
<el-button type="text" @click="addTag">添加</el-button>
|
|
<el-button type="text" @click="addTag">添加</el-button>
|
|
- <el-button type="text">标签管理</el-button>
|
|
|
|
|
|
+ <el-button type="text" @click="toTagPage">标签管理</el-button>
|
|
<p style="color:#999999;font-size: 12px;">注:名称不得超过5个字</p>
|
|
<p style="color:#999999;font-size: 12px;">注:名称不得超过5个字</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -112,6 +112,9 @@ export default {
|
|
},
|
|
},
|
|
modifyTags(){
|
|
modifyTags(){
|
|
this.$emit('modify',this.choosedTags)
|
|
this.$emit('modify',this.choosedTags)
|
|
|
|
+ },
|
|
|
|
+ toTagPage(){
|
|
|
|
+ window.open('/trainingLabel')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|