YY 2 vuotta sitten
vanhempi
commit
e9905258cc

+ 2 - 1
src/views/expo/channel/live/detail.vue

@@ -44,8 +44,9 @@ const loading = ref(false);
 let form: Ref<any> = ref({});
 let formFields: Ref<any[]> = ref([
   { label: '标题', model: 'title' },
-  { label: '来源', model: 'origin' },
   { label: '类别', model: 'channel_type', type: 'select' },
+  { label: '来源', model: 'origin' },
+  { label: '更新时间', model: 'create_date', type: 'date' },
   { label: '简介', model: 'brief', type: 'textarea' },
   { label: '状态', model: 'status', type: 'select' }
 ]);

+ 1 - 0
src/views/expo/channel/live/index.vue

@@ -63,6 +63,7 @@ let fields: Ref<any[]> = ref([
   { label: '房间号', model: 'room_id', isSearch: true },
   { label: '标题', model: 'title', isSearch: true },
   { label: '来源', model: 'origin', isSearch: true },
+  { label: '更新时间', model: 'create_date' },
   { label: '类别', model: 'channel_type', format: (i) => getDict(i, 'channel_type'), isSearch: true, type: 'select' },
   { label: '状态', model: 'status', format: (i) => getDict(i, 'status'), isSearch: true, type: 'select' }
 ]);