项目课件状态
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2025-01-08 15:44:53 +08:00
parent 67c2d47689
commit 2ff2f5106e
3 changed files with 7 additions and 7 deletions

View File

@ -176,10 +176,10 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.IsDeleted" type="danger">{{ <el-tag v-if="scope.row.IsDeleted" type="danger">{{
$fd('TrainingStatus', !scope.row.IsDeleted) $fd('TrainingStatus', scope.row.IsDeleted)
}}</el-tag> }}</el-tag>
<el-tag v-else type="primary">{{ <el-tag v-else type="primary">{{
$fd('TrainingStatus', !scope.row.IsDeleted) $fd('TrainingStatus', scope.row.IsDeleted)
}}</el-tag> }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>

View File

@ -77,8 +77,8 @@
sortable="custom" sortable="custom"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.IsDeleted" type="danger">{{ $fd('TrainingStatus', !scope.row.IsDeleted) }}</el-tag> <el-tag v-if="scope.row.IsDeleted" type="danger">{{ $fd('TrainingStatus', scope.row.IsDeleted) }}</el-tag>
<el-tag v-else type="primary">{{ $fd('TrainingStatus', !scope.row.IsDeleted) }}</el-tag> <el-tag v-else type="primary">{{ $fd('TrainingStatus', scope.row.IsDeleted) }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<!-- 上传时间 --> <!-- 上传时间 -->

View File

@ -33,7 +33,7 @@
v-for="item of $d.TrainingStatus" v-for="item of $d.TrainingStatus"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="!item.value" :value="item.value"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -136,10 +136,10 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.IsDeleted" type="danger">{{ <el-tag v-if="scope.row.IsDeleted" type="danger">{{
$fd('TrainingStatus', !scope.row.IsDeleted) $fd('TrainingStatus', scope.row.IsDeleted)
}}</el-tag> }}</el-tag>
<el-tag v-else type="primary">{{ <el-tag v-else type="primary">{{
$fd('TrainingStatus', !scope.row.IsDeleted) $fd('TrainingStatus', scope.row.IsDeleted)
}}</el-tag> }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>