时间组件优化

qianming 2 years ago
parent 07336e56e9
commit 3965ea271b

@ -56,7 +56,7 @@ export const widgetTime = {
name: 'fontSize',
required: false,
placeholder: '',
value: '26'
value: '36'
},
{
type: 'vue-color',
@ -128,7 +128,7 @@ export const widgetTime = {
name: 'width',
required: false,
placeholder: '该容器在1920px大屏中的宽度',
value: 300,
value: 400,
},
{
type: 'el-input-number',
@ -136,7 +136,7 @@ export const widgetTime = {
name: 'height',
required: false,
placeholder: '该容器在1080px大屏中的高度',
value: 100,
value: 50,
},
],
}

@ -94,11 +94,11 @@ export default {
},
formatWeek(date, fmt) {
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
const month = this.check(date.getMonth() + 1);
const day = this.check(date.getDate());
const hours = this.check(date.getHours());
const minutes = this.check(date.getMinutes());
const seconds = this.check(date.getSeconds());
let dayCycle = date.getDay();
const dayCycleArray = ["日", "一", "二", "三", "四", "五", "六"];
for (let i = 0; i < 7; i++) {

Loading…
Cancel
Save