From 7d1d7758e48a16620a40ff415e66dc0a6c3c98f2 Mon Sep 17 00:00:00 2001 From: ival <610568032@qq.com> Date: Wed, 30 Oct 2019 17:26:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=97=B6=E9=97=B4=E5=8C=97?= =?UTF-8?q?=E4=BA=AC=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/systemTime/index.vue | 75 ++++++++++++----------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/src/views/components/systemTime/index.vue b/src/views/components/systemTime/index.vue index 84f8e61bb..4894e0e1f 100644 --- a/src/views/components/systemTime/index.vue +++ b/src/views/components/systemTime/index.vue @@ -19,43 +19,43 @@ import Digit from './digit'; import Separator from './separator'; export default { - name: 'SystenTime', - components: { - Digit, - Separator - }, - props: { - background: { - type: String, - default() { - return '#000'; - } - }, - color: { - type: String, - default() { - return '#00FF00'; - } - }, - time: { - type: String, - default() { - return '12:3456'; - } - }, - zoom: { - type: Number, - default() { - return 4; - } - }, - fine: { - type: Number, - default() { - return 2; - } - } - } + name: 'SystenTime', + components: { + Digit, + Separator + }, + props: { + background: { + type: String, + default() { + return '#000'; + } + }, + color: { + type: String, + default() { + return '#00FF00'; + } + }, + time: { + type: String, + default() { + return '12:3456'; + } + }, + zoom: { + type: Number, + default() { + return 4; + } + }, + fine: { + type: Number, + default() { + return 2; + } + } + } }; @@ -63,5 +63,6 @@ export default { .system-time-box { display: inline-block; text-align: center; + background: #000; }