This commit is contained in:
linfso 2024-06-22 12:30:33 +08:00
parent dcf967836f
commit b1d826f7c2
2 changed files with 3 additions and 0 deletions

View File

@ -59,6 +59,9 @@
<el-table-column :label="$t('异常信息')" align="left" prop="errorInfo" min-width="120" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<span v-if="scope.row.uploadStatus==-1" style="color:red">{{ scope.row.errorInfo }}</span>
<span v-if="scope.row.uploadStatus==1">下单成功</span>
<span v-if="scope.row.uploadStatus==0">待下单</span>
</template>
</el-table-column>