lsc 2 年之前
父節點
當前提交
85d0bcd96e

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 1 - 1
dist/report.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/chunk-07a6f560.d4405c6b.css


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.0f3ae647.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-07a6f560.f89eb18d.js


+ 0 - 0
dist/static/js/chunk-7d027967.30c655c2.js → dist/static/js/chunk-7d027967.e68a8d94.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-ef17edbc.ccc08c29.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-libs.70b2c3db.js


+ 5 - 3
src/views/course/components/commentPanel.vue

@@ -27,7 +27,7 @@
 <script>
 import AudioComponent from './AudioComponent.vue'
 import { addPz2 } from '@/api/course'
-import { mapState } from 'vuex'
+import { mapGetters } from 'vuex'
 
 export default {
   props: {
@@ -53,10 +53,12 @@ export default {
   data() {
     return {
       type: 1,
-      message: '',
-      ...mapState({ userinfo: 'user/userinfo' })
+      message: ''
     }
   },
+  computed: {
+    ...mapGetters(['userinfo'])
+  },
   methods: {
     back() {
       this.$emit('update:panelVisible', false)

部分文件因文件數量過多而無法顯示