订单详情展示使用指南
parent
10de4ac53a
commit
e5e7de28bd
|
|
@ -56,6 +56,7 @@
|
||||||
"confirm_sub": "Confirm submission",
|
"confirm_sub": "Confirm submission",
|
||||||
"submit_payment": "Submit payment",
|
"submit_payment": "Submit payment",
|
||||||
"my_want_receive": "I want to claim it",
|
"my_want_receive": "I want to claim it",
|
||||||
|
"use_guide": "Use Guide",
|
||||||
"clear": "empty",
|
"clear": "empty",
|
||||||
"all": "All",
|
"all": "All",
|
||||||
"share": "Share",
|
"share": "Share",
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,7 @@
|
||||||
"confirm_sub": "确认提交",
|
"confirm_sub": "确认提交",
|
||||||
"submit_payment": "提交支付",
|
"submit_payment": "提交支付",
|
||||||
"my_want_receive": "我要领取",
|
"my_want_receive": "我要领取",
|
||||||
|
"use_guide": "使用指南",
|
||||||
"clear": "清空",
|
"clear": "清空",
|
||||||
"all": "全部",
|
"all": "全部",
|
||||||
"share": "分享",
|
"share": "分享",
|
||||||
|
|
|
||||||
|
|
@ -65,11 +65,12 @@
|
||||||
*/
|
*/
|
||||||
.order-item-goods-info-container .nav-base .item:nth-child(1),
|
.order-item-goods-info-container .nav-base .item:nth-child(1),
|
||||||
.order-item-goods-info-container .nav-base .item:nth-child(2) {
|
.order-item-goods-info-container .nav-base .item:nth-child(2) {
|
||||||
width: 18%;
|
width: 12.5%;
|
||||||
}
|
}
|
||||||
.order-item-goods-info-container .nav-base .item:nth-child(3),
|
.order-item-goods-info-container .nav-base .item:nth-child(3),
|
||||||
.order-item-goods-info-container .nav-base .item:nth-child(4) {
|
.order-item-goods-info-container .nav-base .item:nth-child(4),
|
||||||
width: 32%;
|
.order-item-goods-info-container .nav-base .item:nth-child(5) {
|
||||||
|
width: 25%;
|
||||||
}
|
}
|
||||||
.order-item-goods-info-container .scroll-content {
|
.order-item-goods-info-container .scroll-content {
|
||||||
height: 70vh;
|
height: 70vh;
|
||||||
|
|
|
||||||
|
|
@ -250,6 +250,15 @@
|
||||||
<component-no-data propStatus="0"></component-no-data>
|
<component-no-data propStatus="0"></component-no-data>
|
||||||
</block>
|
</block>
|
||||||
</block>
|
</block>
|
||||||
|
<!-- 使用指南 -->
|
||||||
|
<block v-else-if="order_item_goods_info_nav_index == 'use-guide'">
|
||||||
|
<view v-if="(order_item_goods_info_data.goods_use_guide || null) != null" class="web-html-content">
|
||||||
|
<mp-html :content="order_item_goods_info_data.goods_use_guide" />
|
||||||
|
</view>
|
||||||
|
<block v-else>
|
||||||
|
<component-no-data propStatus="0"></component-no-data>
|
||||||
|
</block>
|
||||||
|
</block>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</block>
|
</block>
|
||||||
<block v-else>
|
<block v-else>
|
||||||
|
|
@ -292,7 +301,8 @@
|
||||||
'base': this.$t('common.base'),
|
'base': this.$t('common.base'),
|
||||||
'params': this.$t('common.params'),
|
'params': this.$t('common.params'),
|
||||||
'detail-web': this.$t('common.detail_text')+'('+this.$t('common.web_client')+')',
|
'detail-web': this.$t('common.detail_text')+'('+this.$t('common.web_client')+')',
|
||||||
'detail-app': this.$t('common.detail_text')+'('+this.$t('common.app_client')+')'
|
'detail-app': this.$t('common.detail_text')+'('+this.$t('common.app_client')+')',
|
||||||
|
'use-guide': this.$t('common.use_guide'),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue