This commit is contained in:
X1627315083@163.com
2026-05-27 11:22:01 +08:00
parent 3c39959ce3
commit 95556b1a1f
3 changed files with 13 additions and 3 deletions

View File

@@ -315,4 +315,9 @@ export default {
BuyNow: 'Buy Now',
AddToCart: 'Add to Cart',
},
addShoppingCart:{
title: 'Added to your Shopping Cart',
statement: 'Digital Assets Only. No physical product included.',
button: 'Set Shopping Cart',
}
}

View File

@@ -315,4 +315,9 @@ export default {
BuyNow: "立即购买",
AddToCart: "加入购物车"
},
addShoppingCart:{
title: "已添加到您的购物车",
statement: "仅限数字资产。不包含实体产品。",
button: "去购物车"
}
}

View File

@@ -45,7 +45,7 @@ const {} = toRefs(data);
<el-drawer v-model="isShoppingShow" width="50rem" class="addShoppingDrawer" :close-on-click-modal="false" title="I am the title" :with-header="false">
<div class="addShoppingInfo">
<div class="header">
<div class="title">Added to your Shopping Cart</div>
<div class="title">{{ $t('addShoppingCart.title') }}</div>
<span class="close" @click="shoppingClose"
><svg-icon name="close" size="13"
/></span>
@@ -76,11 +76,11 @@ const {} = toRefs(data);
<div class="icon">
<SvgIcon name="statement" size="16.6" />
</div>
Digital Assets Only. No physical product included.
{{ $t('addShoppingCart.statement') }}
</div>
</div>
<div class="button" @click="goShopping">
SeE Shopping Cart
{{ $t('addShoppingCart.button') }}
</div>
</div>
<!-- <sc-list is-mini style="flex: 0.6;" @close="shoppingClose"/> -->