许成详 6 anos atrás
pai
commit
6024475682
22 arquivos alterados com 56 adições e 65 exclusões
  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 Ver arquivo

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 Ver arquivo

41
           label="有效期"
41
           label="有效期"
42
           width="150">
42
           width="150">
43
           <template slot-scope="scope">
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
             <span style="width:100%;display:block;text-align:center;white-space: nowrap;">至</span>
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
           </template>
48
           </template>
48
         </el-table-column>
49
         </el-table-column>
49
         <el-table-column
50
         <el-table-column
175
             prop="CreatDate"
176
             prop="CreatDate"
176
             label="创建时间">
177
             label="创建时间">
177
             <template slot-scope="scope">
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
             </template>
181
             </template>
180
           </el-table-column>
182
           </el-table-column>
181
           <el-table-column
183
           <el-table-column

+ 5
- 3
src/pages/system/cardAndCouponManager/cardManager/index.vue Ver arquivo

46
           label="有效期"
46
           label="有效期"
47
           width="150">
47
           width="150">
48
           <template slot-scope="scope">
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
             <span style="width:100%;display:block;text-align:center;white-space: nowrap;">至</span>
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
           </template>
53
           </template>
53
         </el-table-column>
54
         </el-table-column>
54
         <el-table-column
55
         <el-table-column
182
             prop="CreatDate"
183
             prop="CreatDate"
183
             label="创建时间">
184
             label="创建时间">
184
             <template slot-scope="scope">
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
             </template>
188
             </template>
187
           </el-table-column>
189
           </el-table-column>
188
           <el-table-column
190
           <el-table-column

+ 2
- 1
src/pages/system/cardAndCouponManager/couponManager/index.vue Ver arquivo

178
             prop="CreateDate"
178
             prop="CreateDate"
179
             label="创建时间">
179
             label="创建时间">
180
             <template slot-scope="scope">
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
             </template>
183
             </template>
183
           </el-table-column>
184
           </el-table-column>
184
           <el-table-column
185
           <el-table-column

+ 2
- 1
src/pages/system/cardAndCouponManager/givingRecords.vue Ver arquivo

62
           prop="CreateDate"
62
           prop="CreateDate"
63
           label="赠送时间">
63
           label="赠送时间">
64
           <template slot-scope="scope">
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
           </template>
67
           </template>
67
         </el-table-column>
68
         </el-table-column>
68
         <el-table-column
69
         <el-table-column

+ 3
- 2
src/pages/system/cardAndCouponManager/vipManager/index.vue Ver arquivo

93
           prop="ActiveDate"
93
           prop="ActiveDate"
94
           label="激活时间">
94
           label="激活时间">
95
           <template slot-scope="scope">
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
           </template>
97
           </template>
98
         </el-table-column>
98
         </el-table-column>
99
         <el-table-column
99
         <el-table-column
100
           prop="CreateDate"
100
           prop="CreateDate"
101
           label="创建时间">
101
           label="创建时间">
102
           <template slot-scope="scope">
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
           </template>
105
           </template>
105
         </el-table-column>
106
         </el-table-column>
106
       </el-table>
107
       </el-table>

+ 2
- 1
src/pages/system/caseManager/signinManager/index.vue Ver arquivo

55
             label="签到时间"
55
             label="签到时间"
56
             width="250">
56
             width="250">
57
             <template slot-scope="scope">
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
             </template>
60
             </template>
60
           </el-table-column>
61
           </el-table-column>
61
           <el-table-column
62
           <el-table-column

+ 8
- 4
src/pages/system/cmsManager/majorProjects/edit.vue Ver arquivo

110
               prop="BeginDate"
110
               prop="BeginDate"
111
               label="课程开始时间">
111
               label="课程开始时间">
112
               <template slot-scope="scope">
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
               </template>
115
               </template>
115
             </el-table-column>
116
             </el-table-column>
116
             <el-table-column
117
             <el-table-column
117
               prop="EndDate"
118
               prop="EndDate"
118
               label="课程结束时间">
119
               label="课程结束时间">
119
               <template slot-scope="scope">
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
               </template>
123
               </template>
122
             </el-table-column>
124
             </el-table-column>
123
             <el-table-column label="操作" width="450">
125
             <el-table-column label="操作" width="450">
171
             prop="BeginDate"
173
             prop="BeginDate"
172
             label="课程开始时间">
174
             label="课程开始时间">
173
             <template slot-scope="scope">
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
             </template>
178
             </template>
176
           </el-table-column>
179
           </el-table-column>
177
           <el-table-column
180
           <el-table-column
178
             prop="EndDate"
181
             prop="EndDate"
179
             label="课程结束时间">
182
             label="课程结束时间">
180
             <template slot-scope="scope">
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
             </template>
186
             </template>
183
           </el-table-column>
187
           </el-table-column>
184
         </el-table>
188
         </el-table>

+ 4
- 2
src/pages/system/courseManager/courseList/index.vue Ver arquivo

94
           label="课程开始时间"
94
           label="课程开始时间"
95
           width="150">
95
           width="150">
96
           <template slot-scope="scope">
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
           </template>
99
           </template>
99
         </el-table-column>
100
         </el-table-column>
100
         <el-table-column
101
         <el-table-column
102
           label="课程结束时间"
103
           label="课程结束时间"
103
           width="150">
104
           width="150">
104
           <template slot-scope="scope">
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
           </template>
108
           </template>
107
         </el-table-column>
109
         </el-table-column>
108
         <el-table-column
110
         <el-table-column

+ 2
- 25
src/pages/system/courseManager/scheduleManager/index.vue Ver arquivo

71
           </li>
71
           </li>
72
           <li class="flex-h">
72
           <li class="flex-h">
73
             <span>开始时间:</span>
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
           </li>
75
           </li>
88
           <li class="flex-h">
76
           <li class="flex-h">
89
             <span>结束时间:</span>
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
           </li>
79
           </li>
103
         </ul>
80
         </ul>
104
       </div>
81
       </div>

+ 2
- 2
src/pages/system/dataStatistics/cardCouponUsedList/index.vue Ver arquivo

117
           label="有效期"
117
           label="有效期"
118
           width="140px">
118
           width="140px">
119
           <template slot-scope="scope">
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
           </template>
121
           </template>
122
         </el-table-column>
122
         </el-table-column>
123
         <el-table-column
123
         <el-table-column
125
           label="获取时间"
125
           label="获取时间"
126
           width="140px">
126
           width="140px">
127
           <template slot-scope="scope">
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
           </template>
129
           </template>
130
         </el-table-column>
130
         </el-table-column>
131
         <el-table-column
131
         <el-table-column

+ 3
- 3
src/pages/system/dataStatistics/courseOrderList/index.vue Ver arquivo

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

+ 2
- 2
src/pages/system/dataStatistics/courseStatisticsList/index.vue Ver arquivo

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

+ 4
- 4
src/pages/system/dataStatistics/courseVerifyList/index.vue Ver arquivo

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

+ 1
- 1
src/pages/system/dataStatistics/frontEndUserList/index.vue Ver arquivo

35
         <el-table-column
35
         <el-table-column
36
           label="创建时间">
36
           label="创建时间">
37
           <template slot-scope="scope">
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
           </template>
39
           </template>
40
         </el-table-column>
40
         </el-table-column>
41
       </el-table>
41
       </el-table>

+ 1
- 1
src/pages/system/healthManager/healthRecord/index.vue Ver arquivo

67
         <el-table-column
67
         <el-table-column
68
           label="检测时间">
68
           label="检测时间">
69
           <template slot-scope="scope">
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
           </template>
71
           </template>
72
         </el-table-column>
72
         </el-table-column>
73
       </el-table>
73
       </el-table>

+ 2
- 2
src/pages/system/luckyDrawManager/luckyDrawList/index.vue Ver arquivo

38
         <el-table-column
38
         <el-table-column
39
           label="获取时间">
39
           label="获取时间">
40
           <template slot-scope="scope">
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
           </template>
42
           </template>
43
         </el-table-column>
43
         </el-table-column>
44
         <el-table-column
44
         <el-table-column
45
           label="核销时间">
45
           label="核销时间">
46
           <template slot-scope="scope">
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
           </template>
48
           </template>
49
         </el-table-column>
49
         </el-table-column>
50
         <el-table-column
50
         <el-table-column

+ 1
- 1
src/pages/system/luckyDrawManager/luckyDrawShareList/index.vue Ver arquivo

60
         <el-table-column
60
         <el-table-column
61
           label="分享时间">
61
           label="分享时间">
62
           <template slot-scope="scope">
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
           </template>
64
           </template>
65
         </el-table-column>
65
         </el-table-column>
66
       </el-table>
66
       </el-table>

+ 1
- 1
src/pages/system/systemSet/roleManager/index.vue Ver arquivo

15
         </el-table-column>
15
         </el-table-column>
16
         <el-table-column label="创建时间" width="300">
16
         <el-table-column label="创建时间" width="300">
17
           <template slot-scope="scope">
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
           </template>
19
           </template>
20
         </el-table-column>
20
         </el-table-column>
21
         <el-table-column fixed='right' label="操作" width="300">
21
         <el-table-column fixed='right' label="操作" width="300">

+ 1
- 1
src/pages/system/verificationManager/drawVerification/verificationList/index.vue Ver arquivo

42
                 label="获取时间"
42
                 label="获取时间"
43
                 width="140px">
43
                 width="140px">
44
                 <template slot-scope="scope">
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
                 </template>
46
                 </template>
47
               </el-table-column>
47
               </el-table-column>
48
               <el-table-column
48
               <el-table-column

+ 2
- 2
src/pages/system/verificationManager/phoneVerification/verificationList/index.vue Ver arquivo

41
                 prop="StartDate"
41
                 prop="StartDate"
42
                 label="课程开始时间">
42
                 label="课程开始时间">
43
                 <template slot-scope="scope">
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
                 </template>
45
                 </template>
46
               </el-table-column>
46
               </el-table-column>
47
               <el-table-column
47
               <el-table-column
48
                 prop="EndDate"
48
                 prop="EndDate"
49
                 label="课程结束时间">
49
                 label="课程结束时间">
50
                 <template slot-scope="scope">
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
                 </template>
52
                 </template>
53
               </el-table-column>
53
               </el-table-column>
54
               <el-table-column
54
               <el-table-column

+ 2
- 2
src/pages/system/verificationManager/qrcodeVerification/verificationList/index.vue Ver arquivo

33
                 prop="StartDate"
33
                 prop="StartDate"
34
                 label="课程开始时间">
34
                 label="课程开始时间">
35
                 <template slot-scope="scope">
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
                 </template>
37
                 </template>
38
               </el-table-column>
38
               </el-table-column>
39
               <el-table-column
39
               <el-table-column
40
                 prop="EndDate"
40
                 prop="EndDate"
41
                 label="课程结束时间">
41
                 label="课程结束时间">
42
                 <template slot-scope="scope">
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
                 </template>
44
                 </template>
45
               </el-table-column>
45
               </el-table-column>
46
               <el-table-column
46
               <el-table-column