k94314517
2024-02-23 3c456949b70671cc2ad95ad5395dfaceda519f17
company/src/components/business/dispatchReview.vue
@@ -35,15 +35,15 @@
                  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>
@@ -113,6 +113,10 @@
            console.log(this.form)
          },
          doSubmit(type){
            if (!this.checkInfo) {
              this.$message.warning('请输入审核说明!')
              return
            }
            this.$dialog.messageConfirm('确认进行该操作吗?')
                .then(() => {
                  this.isWorking = true