Commit c9800619 by caoyanzhi

删除不用的代码

parent f92e5435
......@@ -10,7 +10,7 @@
已选标签
<span class="color-c0c4cc font-14">(同一个输入框内标签关系为且)</span>
</div>
<tags-group-list :selectedTagData="selectedTagData" v-model="selectedTagData" />
<tags-group-list :selectedTagsData="selectedTagData" v-model="selectedTagData" />
</el-form-item>
<el-form-item label="" prop="groupName" class="w-220">
<div>分组名称</div>
......@@ -224,14 +224,6 @@ export default {
},
/**
* 点击显示添加标签层
*/
showAddTag() {
const that = this;
that.showTagFlag = true;
},
/**
* 点击输入框
*/
focus(name, num) {
......@@ -297,34 +289,6 @@ export default {
},
/**
* 已选标签-编辑
*/
editSelTag(index, item) {
const that = this;
that.showTagDetail = true;
that.tagShortDetailId = item.tagId;
console.log(item);
that.rowItemData = item;
},
/**
* 已选标签-删除
*/
delSelTag(index, item) {
const that = this;
console.log(that.selectedTagData);
that.selectedTagData.splice(index, 1);
console.log(that.selectedTagData);
that.ruleForm.selectedTag = that.selectedTagData;
// 检查实时
that.checkRealTime();
that.delTagId = item.tagId;
// setTimeout(function(){
// that.$refs.addTagViewComponent.toDelTagId()
// },10)
},
/**
* 已选标签-删除-检查实时
*/
checkRealTime() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment