소스 검색

init

newStyle
lancer 2 년 전
부모
커밋
158a87b14a
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. +12
    -0
      src/views/Receive/index.vue

+ 12
- 0
src/views/Receive/index.vue 파일 보기

@@ -623,6 +623,7 @@
<script>
import "aplayer/dist/APlayer.min.css";
import APlayer from "aplayer";
import { mapGetters } from "vuex";
import { getStore, setStore } from "@/util/store";
export default {
data() {
@@ -687,6 +688,14 @@ export default {
info:{},
yibiaoji:''
};
},
created() {
this.rec_index_flag = this.permissions["rec_index_flag"];
this.rec_index_addJ = this.permissions["rec_index_addJ"];
this.rec_index_wrongword = this.permissions["rec_index_wrongword"];
this.rec_index_makesure = this.permissions["rec_index_makesure"];
this.rec_index_todo = this.permissions["rec_index_todo"];
this.rec_index_receflag = this.permissions["rec_index_receflag"];
},
mounted() {
this.fileId=this.$route.query.flag;
@@ -694,6 +703,9 @@ export default {
this.info = getStore({ name: "userInfo" });
this.init()
},
computed: {
...mapGetters(["permissions"]),
},
destroyed(){
this.aplayer.destroy()
},


불러오는 중...
취소
저장