Bladeren bron

评分组件新增

noob 4 jaren geleden
bovenliggende
commit
20a33fd948
2 gewijzigde bestanden met toevoegingen van 9 en 1 verwijderingen
  1. 2 0
      src/components/vTable/vTable.vue
  2. 7 1
      src/views/candidateManage/candidateList.vue

+ 2 - 0
src/components/vTable/vTable.vue

@@ -42,6 +42,8 @@
 
                 <span v-else-if="item.html" v-html="scope.row[item.props]"></span>
 
+                <el-rate v-else-if="item.rate" v-model="scope.row[item.props]" disabled></el-rate>
+
                 <!-- normal -->
                 <span v-else>{{scope.row[item.props]}}</span>
 

+ 7 - 1
src/views/candidateManage/candidateList.vue

@@ -4,7 +4,7 @@
  * @Autor: XuTongZhang
  * @Date: 2020-07-28 15:25:06
  * @LastEditors  : yuanrunwei
- * @LastEditTime : 2021-02-07 12:21:01
+ * @LastEditTime : 2021-02-25 15:26:24
 -->
 <template>
 <div class="candidateList">
@@ -485,6 +485,12 @@ export default {
             label: '评分状态',
             props: 'hasScore',
             options: ['未打分', '已打分']
+          },
+          {
+            label: '评分',
+            props: 'totalScore',
+            width: 150,
+            rate: true
           }
         ],
         width: 150,