|
@@ -37,12 +37,12 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
- v-if="type == 'tags'"
|
|
|
- label="群聊标签"
|
|
|
- :rules="[{ required: true, message: '请输入群聊标签' }]"
|
|
|
- prop="tags"
|
|
|
+ v-if="type == 'memo'"
|
|
|
+ label="群聊备注"
|
|
|
+ :rules="[{ required: true, message: '请输入群聊备注' }]"
|
|
|
+ prop="memo"
|
|
|
>
|
|
|
- <el-input class="w100" v-model="formes.tags"></el-input>
|
|
|
+ <el-input class="w100" v-model="formes.memo"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -63,7 +63,7 @@ export default {
|
|
|
id: "",
|
|
|
name: "",
|
|
|
groupType: "",
|
|
|
- tags: "",
|
|
|
+ memo: "",
|
|
|
},
|
|
|
catgGoupTypeList,
|
|
|
lookVisible: false,
|
|
@@ -90,7 +90,7 @@ export default {
|
|
|
} else if (type == "type") {
|
|
|
this.title = "修改群聊类型";
|
|
|
} else {
|
|
|
- this.title = "修改群聊标签";
|
|
|
+ this.title = "修改群备注";
|
|
|
}
|
|
|
// this.activeRow = row;
|
|
|
this.formes = { ...row };
|