diff --git a/src/project/pidu/AppConversation/conversationDetail.vue b/src/project/pidu/AppConversation/conversationDetail.vue
index b698920f..60a2036c 100644
--- a/src/project/pidu/AppConversation/conversationDetail.vue
+++ b/src/project/pidu/AppConversation/conversationDetail.vue
@@ -10,7 +10,7 @@
2023-03-01至2023-03-10
-
diff --git a/src/project/pidu/AppConversation/conversationRecord.vue b/src/project/pidu/AppConversation/conversationRecord.vue
index 98e038d3..c98e5c49 100644
--- a/src/project/pidu/AppConversation/conversationRecord.vue
+++ b/src/project/pidu/AppConversation/conversationRecord.vue
@@ -1,6 +1,37 @@
-
+
+
+
+
+
2023-03-01至2023-03-10
+
+
+
+
+
+
+
+
@@ -9,21 +40,140 @@ export default {
name: "conversationRecord",
data() {
return {
-
+ tabList: [
+ {name: '全部'},
+ {name: '图片/视频'},
+ {name: '语音'},
+ {name: '文件'}
+ ],
+ currentTabs: 0,
+ barStyle: {
+ 'width': '24px',
+ 'height': '2px',
+ 'border-radius': '0',
+ 'bottom': '5px'
+ },
+ activeStyle: {
+ 'font-weight' : '400',
+ 'color': '#000000'
+ },
+ keyword: '',
+ list: [
+ {type: 0, content: '123全部全部全部全部全部全部全部全部全部全部全部全部'},
+ {type: 1, content: '123'},
+ {type: 0, content: '456'},
+ {type: 0, content: '123'},
+ {type: 1, content: '123'},
+ ]
};
},
onShow() {
- document.title = '会话记录'
+ document.title = '会话详情'
},
methods: {
-
+ change(index) {
+ this.keyword = ''
+ this.currentTabs = index
+ this.getListInit()
+ },
+ getListInit() {
+
+ },
},
};
\ No newline at end of file