From 554da994524a51e1cbf9a74af43fe92c69d9bdf1 Mon Sep 17 00:00:00 2001 From: chutingting Date: Mon, 4 Dec 2023 16:14:04 +0800 Subject: [PATCH 1/2] edit brn --- src/lang/package/en.ts | 2 +- src/lang/package/zh-cn.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lang/package/en.ts b/src/lang/package/en.ts index 2e64320..0df269d 100644 --- a/src/lang/package/en.ts +++ b/src/lang/package/en.ts @@ -268,7 +268,7 @@ export default { store: { priceRmb: 'original price', glod: 'currency value', - createOrder: 'Create Order', + createOrder: 'BUY NOW', payType:'Choose payment method', cancel: 'Cancel', confirm: 'Confirm', diff --git a/src/lang/package/zh-cn.ts b/src/lang/package/zh-cn.ts index ec5d4f6..5e6ec53 100644 --- a/src/lang/package/zh-cn.ts +++ b/src/lang/package/zh-cn.ts @@ -267,7 +267,7 @@ export default { store: { priceRmb: '原价', glod: '币值', - createOrder: '创建订单', + createOrder: '立即购买', payType:'选择支付方式', cancel: '取消', confirm: '确定', From e7a19528a5e5350fa9516f48c12427d4d9907848 Mon Sep 17 00:00:00 2001 From: chutingting Date: Mon, 4 Dec 2023 18:11:04 +0800 Subject: [PATCH 2/2] edit css --- src/types/auto-imports.d.ts | 6 ++++++ src/views/myStore/index.vue | 27 ++++++++++++++++++++++----- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/src/types/auto-imports.d.ts b/src/types/auto-imports.d.ts index 6f8d200..e5c7bdb 100644 --- a/src/types/auto-imports.d.ts +++ b/src/types/auto-imports.d.ts @@ -2,6 +2,9 @@ export {} declare global { const EffectScope: typeof import('vue')['EffectScope'] + const ElForm: typeof import('element-plus/es')['ElForm'] + const ElMessage: typeof import('element-plus/es')['ElMessage'] + const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] const autoResetRef: typeof import('@vueuse/core')['autoResetRef'] const computed: typeof import('vue')['computed'] @@ -268,6 +271,9 @@ import { UnwrapRef } from 'vue' declare module 'vue' { interface ComponentCustomProperties { readonly EffectScope: UnwrapRef + readonly ElForm: UnwrapRef + readonly ElMessage: UnwrapRef + readonly ElMessageBox: UnwrapRef readonly asyncComputed: UnwrapRef readonly autoResetRef: UnwrapRef readonly computed: UnwrapRef diff --git a/src/views/myStore/index.vue b/src/views/myStore/index.vue index a9d80aa..013752e 100644 --- a/src/views/myStore/index.vue +++ b/src/views/myStore/index.vue @@ -1,30 +1,33 @@