diff --git a/ruoyi-ui/src/views/kaohe/pingce/index.vue b/ruoyi-ui/src/views/kaohe/pingce/index.vue
index afa6267..5d20075 100644
--- a/ruoyi-ui/src/views/kaohe/pingce/index.vue
+++ b/ruoyi-ui/src/views/kaohe/pingce/index.vue
@@ -325,7 +325,9 @@
- {{ scope.row.vote.voteTitle }}
+
@@ -468,8 +470,8 @@
-
+
@@ -2076,7 +2077,7 @@ export default {
label: '不合格'
}
],
- maxNum: 100,
+ maxNum: null,
percentage: 0.2, //评分占比
state: '2', //状态
sTime: '2025-06-15', //开始时间
@@ -2110,7 +2111,7 @@ export default {
label: '不合格'
}
],
- maxNum: 100,
+ maxNum: null,
percentage: 0.1, //评分占比
state: '2', //状态
sTime: '2025-06-15', //开始时间
@@ -2144,7 +2145,7 @@ export default {
label: '不合格'
}
],
- maxNum: 100,
+ maxNum: null,
percentage: 0.1, //评分占比
state: '2', //状态
sTime: '2025-06-15', //开始时间
diff --git a/ruoyi-ui/src/views/kaohe/vote/index.vue b/ruoyi-ui/src/views/kaohe/vote/index.vue
index 7578bc1..5eac2d1 100644
--- a/ruoyi-ui/src/views/kaohe/vote/index.vue
+++ b/ruoyi-ui/src/views/kaohe/vote/index.vue
@@ -80,14 +80,21 @@
-
-
-
+
+
+
{{ scope.row.voteTitle }}
-
+
+
+
+
+
+
@@ -99,12 +106,12 @@
{{ parseTime(scope.row.eTime, '{y}-{m}-{d}') }}
-
+
-
+
@@ -248,7 +255,34 @@ export default {
getList() {
this.loading = true
listVote(this.queryParams).then(response => {
- this.voteList = response.rows
+ // this.voteList = response.rows
+ this.voteList = []
+ /*voteTitle: '师院领导班子评分',
+ options: [
+ {
+ value: 1,
+ label: '优秀'
+ },
+ {
+ value: 2,
+ label: '合格'
+ },
+ {
+ value: 3,
+ label: '基本合格'
+ },
+ {
+ value: 4,
+ label: '不合格'
+ }
+ ],
+ maxNum: null,
+ percentage: 0.2, //评分占比
+ state: '2', //状态
+ sTime: '2025-06-15', //开始时间
+ eTime: '2025-06-20', //结束时间
+ vDescription: '师院领导班子评分详情描述', //评分详情描述
+ remark: '师院领导班子备注', //备注*/
this.total = response.total
this.loading = false
})