shish пре 1 година
родитељ
комит
58d9909df6

+ 1 - 1
ghs/src/views/book/custom.vue

@@ -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}">

+ 1 - 1
ghs/src/views/book/itemCustom.vue

@@ -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>
 
 			<template #table-column-onNum="{scope}">

+ 3 - 1
ghs/src/views/order/book.vue

@@ -81,7 +81,9 @@
 
 			<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>
+          <span v-if="scope.row.hasRemark==1" style="color:red;font-weight:bold;">有</span>
+        </span>
 			</template>
 
 			<template #table-column-onNum="{scope}">

+ 4 - 2
ghsApp/src/admin/book/itemCustom.vue

@@ -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)
 					}
 				})
 			})