许成详 6 lat temu
rodzic
commit
6024475682
22 zmienionych plików z 56 dodań i 65 usunięć
  1. 1
    1
      dist/index.html
  2. 5
    3
      src/pages/system/cardAndCouponManager/bodyBuildingCardManager/index.vue
  3. 5
    3
      src/pages/system/cardAndCouponManager/cardManager/index.vue
  4. 2
    1
      src/pages/system/cardAndCouponManager/couponManager/index.vue
  5. 2
    1
      src/pages/system/cardAndCouponManager/givingRecords.vue
  6. 3
    2
      src/pages/system/cardAndCouponManager/vipManager/index.vue
  7. 2
    1
      src/pages/system/caseManager/signinManager/index.vue
  8. 8
    4
      src/pages/system/cmsManager/majorProjects/edit.vue
  9. 4
    2
      src/pages/system/courseManager/courseList/index.vue
  10. 2
    25
      src/pages/system/courseManager/scheduleManager/index.vue
  11. 2
    2
      src/pages/system/dataStatistics/cardCouponUsedList/index.vue
  12. 3
    3
      src/pages/system/dataStatistics/courseOrderList/index.vue
  13. 2
    2
      src/pages/system/dataStatistics/courseStatisticsList/index.vue
  14. 4
    4
      src/pages/system/dataStatistics/courseVerifyList/index.vue
  15. 1
    1
      src/pages/system/dataStatistics/frontEndUserList/index.vue
  16. 1
    1
      src/pages/system/healthManager/healthRecord/index.vue
  17. 2
    2
      src/pages/system/luckyDrawManager/luckyDrawList/index.vue
  18. 1
    1
      src/pages/system/luckyDrawManager/luckyDrawShareList/index.vue
  19. 1
    1
      src/pages/system/systemSet/roleManager/index.vue
  20. 1
    1
      src/pages/system/verificationManager/drawVerification/verificationList/index.vue
  21. 2
    2
      src/pages/system/verificationManager/phoneVerification/verificationList/index.vue
  22. 2
    2
      src/pages/system/verificationManager/qrcodeVerification/verificationList/index.vue

+ 1
- 1
dist/index.html Wyświetl plik

@@ -1 +1 @@
1
-<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><link rel="shortcut icon" href=favorite.ico><title>城的空间后台管理系统</title><link href=./static/css/app.91e9301a1f8d05ff0b4354e4088815f9.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.d2fbc22d7caedd4712da.js></script></body></html>
1
+<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><link rel="shortcut icon" href=favorite.ico><title>城的空间后台管理系统</title><link href=./static/css/app.19c065ab27033add0d3440c8995f4538.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.dd4c8e249dbb71f88232.js></script></body></html>

+ 5
- 3
src/pages/system/cardAndCouponManager/bodyBuildingCardManager/index.vue Wyświetl plik

@@ -41,9 +41,10 @@
41 41
           label="有效期"
42 42
           width="150">
43 43
           <template slot-scope="scope">
44
-            <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.StartDate)}}</span>
44
+            <span v-if="scope.row.StartDate !== '0001-01-01T00:00:00Z'" style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.StartDate)}}</span>
45 45
             <span style="width:100%;display:block;text-align:center;white-space: nowrap;">至</span>
46
-            <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.EndDate)}}</span>
46
+            <span v-if="scope.row.EndDate !== '0001-01-01T00:00:00Z'" style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.EndDate)}}</span>
47
+            <span v-if="scope.row.StartDate === '0001-01-01T00:00:00Z' && scope.row.EndDate === '0001-01-01T00:00:00Z'">-</span>
47 48
           </template>
48 49
         </el-table-column>
49 50
         <el-table-column
@@ -175,7 +176,8 @@
175 176
             prop="CreatDate"
176 177
             label="创建时间">
177 178
             <template slot-scope="scope">
178
-              <span>{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
179
+              <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
180
+              <span v-else>-</span>
179 181
             </template>
180 182
           </el-table-column>
181 183
           <el-table-column

+ 5
- 3
src/pages/system/cardAndCouponManager/cardManager/index.vue Wyświetl plik

@@ -46,9 +46,10 @@
46 46
           label="有效期"
47 47
           width="150">
48 48
           <template slot-scope="scope">
49
-            <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.StartDate, 'yyyy-MM-dd')}}</span>
49
+            <span v-if="scope.row.StartDate !== '0001-01-01T00:00:00Z'" style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.StartDate, 'yyyy-MM-dd')}}</span>
50 50
             <span style="width:100%;display:block;text-align:center;white-space: nowrap;">至</span>
51
-            <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.EndDate, 'yyyy-MM-dd')}}</span>
51
+            <span v-if="scope.row.EndDate !== '0001-01-01T00:00:00Z'" style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.EndDate, 'yyyy-MM-dd')}}</span>
52
+            <span v-if="scope.row.StartDate === '0001-01-01T00:00:00Z' && scope.row.EndDate === '0001-01-01T00:00:00Z'">-</span>
52 53
           </template>
53 54
         </el-table-column>
54 55
         <el-table-column
@@ -182,7 +183,8 @@
182 183
             prop="CreatDate"
183 184
             label="创建时间">
184 185
             <template slot-scope="scope">
185
-              <span>{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
186
+              <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
187
+              <span v-else>-</span>
186 188
             </template>
187 189
           </el-table-column>
188 190
           <el-table-column

+ 2
- 1
src/pages/system/cardAndCouponManager/couponManager/index.vue Wyświetl plik

@@ -178,7 +178,8 @@
178 178
             prop="CreateDate"
179 179
             label="创建时间">
180 180
             <template slot-scope="scope">
181
-              <span>{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
181
+              <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
182
+              <span v-else>-</span>
182 183
             </template>
183 184
           </el-table-column>
184 185
           <el-table-column

+ 2
- 1
src/pages/system/cardAndCouponManager/givingRecords.vue Wyświetl plik

@@ -62,7 +62,8 @@
62 62
           prop="CreateDate"
63 63
           label="赠送时间">
64 64
           <template slot-scope="scope">
65
-            <span>{{toolClass.dateFormat(scope.row.CreateDate)}}</span>
65
+            <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
66
+            <span v-else>-</span>
66 67
           </template>
67 68
         </el-table-column>
68 69
         <el-table-column

+ 3
- 2
src/pages/system/cardAndCouponManager/vipManager/index.vue Wyświetl plik

@@ -93,14 +93,15 @@
93 93
           prop="ActiveDate"
94 94
           label="激活时间">
95 95
           <template slot-scope="scope">
96
-            <span>{{toolClass.dateFormat(scope.row.ActiveDate, 'yyyy-MM-dd')==='1-01-01'?'':toolClass.dateFormat(scope.row.ActiveDate, 'yyyy-MM-dd hh:mm')}}</span>
96
+            <span>{{toolClass.dateFormat(scope.row.ActiveDate, 'yyyy-MM-dd')==='1-01-01'?'-':toolClass.dateFormat(scope.row.ActiveDate, 'yyyy-MM-dd hh:mm')}}</span>
97 97
           </template>
98 98
         </el-table-column>
99 99
         <el-table-column
100 100
           prop="CreateDate"
101 101
           label="创建时间">
102 102
           <template slot-scope="scope">
103
-            <span>{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd hh:mm')}}</span>
103
+            <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
104
+            <span v-else>-</span>
104 105
           </template>
105 106
         </el-table-column>
106 107
       </el-table>

+ 2
- 1
src/pages/system/caseManager/signinManager/index.vue Wyświetl plik

@@ -55,7 +55,8 @@
55 55
             label="签到时间"
56 56
             width="250">
57 57
             <template slot-scope="scope">
58
-              <span>{{FormatDate(scope.row.CreateDate)}}</span>
58
+              <span v-if="scope.row.CreateDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
59
+              <span v-else>-</span>
59 60
             </template>
60 61
           </el-table-column>
61 62
           <el-table-column

+ 8
- 4
src/pages/system/cmsManager/majorProjects/edit.vue Wyświetl plik

@@ -110,14 +110,16 @@
110 110
               prop="BeginDate"
111 111
               label="课程开始时间">
112 112
               <template slot-scope="scope">
113
-                <label>{{toolClass.dateFormat(scope.row.BeginDate,'yyyy-MM-dd')}}</label>
113
+                <label v-if="scope.row.BeginDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.BeginDate,'yyyy-MM-dd')}}</label>
114
+                <label v-else>-</label>
114 115
               </template>
115 116
             </el-table-column>
116 117
             <el-table-column
117 118
               prop="EndDate"
118 119
               label="课程结束时间">
119 120
               <template slot-scope="scope">
120
-                <label>{{toolClass.dateFormat(scope.row.EndDate,'yyyy-MM-dd')}}</label>
121
+                <label v-if="scope.row.EndDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.EndDate,'yyyy-MM-dd')}}</label>
122
+                <label v-else>-</label>
121 123
               </template>
122 124
             </el-table-column>
123 125
             <el-table-column label="操作" width="450">
@@ -171,14 +173,16 @@
171 173
             prop="BeginDate"
172 174
             label="课程开始时间">
173 175
             <template slot-scope="scope">
174
-              <label>{{toolClass.dateFormat(scope.row.BeginDate,'yyyy-MM-dd')}}</label>
176
+              <label v-if="scope.row.BeginDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.BeginDate,'yyyy-MM-dd')}}</label>
177
+              <label v-else>-</label>
175 178
             </template>
176 179
           </el-table-column>
177 180
           <el-table-column
178 181
             prop="EndDate"
179 182
             label="课程结束时间">
180 183
             <template slot-scope="scope">
181
-              <label>{{toolClass.dateFormat(scope.row.EndDate,'yyyy-MM-dd')}}</label>
184
+              <label v-if="scope.row.EndDate !== '0001-01-01T00:00:00Z'">{{toolClass.dateFormat(scope.row.EndDate,'yyyy-MM-dd')}}</label>
185
+              <label v-else>-</label>
182 186
             </template>
183 187
           </el-table-column>
184 188
         </el-table>

+ 4
- 2
src/pages/system/courseManager/courseList/index.vue Wyświetl plik

@@ -94,7 +94,8 @@
94 94
           label="课程开始时间"
95 95
           width="150">
96 96
           <template slot-scope="scope">
97
-            <label>{{FormatDate(scope.row.BeginDate)}}</label>
97
+            <label v-if="scope.row.BeginDate !== '0001-01-01T00:00:00Z'">{{FormatDate(scope.row.BeginDate)}}</label>
98
+            <label v-else>-</label>
98 99
           </template>
99 100
         </el-table-column>
100 101
         <el-table-column
@@ -102,7 +103,8 @@
102 103
           label="课程结束时间"
103 104
           width="150">
104 105
           <template slot-scope="scope">
105
-            <label>{{FormatDate(scope.row.EndDate)}}</label>
106
+            <label v-if="scope.row.EndDate !== '0001-01-01T00:00:00Z'">{{FormatDate(scope.row.EndDate)}}</label>
107
+            <label v-else>-</label>
106 108
           </template>
107 109
         </el-table-column>
108 110
         <el-table-column

+ 2
- 25
src/pages/system/courseManager/scheduleManager/index.vue Wyświetl plik

@@ -71,34 +71,11 @@
71 71
           </li>
72 72
           <li class="flex-h">
73 73
             <span>开始时间:</span>
74
-            <!-- <div class="flex-item" v-if="currentCourseItem.CourseStatus===0">
75
-              <div>
76
-                <el-date-picker
77
-                  v-if="currentCourseItem.CourseStatus===0"
78
-                  v-model="currentCourseItem.BeginDate"
79
-                  type="datetime"
80
-                  placeholder="选择开始日期"
81
-                  >
82
-                </el-date-picker>
83
-                <span v-else>{{this.toolClass.dateFormat(currentCourseItem.BeginDate, 'yyyy-MM-dd hh:mm')}}</span>
84
-              </div>
85
-            </div> -->
86
-            <span>{{this.toolClass.dateFormat(currentCourseItem.BeginDate, 'yyyy-MM-dd hh:mm:ss')}}</span>
74
+            <span>{{currentCourseItem.BeginDate === '0001-01-01T00:00:00Z' ? '-' : this.toolClass.dateFormat(currentCourseItem.BeginDate, 'yyyy-MM-dd hh:mm:ss')}}</span>
87 75
           </li>
88 76
           <li class="flex-h">
89 77
             <span>结束时间:</span>
90
-            <!-- <div class="flex-item" v-if="currentCourseItem.CourseStatus===0">
91
-              <div>
92
-                <el-date-picker
93
-                  v-if="currentCourseItem.CourseStatus===0"
94
-                  v-model="currentCourseItem.EndDate"
95
-                  type="datetime"
96
-                  placeholder="选择结束日期">
97
-                </el-date-picker>
98
-                <span v-else>{{this.toolClass.dateFormat(currentCourseItem.EndDate, 'yyyy-MM-dd hh:mm')}}</span>
99
-              </div>
100
-            </div> -->
101
-            <span>{{this.toolClass.dateFormat(currentCourseItem.EndDate, 'yyyy-MM-dd hh:mm:ss')}}</span>
78
+            <span>{{currentCourseItem.EndDate === '0001-01-01T00:00:00Z' ? '-' : this.toolClass.dateFormat(currentCourseItem.EndDate, 'yyyy-MM-dd hh:mm:ss')}}</span>
102 79
           </li>
103 80
         </ul>
104 81
       </div>

+ 2
- 2
src/pages/system/dataStatistics/cardCouponUsedList/index.vue Wyświetl plik

@@ -117,7 +117,7 @@
117 117
           label="有效期"
118 118
           width="140px">
119 119
           <template slot-scope="scope">
120
-            {{toolClass.dateFormat(scope.row.EndDate)}}
120
+            {{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}
121 121
           </template>
122 122
         </el-table-column>
123 123
         <el-table-column
@@ -125,7 +125,7 @@
125 125
           label="获取时间"
126 126
           width="140px">
127 127
           <template slot-scope="scope">
128
-            {{toolClass.dateFormat(scope.row.ReceiveDate)}}
128
+            {{scope.row.ReceiveDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.ReceiveDate)}}
129 129
           </template>
130 130
         </el-table-column>
131 131
         <el-table-column

+ 3
- 3
src/pages/system/dataStatistics/courseOrderList/index.vue Wyświetl plik

@@ -85,9 +85,9 @@
85 85
           label="课程时间"
86 86
           width="140px">
87 87
           <template slot-scope="scope">
88
-            {{toolClass.dateFormat(scope.row.BeginDate)}}<br>
88
+            {{scope.row.BeginDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.BeginDate)}}<br>
89 89
             -<br>
90
-            {{toolClass.dateFormat(scope.row.EndDate)}}
90
+            {{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}
91 91
           </template>
92 92
         </el-table-column>
93 93
         <el-table-column
@@ -107,7 +107,7 @@
107 107
           label="下单时间"
108 108
           width="140px">
109 109
           <template slot-scope="scope">
110
-            {{toolClass.dateFormat(scope.row.CreateDate)}}
110
+            {{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}
111 111
           </template>
112 112
         </el-table-column>
113 113
       </el-table>

+ 2
- 2
src/pages/system/dataStatistics/courseStatisticsList/index.vue Wyświetl plik

@@ -63,9 +63,9 @@
63 63
           label="课程时间"
64 64
           width="140px">
65 65
           <template slot-scope="scope">
66
-            {{toolClass.dateFormat(scope.row.BeginDate)}}<br>
66
+            {{scope.row.BeginDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.BeginDate)}}<br>
67 67
             -<br>
68
-            {{toolClass.dateFormat(scope.row.EndDate)}}
68
+            {{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}
69 69
           </template>
70 70
         </el-table-column>
71 71
         <el-table-column

+ 4
- 4
src/pages/system/dataStatistics/courseVerifyList/index.vue Wyświetl plik

@@ -68,9 +68,9 @@
68 68
           label="课程时间"
69 69
           width="140px">
70 70
           <template slot-scope="scope">
71
-            {{toolClass.dateFormat(scope.row.BeginDate)}}<br>
71
+            {{scope.row.BeginDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.BeginDate)}}<br>
72 72
             -<br>
73
-            {{toolClass.dateFormat(scope.row.EndDate)}}
73
+            {{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}
74 74
           </template>
75 75
         </el-table-column>
76 76
         <el-table-column
@@ -90,7 +90,7 @@
90 90
           label="下单时间"
91 91
           width="140px">
92 92
           <template slot-scope="scope">
93
-            {{toolClass.dateFormat(scope.row.CreateDate)}}
93
+            {{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}
94 94
           </template>
95 95
         </el-table-column>
96 96
         <el-table-column
@@ -98,7 +98,7 @@
98 98
           label="核销时间"
99 99
           width="140px">
100 100
           <template slot-scope="scope">
101
-            {{toolClass.dateFormat(scope.row.VerifyDate)}}
101
+            {{scope.row.VerifyDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.VerifyDate)}}
102 102
           </template>
103 103
         </el-table-column>
104 104
         <el-table-column

+ 1
- 1
src/pages/system/dataStatistics/frontEndUserList/index.vue Wyświetl plik

@@ -35,7 +35,7 @@
35 35
         <el-table-column
36 36
           label="创建时间">
37 37
           <template slot-scope="scope">
38
-            <label>{{FormatDate(scope.row.CreateDate)}}</label>
38
+            <label>{{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : FormatDate(scope.row.CreateDate)}}</label>
39 39
           </template>
40 40
         </el-table-column>
41 41
       </el-table>

+ 1
- 1
src/pages/system/healthManager/healthRecord/index.vue Wyświetl plik

@@ -67,7 +67,7 @@
67 67
         <el-table-column
68 68
           label="检测时间">
69 69
           <template slot-scope="scope">
70
-            <label>{{toolClass.dateFormat(scope.row.CreateDate)}}</label>
70
+            <label>{{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}</label>
71 71
           </template>
72 72
         </el-table-column>
73 73
       </el-table>

+ 2
- 2
src/pages/system/luckyDrawManager/luckyDrawList/index.vue Wyświetl plik

@@ -38,13 +38,13 @@
38 38
         <el-table-column
39 39
           label="获取时间">
40 40
           <template slot-scope="scope">
41
-            <label>{{toolClass.dateFormat(scope.row.CreateDate)}}</label>
41
+            <label>{{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}</label>
42 42
           </template>
43 43
         </el-table-column>
44 44
         <el-table-column
45 45
           label="核销时间">
46 46
           <template slot-scope="scope">
47
-            <label>{{toolClass.dateFormat(scope.row.WriteoffDate)}}</label>
47
+            <label>{{scope.row.WriteoffDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.WriteoffDate)}}</label>
48 48
           </template>
49 49
         </el-table-column>
50 50
         <el-table-column

+ 1
- 1
src/pages/system/luckyDrawManager/luckyDrawShareList/index.vue Wyświetl plik

@@ -60,7 +60,7 @@
60 60
         <el-table-column
61 61
           label="分享时间">
62 62
           <template slot-scope="scope">
63
-            <label>{{toolClass.dateFormat(scope.row.CreateDate)}}</label>
63
+            <label>{{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}</label>
64 64
           </template>
65 65
         </el-table-column>
66 66
       </el-table>

+ 1
- 1
src/pages/system/systemSet/roleManager/index.vue Wyświetl plik

@@ -15,7 +15,7 @@
15 15
         </el-table-column>
16 16
         <el-table-column label="创建时间" width="300">
17 17
           <template slot-scope="scope">
18
-            <label>{{FormatDate(scope.row.CreateDate)}}</label>
18
+            <label>{{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : FormatDate(scope.row.CreateDate)}}</label>
19 19
           </template>
20 20
         </el-table-column>
21 21
         <el-table-column fixed='right' label="操作" width="300">

+ 1
- 1
src/pages/system/verificationManager/drawVerification/verificationList/index.vue Wyświetl plik

@@ -42,7 +42,7 @@
42 42
                 label="获取时间"
43 43
                 width="140px">
44 44
                 <template slot-scope="scope">
45
-                  {{toolClass.dateFormat(scope.row.CreateDate)}}
45
+                  {{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}
46 46
                 </template>
47 47
               </el-table-column>
48 48
               <el-table-column

+ 2
- 2
src/pages/system/verificationManager/phoneVerification/verificationList/index.vue Wyświetl plik

@@ -41,14 +41,14 @@
41 41
                 prop="StartDate"
42 42
                 label="课程开始时间">
43 43
                 <template slot-scope="scope">
44
-                  <span>{{toolClass.dateFormat(scope.row.StartDate)}}</span>
44
+                  <span>{{scope.row.StartDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.StartDate)}}</span>
45 45
                 </template>
46 46
               </el-table-column>
47 47
               <el-table-column
48 48
                 prop="EndDate"
49 49
                 label="课程结束时间">
50 50
                 <template slot-scope="scope">
51
-                  <span>{{toolClass.dateFormat(scope.row.EndDate)}}</span>
51
+                  <span>{{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}</span>
52 52
                 </template>
53 53
               </el-table-column>
54 54
               <el-table-column

+ 2
- 2
src/pages/system/verificationManager/qrcodeVerification/verificationList/index.vue Wyświetl plik

@@ -33,14 +33,14 @@
33 33
                 prop="StartDate"
34 34
                 label="课程开始时间">
35 35
                 <template slot-scope="scope">
36
-                  <span>{{toolClass.dateFormat(scope.row.StartDate)}}</span>
36
+                  <span>{{scope.row.StartDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.StartDate)}}</span>
37 37
                 </template>
38 38
               </el-table-column>
39 39
               <el-table-column
40 40
                 prop="EndDate"
41 41
                 label="课程结束时间">
42 42
                 <template slot-scope="scope">
43
-                  <span>{{toolClass.dateFormat(scope.row.EndDate)}}</span>
43
+                  <span>{{scope.row.EndDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.EndDate)}}</span>
44 44
                 </template>
45 45
               </el-table-column>
46 46
               <el-table-column