From a772797ef096a14aec9919869500c64d2c7c510b Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Thu, 29 Aug 2024 00:40:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=81=E7=A4=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- locale/en.json | 4 + locale/zh.json | 4 + pages.json | 21 +++-- .../extraction-order/extraction-order.vue | 2 +- pages/plugins/distribution/order/order.vue | 2 +- pages/plugins/distribution/profit/profit.vue | 2 +- .../profit/profit.vue | 2 +- pages/plugins/givegift/code/code.vue | 8 ++ pages/plugins/givegift/gift/gift.css | 14 +-- pages/plugins/givegift/gift/gift.vue | 88 +++++++++++++++++-- pages/plugins/givegift/goods/goods.vue | 2 +- pages/plugins/invoice/invoice/invoice.vue | 2 +- .../membershiplevelvip/order/order.vue | 2 +- .../membershiplevelvip/profit/profit.vue | 2 +- .../weixinliveplayer/search/search.vue | 2 +- 15 files changed, 129 insertions(+), 28 deletions(-) create mode 100644 pages/plugins/givegift/code/code.vue diff --git a/locale/en.json b/locale/en.json index 54da30fa..1641ca10 100644 --- a/locale/en.json +++ b/locale/en.json @@ -15,6 +15,8 @@ "add": "Add", "del": "Delete", "edit": "Edit", + "link": "Link", + "gift": "Gift", "more": "More", "more_null": "", "search": "Search", @@ -30,6 +32,8 @@ "return": "Return", "view_text": "Check", "detail_text": "Detail", + "yes_text": "Yes", + "no_text": "NO", "place_order_text": "Place Order", "processing_in_text": "Processing", "loading_in_text": "Loading", diff --git a/locale/zh.json b/locale/zh.json index 530c12bc..189c86fb 100644 --- a/locale/zh.json +++ b/locale/zh.json @@ -15,6 +15,8 @@ "add": "新增", "del": "删除", "edit": "编辑", + "link": "链接", + "gift": "礼物", "more": "更多", "more_null": "更 多", "search": "搜索", @@ -30,6 +32,8 @@ "return": "返回", "view_text": "查看", "detail_text": "详情", + "yes_text": "是", + "no_text": "否", "place_order_text": "下单", "processing_in_text": "处理中...", "loading_in_text": "加载中...", diff --git a/pages.json b/pages.json index 422c09d9..94bdb3f0 100644 --- a/pages.json +++ b/pages.json @@ -1601,13 +1601,6 @@ "navigationBarTitleText": "" } }, - { - "path": "receive/receive", - "style": { - "enablePullDownRefresh": true, - "navigationBarTitleText": "" - } - }, { "path": "gift/gift", "style": { @@ -1621,6 +1614,20 @@ "enablePullDownRefresh": true, "navigationBarTitleText": "" } + }, + { + "path": "code/code", + "style": { + "enablePullDownRefresh": true, + "navigationBarTitleText": "" + } + }, + { + "path": "receive/receive", + "style": { + "enablePullDownRefresh": true, + "navigationBarTitleText": "" + } } ] }, diff --git a/pages/plugins/distribution/extraction-order/extraction-order.vue b/pages/plugins/distribution/extraction-order/extraction-order.vue index 350536d4..ff971397 100644 --- a/pages/plugins/distribution/extraction-order/extraction-order.vue +++ b/pages/plugins/distribution/extraction-order/extraction-order.vue @@ -3,7 +3,7 @@ - {{ item.name }} + {{ item.name }} diff --git a/pages/plugins/distribution/order/order.vue b/pages/plugins/distribution/order/order.vue index 498667b3..f426a5bd 100644 --- a/pages/plugins/distribution/order/order.vue +++ b/pages/plugins/distribution/order/order.vue @@ -3,7 +3,7 @@ - {{ item.name }} + {{ item.name }} diff --git a/pages/plugins/distribution/profit/profit.vue b/pages/plugins/distribution/profit/profit.vue index f8cd662f..b9054d38 100644 --- a/pages/plugins/distribution/profit/profit.vue +++ b/pages/plugins/distribution/profit/profit.vue @@ -3,7 +3,7 @@ - {{ item.name }} + {{ item.name }} diff --git a/pages/plugins/excellentbuyreturntocash/profit/profit.vue b/pages/plugins/excellentbuyreturntocash/profit/profit.vue index 0eb062ee..97acf9ad 100644 --- a/pages/plugins/excellentbuyreturntocash/profit/profit.vue +++ b/pages/plugins/excellentbuyreturntocash/profit/profit.vue @@ -3,7 +3,7 @@ - {{ item.name }} + {{ item.name }} diff --git a/pages/plugins/givegift/code/code.vue b/pages/plugins/givegift/code/code.vue new file mode 100644 index 00000000..02409e35 --- /dev/null +++ b/pages/plugins/givegift/code/code.vue @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/pages/plugins/givegift/gift/gift.css b/pages/plugins/givegift/gift/gift.css index 61485416..fcf737c5 100644 --- a/pages/plugins/givegift/gift/gift.css +++ b/pages/plugins/givegift/gift/gift.css @@ -1,10 +1,3 @@ -/* -* 导航 -*/ -.nav-base .item { - width: 20%; -} - /** * 商品 */ @@ -14,4 +7,11 @@ } .goods-title { width: calc(100% - 90rpx); +} + +/** + * 编辑表单 + */ +.form-container .message-tips { + width: calc(100% - 200rpx) !important; } \ No newline at end of file diff --git a/pages/plugins/givegift/gift/gift.vue b/pages/plugins/givegift/gift/gift.vue index 4b114e20..0b0d80e4 100644 --- a/pages/plugins/givegift/gift/gift.vue +++ b/pages/plugins/givegift/gift/gift.vue @@ -1,9 +1,9 @@