task#15348,司机app培训,更新时间取当前时间
This commit is contained in:
@ -31,7 +31,7 @@
|
||||
<div class="statisticWrap">
|
||||
<div class="line1">
|
||||
<span>培训统计</span>
|
||||
<span>更新时间:2023-11-22 90:00:00</span>
|
||||
<span>更新时间:{{time}}</span>
|
||||
</div>
|
||||
<div class="numWrap">
|
||||
<div>
|
||||
@ -79,6 +79,7 @@
|
||||
<script>
|
||||
import {myMixins} from "@/utils/myMixins"
|
||||
import {getTrainingList} from "@/api/mine"
|
||||
import {timeFormat} from "@/utils/common";
|
||||
export default {
|
||||
name: "diverTrainDocment",
|
||||
computed: {
|
||||
@ -96,11 +97,13 @@ export default {
|
||||
showEmpty:false,
|
||||
isLoading:false,
|
||||
driverId:'',
|
||||
time:'',
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.driverId = urlParams.get('driverId');
|
||||
this.time=timeFormat(Date.now())
|
||||
this.getTrainingList();
|
||||
},
|
||||
methods:{
|
||||
@ -135,6 +138,7 @@ export default {
|
||||
}
|
||||
if(result){
|
||||
this.pageList=result[0].materials
|
||||
this.time=timeFormat(Date.now())
|
||||
}
|
||||
if(this.pageList?.length === 0){
|
||||
this.showEmpty = true
|
||||
|
Reference in New Issue
Block a user