diff --git a/src/project/fengdu/AppHome/AppHome.vue b/src/project/fengdu/AppHome/AppHome.vue
index 2677a10..96f18a7 100644
--- a/src/project/fengdu/AppHome/AppHome.vue
+++ b/src/project/fengdu/AppHome/AppHome.vue
@@ -21,10 +21,27 @@
- 长按识别二维码或扫码加入群聊
+ 长按保存图片或扫码加入群聊
@@ -42,6 +43,10 @@ export default {
list: [],
picUrl: '',
idName: '',
+ // webviewStyles: {
+ // width: '400px',
+ // height: '400px',
+ // }
}
},
onShow() {
@@ -124,9 +129,9 @@ export default {
// }
// }
}
- ::v-deep .group_chat_icon {
- display: none;
- }
+ // ::v-deep .group_chat_icon {
+ // display: none;
+ // }
.header {
width: 100%;
diff --git a/src/project/qujing/AppLegalLearning/components/GeneralLawExam.vue b/src/project/qujing/AppLegalLearning/components/GeneralLawExam.vue
index 542133c..6ef7fe4 100644
--- a/src/project/qujing/AppLegalLearning/components/GeneralLawExam.vue
+++ b/src/project/qujing/AppLegalLearning/components/GeneralLawExam.vue
@@ -7,7 +7,6 @@
全部考试
-
@@ -19,10 +18,10 @@
{{ item.passNumber }}人通过/{{ item.examinationNumber }}人参与
{{ item.myRecord.score }}
@@ -83,6 +82,7 @@ export default {
current: 1,
testList: [],
testId: '',
+ studyDuration: '',
}
},
computed: {
@@ -98,7 +98,6 @@ export default {
}
}).then(res=> {
if(res?.data) {
- // this.testList = this.current==1? res.data.records: [...this.testList,...res.data.records]
this.testList = res.data.records
}
})
@@ -118,6 +117,14 @@ export default {
this.$emit('toTest',id)
}
},
+ // 查看累计时长
+ getStudyDuration() {
+ this.$instance.post(`/app/appwechatuserqujing/queryStudyDuration`).then(res => {
+ if (res?.data) {
+ this.studyDuration = res.data.studyDuration
+ }
+ })
+ },
comfirm() {
if(this.flag) return
@@ -156,10 +163,6 @@ export default {
this.$u.toast(err.msg)
})
},
- // scrolltLower() {
- // this.current++
- // this.getList()
- // }
},
}