-
-
+ -->
+ :controls="false"
+ :max="100">
{{scope.row.score}}
@@ -340,7 +341,7 @@ export default {
timeShow: '',
status: '',
unitId: '',
- score: null
+ score: undefined
}
this.tableData.push(obj)
},
@@ -430,6 +431,9 @@ export default {
if (row.score !== 0 && !row.score) {
message = message + '评分不能为空;'
}
+ if (row.score > 100) {
+ message = message + '评分不能超过100分;'
+ }
return message
},
diff --git a/src/views/modules/communityParty/regionalParty/units.vue b/src/views/modules/communityParty/regionalParty/units.vue
index 2119e59f..8cae50a1 100644
--- a/src/views/modules/communityParty/regionalParty/units.vue
+++ b/src/views/modules/communityParty/regionalParty/units.vue
@@ -171,6 +171,12 @@
label="群众满意度"
width="100">
+