소스 검색

修改时间显示问题

lex-xin 4 년 전
부모
커밋
1bf645b766

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-dd2d42c0.42ac04c5.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-dd2d42c0.c1a88d53.js


+ 8 - 2
src/views/studentManager/components/teamAndcourse.vue

@@ -15,10 +15,16 @@
           <template slot-scope="scope">{{ scope.row.kitPurchaseMethod | instrumentType }}</template>
         </el-table-column>
         <el-table-column align="center" label="学员状态">
-          <template slot-scope="scope">{{ scope.row.userMusicGroupStatus | musicGroupStudentType }}</template>
+          <template slot-scope="scope">
+            {{ scope.row.userMusicGroupStatus | musicGroupStudentType }}
+          </template>
         </el-table-column>
         <el-table-column align="center" label="退团时间" prop="quitMusicGroupDate">
-          <template slot-scope="scope">{{ scope.row.quitMusicGroupDate | formatTimer }}</template>
+          <template slot-scope="scope">
+            <span v-if="scope.row.userMusicGroupStatus == 'QUIT'">
+              {{ scope.row.quitMusicGroupDate | formatTimer }}
+            </span>
+          </template>
         </el-table-column>
         <el-table-column align="center" label="所选乐器">
           <template slot-scope="scope">

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.