【LiLi】工作台的时间格式
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
134f2471a6
commit
b6ee9d5f62
|
|
@ -88,10 +88,13 @@
|
||||||
<span style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;max-width: 150px">{{
|
<span style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;max-width: 150px">{{
|
||||||
user.RealName }}</span>
|
user.RealName }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div style="font-size: .75rem;line-height: 18px;color:#999">{{ new
|
<div style="font-size: .75rem;line-height: 18px;color:#999" v-if="NODE_ENV !== 'usa'">{{ new
|
||||||
Date().getFullYear() }}{{ $t('common:date:today') }}{{ new Date().getMonth() +
|
Date().getFullYear() }}{{ $t('common:date:today') }}{{ new Date().getMonth() +
|
||||||
1 }}{{ $t('common:date:month') }}{{ new Date().getDate() }}{{ $t('common:date:day') }},{{ dayOfWeek }}
|
1 }}{{ $t('common:date:month') }}{{ new Date().getDate() }}{{ $t('common:date:day') }},{{ dayOfWeek }}
|
||||||
</div>
|
</div>
|
||||||
|
<div style="font-size: .75rem;line-height: 18px;color:#999" v-else>{{ moment().format('DD/MMM/YYYY') }},{{
|
||||||
|
dayOfWeek }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="user-status" style="display: flex">
|
<div class="user-status" style="display: flex">
|
||||||
|
|
@ -587,7 +590,7 @@ import ReuploadAudit from "./components/ReuploadAudit"
|
||||||
import inspectionManagement from "./components/inspectionManagement"
|
import inspectionManagement from "./components/inspectionManagement"
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
import './index.css'
|
import './index.css'
|
||||||
|
import moment from "moment";
|
||||||
import { getUserTobeDoneRecord, getNeedSignTrialDocTrialIdList } from '@/api/trials'
|
import { getUserTobeDoneRecord, getNeedSignTrialDocTrialIdList } from '@/api/trials'
|
||||||
import { getUser } from '@/api/admin'
|
import { getUser } from '@/api/admin'
|
||||||
import { mapGetters, mapState } from "vuex";
|
import { mapGetters, mapState } from "vuex";
|
||||||
|
|
@ -626,6 +629,8 @@ export default {
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
NODE_ENV: process.env.NODE_ENV, // process.env.NODE_ENV
|
||||||
|
moment,
|
||||||
isSignSystemDoc: false,
|
isSignSystemDoc: false,
|
||||||
trialIdList: [],
|
trialIdList: [],
|
||||||
tabList: {},
|
tabList: {},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue