123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <template>
- <div class="app-container review-box">
- <!-- 搜索区域 -->
- <div class="filter-container">
- <span>文件名称:</span>
- <el-input
- v-model="listQuery.fileTitle"
- placeholder="文件名称"
- style="width: 200px"
- class="filter-item"
- @keyup.enter.native="getList"
- />
- <span>审核状态:</span>
- <el-select
- v-model="listQuery.auditStatus"
- placeholder="审核状态"
- clearable
- style="width: 200px"
- class="filter-item"
- @change="getList"
- >
- <el-option label="全部" value="" />
- <el-option label="待审核" :value="2" />
- <el-option label="审核通过" :value="1" />
- <el-option label="审核未通过" :value="0" />
- </el-select>
- <el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
- </div>
- <!-- 搜索区域END -->
- <!-- 表格区域 -->
- <el-table
- v-loading="listLoading"
- :data="list"
- style="width: 100%"
- border
- fit
- highlight-current-row
- 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="150px" align="center">
- <template slot-scope="{ row }">
- <el-tag v-if="row.auditStatus === 2" size="small" type="warning">待审核</el-tag>
- <el-tag v-if="row.auditStatus === 1" size="small" type="success">审核通过</el-tag>
- <!-- 未通过原因展示 -->
- <template v-if="row.auditStatus === 0">
- <!-- <span class="status danger">审核未通过 </span> -->
- <el-popover
- placement="top-start"
- title="审核说明"
- width="400"
- trigger="hover"
- :content="row.invalidReason"
- >
- <el-tag slot="reference" size="small" type="danger" class="reason">
- <span>审核未通过</span>
- <span class="el-icon-question status danger " />
- </el-tag>
- </el-popover>
- <!-- 未通过原因展示END -->
- </template>
- </template>
- </el-table-column>
- <el-table-column label="审核时间" width="250px" 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="200px">
- <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"
- style="margin-right:5px"
- icon="el-icon-s-check"
- @click="handleShowDialog(row)"
- >审核</el-button>
- <span v-else class="status success el-icon-check"> 已审核</span>
- </template>
- </el-table-column>
- </el-table>
- <!-- 表格区域END -->
- <!-- 页码 -->
- <pagination v-show="total > 0" :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="文件:">
- <img src="@/assets/img/pdf_cover.png" alt="文件封面" width="60" height="60">
- <span class="preview" @click.prevent="handlePreviewFile">预览</span>
- </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 openWindow from '@/utils/open-window'
- import { formatDate } from '@/utils'
- import { getFileList } from '@/api/doc'
- import { auditfile } from '@/api/docReview'
- import { mapGetters } from 'vuex'
- export default {
- components: { Pagination },
- filters: {
- formatTime(time) {
- if (!time) {
- return ''
- }
- return formatDate(time, 'yyyy-MM-DD HH:mm:ss')
- }
- },
- data() {
- return {
- dialogVisible: false, // 文件审核dialog是否显示
- listLoading: false, // 列表加载
- total: 0, // 列表数据条数
- listQuery: {
- 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文件
- handlePreviewFile() {
- 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>
- .filter-container {
- span {
- display: inline-block;
- margin-bottom: 10px;
- vertical-align: middle;
- font-size: 14px;
- }
- .el-button {
- display: inline-block;
- margin-bottom: 10px;
- vertical-align: middle;
- }
- .el-input,
- .el-select {
- margin-right: 10px;
- margin-left: 10px;
- }
- }
- .el-table .cell {
- overflow: visible;
- }
- .el-badge{
- margin: 0 6px;
- }
- .preview{
- cursor: pointer;
- margin-left: 5px;
- color: #0eaae7;
- }
- </style>
|