时间组件优化

qianming 2 years ago
parent 07336e56e9
commit 3965ea271b

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

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

Loading…
Cancel
Save