| | |
| | | removeById |
| | | } from "@/api/video"; |
| | | import {getVideoTagList, recommend, videoGoodsEsPage} from "@/api/videoTag"; |
| | | import {addPrizeNum} from "@/api/activity-prize"; |
| | | import {getFilePreview, getSts} from "@/api/file"; |
| | | import Editor from '@/components/editor/index.vue' |
| | | import GoodsExpandRow from '@/views/video/GoodsExpandRow' |
| | |
| | | console.log(this.auditingForm, "sb") |
| | | this.$refs.auditingForm.validate((valid) => { |
| | | if (valid) { |
| | | let currentVideoId = this.auditingForm.id |
| | | auditingVideo(this.auditingForm).then(res => { |
| | | this.$Message.success("审核完成") |
| | | this.closeAuditing() |
| | | this.getDataList() |
| | | let param = { |
| | | addType:"USER_PUBLISH_EXAMINE", |
| | | userId:this.detail.authorId, |
| | | extend:"" |
| | | } |
| | | param.extend = JSON.stringify({ |
| | | videoId:currentVideoId |
| | | }) |
| | | addPrizeNum(param) |
| | | }) |
| | | } |
| | | }) |