Browse Source

Merge branch 'dev' of http://git.ycjcjy.com/SpaceOfCheng/admin into dev

许成详 6 years ago
parent
commit
342e4c919c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/pages/system/dataStatistics/courseVerifyList/index.vue

+ 3
- 3
src/pages/system/dataStatistics/courseVerifyList/index.vue View File

@@ -105,7 +105,7 @@
105 105
           prop="Status"
106 106
           label="状态">
107 107
           <template slot-scope="scope">
108
-            {{scope.row.VerifyStatus === 'useable' ? '未使用' : scope.row.VerifyStatus === 'used' ? '已使用' : scope.row.VerifyStatus === 'late' ? '逾期核销' : ''}}
108
+            {{scope.row.VerifyStatus === 'useable' ? '未核销' : scope.row.VerifyStatus === 'used' ? '已核销' : scope.row.VerifyStatus === 'late' ? '逾期核销' : ''}}
109 109
           </template>
110 110
         </el-table-column>
111 111
       </el-table>
@@ -142,10 +142,10 @@ export default {
142 142
         value: '',
143 143
         id: ''
144 144
       }, {
145
-        value: '未使用',
145
+        value: '未核销',
146 146
         id: 'useable'
147 147
       }, {
148
-        value: '已使用',
148
+        value: '已核销',
149 149
         id: 'used'
150 150
       }, {
151 151
         value: '逾期核销',