@@ -34,7 +34,7 @@
<template #table-column-hasRemark="{scope}">
<span v-if="scope.row.bookNum == scope.row.onNum" style="color:green;font-weight:bold;">{{ scope.row.hasRemark==1?'有':'' }}</span>
- <span v-else>{{ scope.row.hasRemark==1?'有':'' }}</span>
+ <span v-else style="color:red;font-weight:bold;">{{ scope.row.hasRemark==1?'有':'' }}</span>
</template>
<template #table-column-bookNum="{scope}">
@@ -62,7 +62,7 @@
<template #table-column-remark="{scope}">
<span v-if="scope.row.bookNum == scope.row.onNum" style="color:green;font-weight:bold;">{{ scope.row.remark }}</span>
- <span v-else>{{ scope.row.remark }}</span>
+ <span v-else style="color:red;font-weight:bold;">{{ scope.row.remark }}</span>
<template #table-column-onNum="{scope}">
@@ -81,7 +81,9 @@
+ <span v-else>
+ <span v-if="scope.row.hasRemark==1" style="color:red;font-weight:bold;">有</span>
+ </span>
@@ -187,8 +187,10 @@ export default {
batchGoOnFn({ids:JSON.stringify(ids)}).then(res=>{
if(res.code == 1){
that.$msg('操作成功')
- that.getStatList()
- that.showSelect = false
+ setTimeout(() => {
+ that.getStatList()
+ that.showSelect = false
+ }, 1200)
}
})