|
@@ -483,8 +483,13 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { listCourseWatchLog, getCourseWatchLog, delCourseWatchLog, addCourseWatchLog, updateCourseWatchLog, exportCourseWatchLog } from "@/api/course/courseWatchLog";
|
|
import { listCourseWatchLog, getCourseWatchLog, delCourseWatchLog, addCourseWatchLog, updateCourseWatchLog, exportCourseWatchLog } from "@/api/course/courseWatchLog";
|
|
-import {courseList, myListCourseRedPacketLog, videoList} from '@/api/course/courseRedPacketLog'
|
|
|
|
-import {myListLogs} from "@/api/course/courseAnswerlogs";
|
|
|
|
|
|
+import {
|
|
|
|
+ courseList,
|
|
|
|
+ listCourseRedPacketLog,
|
|
|
|
+ myListCourseRedPacketLog,
|
|
|
|
+ videoList
|
|
|
|
+} from '@/api/course/courseRedPacketLog'
|
|
|
|
+import { listLogs, myListLogs } from '@/api/course/courseAnswerlogs'
|
|
import {allListTagGroup} from "../../../api/qw/tagGroup";
|
|
import {allListTagGroup} from "../../../api/qw/tagGroup";
|
|
import {searchTags} from "../../../api/qw/tag";
|
|
import {searchTags} from "../../../api/qw/tag";
|
|
import {addTagByWatch, delTagByWatch} from "../../../api/qw/externalContact";
|
|
import {addTagByWatch, delTagByWatch} from "../../../api/qw/externalContact";
|
|
@@ -986,7 +991,7 @@ export default {
|
|
},
|
|
},
|
|
answerLogList() {
|
|
answerLogList() {
|
|
this.loadingAnswerLog = true;
|
|
this.loadingAnswerLog = true;
|
|
- myListLogs(this.answerLogQueryParams).then(e => {
|
|
|
|
|
|
+ listLogs(this.answerLogQueryParams).then(e => {
|
|
this.answerLogsList = e.rows;
|
|
this.answerLogsList = e.rows;
|
|
this.answerLogTotal = e.total;
|
|
this.answerLogTotal = e.total;
|
|
this.loadingAnswerLog = false;
|
|
this.loadingAnswerLog = false;
|
|
@@ -1001,7 +1006,7 @@ export default {
|
|
redLogList() {
|
|
redLogList() {
|
|
this.loadingRedLog = true;
|
|
this.loadingRedLog = true;
|
|
console.info(this.redLogQueryParams)
|
|
console.info(this.redLogQueryParams)
|
|
- myListCourseRedPacketLog(this.redLogQueryParams).then(e => {
|
|
|
|
|
|
+ listCourseRedPacketLog(this.redLogQueryParams).then(e => {
|
|
this.redLogsList = e.rows;
|
|
this.redLogsList = e.rows;
|
|
this.redLogTotal = e.total;
|
|
this.redLogTotal = e.total;
|
|
this.loadingRedLog = false;
|
|
this.loadingRedLog = false;
|