mo 3 年之前
父节点
当前提交
097e20556a

+ 5 - 0
src/utils/vueFilter.js

@@ -847,6 +847,11 @@ Vue.filter("chargingStatus", value => {
 Vue.filter("catgGoupType", value => {
   return constant.catgGoupType[value];
 });
+// 群类型
+
+Vue.filter("catType", value => {
+  return constant.catType[value];
+});
 
 Vue.filter("usageStatus", value => {
   let obj = {

+ 7 - 0
src/views/groupChatManager/component/chatList.vue

@@ -80,6 +80,13 @@
             </div>
           </template>
         </el-table-column>
+                   <el-table-column align="center" prop="groupType" label="群类型">
+          <template slot-scope="scope">
+            <div>
+              {{ scope.row.type | catType }}
+            </div>
+          </template>
+        </el-table-column>
         <el-table-column
           align="center"
           prop="memberNum"

+ 9 - 2
src/views/groupChatManager/component/sysChatList.vue

@@ -70,7 +70,7 @@
         ></el-table-column>
         <el-table-column
           align="center"
-          prop="tags"
+          prop="memo"
           label="群备注"
         ></el-table-column>
         <el-table-column align="center" prop="groupType" label="群聊类型">
@@ -80,6 +80,13 @@
             </div>
           </template>
         </el-table-column>
+        <el-table-column align="center" prop="groupType" label="群类型">
+          <template slot-scope="scope">
+            <div>
+              {{ scope.row.type | catType }}
+            </div>
+          </template>
+        </el-table-column>
         <el-table-column
           align="center"
           prop="memberNum"
@@ -210,7 +217,7 @@ export default {
         this.$message.error("请至少选择一个群聊");
         return;
       }
-      this.$refs.eidtPostMsg.openDioag(this.chioseIdList,'0');
+      this.$refs.eidtPostMsg.openDioag(this.chioseIdList, "0");
     },
     handleSelectionChange(val) {
       if (val.length > 0) {