123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <template>
- <div class="app-container review-box">
- <!-- 搜索区域 -->
- <div class="filter-container">
- <div class="filter-control">
- <span>文件名称:</span>
- <el-input
- v-model="listQuery.fileTitle"
- placeholder="文件名称"
- @keyup.enter.native="getList"
- />
- </div>
- <div class="filter-control">
- <span>审核状态:</span>
- <el-select
- v-model="listQuery.auditStatus"
- placeholder="审核状态"
- clearable
- @change="getList"
- >
- <el-option label="全部" value="" />
- <el-option label="待审核" :value="2" />
- <el-option label="审核通过" :value="1" />
- <el-option label="审核未通过" :value="0" />
- </el-select>
- </div>
- <div class="filter-control">
- <el-button type="primary" @click="getList">查询</el-button>
- </div>
- </div>
- <!-- 搜索区域END -->
- <!-- 表格区域 -->
- <el-table
- v-loading="listLoading"
- :data="list"
- style="width: 100%"
- border
- fit
- highlight-current-row
- header-row-class-name="tableHeader"
- cell-class-name="table-cell"
- >
- <el-table-column label="序号" :index="indexMethod" type="index" width="80" align="center" />
- <el-table-column label="文件名称" prop="fileTitle" align="center" />
- <el-table-column label="审核状态" width="120px" align="center">
- <template slot-scope="{ row }">
- <audit-status :status="row.auditStatus" :reason="row.invalidReason" />
- </template>
- </el-table-column>
- <el-table-column label="审核时间" width="160px" align="center">
- <template slot-scope="{row}">
- <span v-if="row.auditStatus!==2">{{ row.auditTime | formatTime }}</span>
- <span v-else>—</span>
- </template>
- </el-table-column>
- <el-table-column label="审核人" align="center" width="280px">
- <template slot-scope="{row}">
- <span v-if="row.auditStatus!==2">{{ row.auditBy }}</span>
- <span v-else>—</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="150px" align="center">
- <template slot-scope="{row}">
- <el-button
- v-if="row.auditStatus===2"
- type="primary"
- size="mini"
- @click="handleShowDialog(row)"
- >审核</el-button>
- <span v-else class="status success el-icon-check"> 已审核</span>
- </template>
- </el-table-column>
- </el-table>
- <!-- 表格区域END -->
- <!-- 页码 -->
- <pagination :total="total" :page.sync="listQuery.pageNum" :limit.sync="listQuery.pageSize" @pagination="getList(listQuery)" />
- <!-- 视频预览对话框 -->
- <el-dialog
- title="视频审核"
- :visible.sync="dialogVisible"
- width="40%"
- @closed="dialogColosed"
- >
- <el-form ref="formRef" :model="dialogData" label-width="65px" :rules="dialogFormRules">
- <el-form-item label="标题:">
- {{ current.fileTitle }}
- </el-form-item>
- <el-form-item label="文件:">
- <el-button type="danger" size="mini" @click.prevent="handleDowmFile">下载</el-button>
- </el-form-item>
- <el-form-item label="审核:">
- <el-radio-group v-model="dialogData.auditStatus">
- <el-radio :label="1">通过</el-radio>
- <el-radio :label="0">不通过</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item v-if="dialogData.auditStatus === 0" label="原因:" prop="invalidReason">
- <el-input v-model="dialogData.invalidReason" type="textarea" placeholder="请说明原因" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="handleAuditStatus">提 交</el-button>
- </div>
- </el-dialog>
- <!-- 视频预览对话框END -->
- </div>
- </template>
- <script>
- import Pagination from '@/components/Pagination'
- import { getFileList } from '@/api/doc'
- import { auditfile } from '@/api/docReview'
- import { mapGetters } from 'vuex'
- export default {
- components: { Pagination },
- data() {
- return {
- dialogVisible: false, // 文件审核dialog是否显示
- listLoading: false, // 列表加载
- total: 0, // 列表数据条数
- listQuery: {
- fileType: 2,
- authUserId: '', // 机构id
- auditStatus: '', // 审核状态
- fileTitle: '', // 文件标题
- listType: 2, // 列表类型
- pageNum: 1, // 页码
- pageSize: 10, // 分页大小
- status: '' // 文章状态:0已下线,1已上线,2待上线
- },
- list: [],
- // 当前审核选中的文件数据,需要传给预览窗口的数据
- current: {
- currentfileUrl: '',
- fileTitle: ''
- },
- // 审核提交数据
- dialogData: {
- fileId: '', // 文章id
- auditStatus: 1, // 审核状态
- invalidReason: '', // 不同过原因
- auditBy: '' // 审核人
- },
- dialogFormRules: {
- invalidReason: { required: true, message: '不通过原因不能为空', tigger: 'blur' }
- }
- }
- },
- computed: {
- ...mapGetters(['authUserId'])
- },
- created() {
- this.listQuery.authUserId = this.$route.query.authUserId
- this.getList()
- },
- methods: {
- // 获取列表数据
- getList() {
- this.listLoading = true
- getFileList(this.listQuery)
- .then(res => {
- if (res.code !== 0) return
- this.list = res.data.list
- this.total = res.data.total
- console.log(res)
- })
- .finally(() => {
- this.listLoading = false
- })
- },
- // 显示审核dialog对话框
- handleShowDialog(row) {
- console.log('------')
- console.log(row)
- this.current.currentfileUrl = row.filePreviewUrl
- this.current.fileTitle = row.fileTitle
- this.dialogData.fileId = row.fileId
- this.dialogVisible = true
- },
- // dialog关闭后的回调
- dialogColosed() {
- this.currentfileUrl = ''
- this.current.currentfileUrl = ''
- this.current.fileTitle = ''
- this.dialogData.auditStatus = 1
- this.dialogData.fileId = ''
- },
- // 审核操作
- handleAuditStatus() {
- this.$refs.formRef.validate(valid => {
- if (valid) {
- this.dialogData.auditBy = this.authUserId
- auditfile(this.dialogData)
- .then(res => {
- console.log(res)
- if (res.code !== 0) return
- this.$message({
- message: res.data,
- type: 'success',
- duration: 1000
- })
- this.dialogVisible = false
- this.getList()
- })
- }
- })
- },
- // 小窗口浏览pdf文件
- handleDowmFile() {
- const a = document.createElement('a')
- a.setAttribute('href', this.current.currentfileUrl)
- a.setAttribute('target', '_blank')
- a.click()
- // openWindow(this.current.currentfileUrl, this.current.fileTitle, this.current.fileTitle, 1200, 600)
- },
- indexMethod(index) {
- return index + this.listQuery.pageSize * (this.listQuery.pageNum - 1) + 1
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .el-table .cell {
- overflow: visible;
- }
- .el-badge{
- margin: 0 6px;
- }
- .preview{
- cursor: pointer;
- margin-left: 5px;
- color: #0eaae7;
- }
- </style>
|