From d1477f7f30c24da83c583ecdc35095ffdb0e4229 Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Mon, 26 Aug 2024 13:38:17 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BC=98=E6=83=A0=E5=88=B8=20sws=202024-08-2?= =?UTF-8?q?6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/main/default/coupon.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/layout/components/main/default/coupon.ts diff --git a/src/layout/components/main/default/coupon.ts b/src/layout/components/main/default/coupon.ts new file mode 100644 index 00000000..0cb78bd1 --- /dev/null +++ b/src/layout/components/main/default/coupon.ts @@ -0,0 +1,17 @@ +import defaultCommon from './index'; +interface DefaultCoupon { + content: { + }; + style: { + common_style: object; + }; +} +const defaultCoupoin: DefaultCoupon = { + content: { + }, + style: { + common_style: { ...defaultCommon, padding: 10, padding_top: 10, padding_bottom: 10, padding_left: 10, padding_right: 10 }, + }, +}; + +export default defaultCoupoin;