| | |
| | | prop="name" |
| | | label="操作视频"> |
| | | <template slot-scope="{row}"> |
| | | <video loop controls width="150px" height="150px" :src="row.videoUrlFull"></video> |
| | | <video loop controls width="150px" height="150px" :src="row.videoUrlFull" v-if="row.videoUrlFull"></video> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="状态"> |
| | | <template slot-scope="{row}"> |
| | | <span :class="'du-status'+row.status" v-if="row.unitStatus === 0">待审核</span> |
| | | <span :class="'du-status'+row.status" v-if="row.unitStatus === 1">审核通过</span> |
| | | <span :class="'du-status'+row.status" v-if="row.unitStatus === 2">审核不通过</span> |
| | | <span :class="'du-status'+row.status" v-if="row.status === 0">待审核</span> |
| | | <span :class="'du-status'+row.status" v-if="row.status === 1">审核通过</span> |
| | | <span :class="'du-status'+row.status" v-if="row.status === 2">审核不通过</span> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | console.log(this.form) |
| | | }, |
| | | doSubmit(type){ |
| | | if (!this.checkInfo) { |
| | | this.$message.warning('请输入审核说明!') |
| | | return |
| | | } |
| | | this.$dialog.messageConfirm('确认进行该操作吗?') |
| | | .then(() => { |
| | | this.isWorking = true |