fix:修改短视频脚本篮球

This commit is contained in:
lz-ui 2025-10-30 16:08:34 +08:00
parent 47c9ecd08e
commit 5621932809
2 changed files with 6 additions and 13 deletions

View File

@ -56,17 +56,14 @@
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope"> <template #default="scope">
<span :class="['flex-row cursor-pointer tc-view-time mr-8', scope.row.reportSatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'video' )"> <span v-if="scope.row.scriptDetail" :class="['flex-row cursor-pointer tc-view-time mr-8', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'video')">
脚本结果<br/> 脚本结果<br/>
{{ scope.row.reportSatus === 1? timerToStr(scope.row.reportTime, 'HH:mm') : '待' }}更新 {{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新
</span> </span>
<span :class="['flex-row cursor-pointer tc-view-time', scope.row.reportSatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'marker')"> <span v-if="scope.row.scriptDetail" :class="['flex-row cursor-pointer tc-view-time', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'market')">
营销文案<br/> 营销文案<br/>
{{ scope.row.reportSatus === 1? timerToStr(scope.row.reportTime, 'HH:mm') : '待' }}更新 {{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新
</span> </span>
<!-- <el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
<el-button link type="primary" icon="view" @click="handleView(scope.row)"></el-button>
</el-tooltip> -->
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>

View File

@ -59,18 +59,14 @@
</el-table-column> --> </el-table-column> -->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope"> <template #default="scope">
<span :class="['flex-row cursor-pointer tc-view-time mr-8', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'video')"> <span v-if="scope.row.scriptDetail" :class="['flex-row cursor-pointer tc-view-time mr-8', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'video')">
脚本结果<br/> 脚本结果<br/>
{{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新 {{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新
</span> </span>
<span :class="['flex-row cursor-pointer tc-view-time', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'market')"> <span v-if="scope.row.scriptDetail" :class="['flex-row cursor-pointer tc-view-time', scope.row.scriptDetail.sciptStatus != 1 && 'tc-view-time-disabled']" @click="handleView(scope.row, 'market')">
营销文案<br/> 营销文案<br/>
{{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新 {{ scope.row.scriptDetail.sciptStatus === 1? timerToStr(scope.row.scriptDetail.scriptTime, 'HH:mm') : '待' }}更新
</span> </span>
<!-- <el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
<el-button link type="primary" icon="view" @click="handleView(scope.row)"></el-button>
</el-tooltip> -->
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>