瀏覽代碼

修改老师列表状态判断

lex-xin 5 年之前
父節點
當前提交
7d964244af
共有 3 個文件被更改,包括 3 次插入1 次删除
  1. 0 0
      dist/index.html
  2. 0 0
      dist/static/js/chunk-20c5063f.b8bbc390.js
  3. 3 1
      src/views/teacherManager/teacherList.vue

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-20c5063f.b8bbc390.js


+ 3 - 1
src/views/teacherManager/teacherList.vue

@@ -134,7 +134,9 @@
           </el-table-column>
           <el-table-column align="center"
                            label="人事状态">
-            <template slot-scope="scope">{{ scope.row.isProbationPeriod | isProbationPeriod }} </template>
+            <template slot-scope="scope">
+              {{ scope.row.isProbationPeriod == 0 ? '正式' : '试用' }}
+            </template>
           </el-table-column>
           <el-table-column align="center"
                            prop="vipNum"

部分文件因文件數量過多而無法顯示