瀏覽代碼

Merge branch 'master' of http://git.cc-lotus.info/live-platform/live-cms

guhongwei 5 年之前
父節點
當前提交
ecdaa96155
共有 3 個文件被更改,包括 0 次插入6 次删除
  1. 0 1
      src/layout/room/detailInfo.vue
  2. 0 2
      src/views/room/detail.vue
  3. 0 3
      src/views/room/index.vue

+ 0 - 1
src/layout/room/detailInfo.vue

@@ -56,7 +56,6 @@ export default {
   computed: {},
   methods: {
     uploadSuccess({ type, data }) {
-      console.log(type, data);
       this.$set(this.form, `${type}`, data.uri);
     },
     onSubmit() {

+ 0 - 2
src/views/room/detail.vue

@@ -46,11 +46,9 @@ export default {
     },
     async onSubmit({ data }) {
       if (this.id) {
-        console.log(data);
         let res = this.roomupdate(data);
         this.$checkRes(res, '修改房间成功', '创建房间失败');
       } else {
-        console.log(data);
         let res = this.roomcreate(data);
         this.$checkRes(res, '创建房间成功', '创建房间失败');
       }

+ 0 - 3
src/views/room/index.vue

@@ -78,7 +78,6 @@ export default {
 
     async searchinfo() {
       let res = await this.roomuserquery({ skip: 0, limit: 100000 });
-      console.log(res.data);
       this.$set(this, `clientList`, res.data);
     },
 
@@ -86,14 +85,12 @@ export default {
       let { model, value } = data;
       let res = '';
       if (model === 'anchorid') {
-        console.log(value);
         let findRes = this.clientList.find(f => f.id === value);
         if (findRes) res = findRes.name;
       }
       return res;
     },
     toEdit({ data }) {
-      console.log('1');
       this.$router.push({ path: './detail', query: { id: data.id } });
     },