jufubao-base 1.0.184-beta2 → 1.0.185
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/JfbBaseAddress/Attr.js +1 -50
- package/src/components/JfbBaseAddress/JfbBaseAddress.vue +68 -120
- package/src/components/JfbBaseFastLink/Attr.js +18 -5
- package/src/components/JfbBaseFastLink/JfbBaseFastLink.vue +8 -8
- package/src/components/JfbBaseFastLink/XdFastNav.vue +12 -0
- package/src/components/JfbBaseOrderDetail/Attr.js +74 -18
- package/src/components/JfbBaseOrderDetail/JfbBaseOrderDetail.vue +22 -26
- package/src/components/JfbBaseOrderList/Attr.js +0 -23
- package/src/components/JfbBaseOrderList/JfbBaseOrderList.vue +86 -117
- package/src/components/JfbBaseTfkCardLogin/JfbBaseTfkCardLogin.vue +1 -0
- package/src/components/JfbBaseUserCenter/Attr.js +48 -240
- package/src/components/JfbBaseUserCenter/JfbBaseUserCenter.vue +30 -101
- package/src/components/JfbBaseUserInfo/Attr.js +30 -179
- package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +44 -80
- package/src/components/JfbBaseWallet/Attr.js +2 -340
- package/src/components/JfbBaseWallet/JfbBaseWallet.vue +49 -167
- package/src/components/JfbBaseAddress/XdTfkItem.vue +0 -117
- package/src/components/JfbBaseOrderList/XdTfkOrderItem.vue +0 -246
|
@@ -129,9 +129,6 @@
|
|
|
129
129
|
v-for="(Ditem, Dindex) in info.film_show.detail.items"
|
|
130
130
|
:key="Dindex"
|
|
131
131
|
class="jfb-base-order-detail__body-delivery-bottom-item"
|
|
132
|
-
:style="{
|
|
133
|
-
marginBottom: lineHeight + 'rpx'
|
|
134
|
-
}"
|
|
135
132
|
>
|
|
136
133
|
<view style="width: 130rpx"
|
|
137
134
|
>{{ Ditem.label }} <span v-if="Ditem.label">:</span>
|
|
@@ -217,9 +214,6 @@
|
|
|
217
214
|
v-for="(Ditem, Dindex) in item.info"
|
|
218
215
|
:key="Dindex"
|
|
219
216
|
class="jfb-base-order-detail__body-delivery-bottom-item"
|
|
220
|
-
:style="{
|
|
221
|
-
marginBottom: lineHeight + 'rpx'
|
|
222
|
-
}"
|
|
223
217
|
>
|
|
224
218
|
<view style="width: 130rpx;display: flex;">
|
|
225
219
|
<view v-html="Ditem.label"></view>
|
|
@@ -516,9 +510,6 @@
|
|
|
516
510
|
v-for="(item, index) in info.detail"
|
|
517
511
|
:key="index"
|
|
518
512
|
class="jfb-base-order-detail__body-order"
|
|
519
|
-
:style="{
|
|
520
|
-
marginBottom: lineHeight + 'rpx'
|
|
521
|
-
}"
|
|
522
513
|
>
|
|
523
514
|
<view :style="{ fontWeight: item.style }">
|
|
524
515
|
<view style="display: flex;">
|
|
@@ -550,9 +541,6 @@
|
|
|
550
541
|
<view
|
|
551
542
|
v-if="item.type !== 'line'"
|
|
552
543
|
class="jfb-base-order-detail__body-price"
|
|
553
|
-
:style="{
|
|
554
|
-
marginBottom: lineHeight + 'rpx'
|
|
555
|
-
}"
|
|
556
544
|
>
|
|
557
545
|
<view :style="{ fontWeight: item.style }">{{ item.label }}</view>
|
|
558
546
|
<xd-unit
|
|
@@ -826,6 +814,15 @@ export default {
|
|
|
826
814
|
backgroundColor: "",
|
|
827
815
|
padding: 0,
|
|
828
816
|
|
|
817
|
+
//投影
|
|
818
|
+
is_shadow: "Y",
|
|
819
|
+
is_shadow_bg: 0,
|
|
820
|
+
is_shadow_w: 0,
|
|
821
|
+
|
|
822
|
+
//边框
|
|
823
|
+
is_border: "Y",
|
|
824
|
+
is_border_w: 0,
|
|
825
|
+
is_border_c: "",
|
|
829
826
|
|
|
830
827
|
//其他
|
|
831
828
|
margin: {
|
|
@@ -836,11 +833,8 @@ export default {
|
|
|
836
833
|
},
|
|
837
834
|
is_hot: "Y",
|
|
838
835
|
logo: "",
|
|
839
|
-
lineHeight: 20,
|
|
840
836
|
|
|
841
837
|
noticeBgc:'',
|
|
842
|
-
sectionShadow: "",
|
|
843
|
-
sectionBorder: "",
|
|
844
838
|
};
|
|
845
839
|
},
|
|
846
840
|
watch: {
|
|
@@ -879,10 +873,14 @@ export default {
|
|
|
879
873
|
return str
|
|
880
874
|
},
|
|
881
875
|
shadowBox() {
|
|
882
|
-
|
|
876
|
+
if (this.is_shadow === "Y")
|
|
877
|
+
return `0 0 ${this.is_shadow_w}rpx ${this.is_shadow_bg}`;
|
|
878
|
+
else return "0 0 0 rgba(0,0,0,0)";
|
|
883
879
|
},
|
|
884
880
|
borderBox() {
|
|
885
|
-
|
|
881
|
+
if (this.is_border === "Y")
|
|
882
|
+
return `${this.is_border_w}rpx solid ${this.is_border_c}`;
|
|
883
|
+
else return "0";
|
|
886
884
|
},
|
|
887
885
|
},
|
|
888
886
|
created() {
|
|
@@ -1110,19 +1108,17 @@ export default {
|
|
|
1110
1108
|
this.brandTextColor = getContainerPropsValue(container, "content.brandTextColor", this.mainColor);
|
|
1111
1109
|
this.padding = getContainerPropsValue(container, "content.padding", 20);
|
|
1112
1110
|
|
|
1111
|
+
this.is_shadow = getContainerPropsValue(container, "content.is_shadow", "N");
|
|
1112
|
+
this.is_shadow_bg = getContainerPropsValue(container, "content.is_shadow_bg", "#fff");
|
|
1113
|
+
this.is_shadow_w = getContainerPropsValue(container, "content.is_shadow_w", "10");
|
|
1114
|
+
|
|
1115
|
+
this.is_border = getContainerPropsValue(container, "content.is_border", "N");
|
|
1113
1116
|
this.is_hot = getContainerPropsValue(container, "content.is_hot", "Y");
|
|
1117
|
+
this.is_border_c = getContainerPropsValue(container, "content.is_border_c", "#fff");
|
|
1118
|
+
this.is_border_w = getContainerPropsValue(container, "content.is_border_w", 2);
|
|
1114
1119
|
this.viewStatus = getContainerPropsValue(container, "content.viewStatus", "mall");
|
|
1115
1120
|
this.is_show_support_shop = getContainerPropsValue(container, "content.is_show_support_shop", "N");
|
|
1116
1121
|
this.is_show_delete_order = getContainerPropsValue(container, "content.is_show_delete_order", "N");
|
|
1117
|
-
this.lineHeight = getContainerPropsValue(container, "content.lineHeight", 20);
|
|
1118
|
-
let sectionShadow = getContainerPropsValue(container, "content.sectionShadow", "");
|
|
1119
|
-
if(sectionShadow.type === 'Y' && sectionShadow.value){
|
|
1120
|
-
this.sectionShadow = `0 0 ${sectionShadow.value.width}rpx ${sectionShadow.value.color}`;
|
|
1121
|
-
}else this.sectionShadow = '';
|
|
1122
|
-
let sectionBorder = getContainerPropsValue(container, "content.sectionBorder", "");
|
|
1123
|
-
if(sectionBorder.type === 'Y' && sectionBorder.value){
|
|
1124
|
-
this.sectionBorder = `${sectionBorder.value.width}rpx solid ${sectionBorder.value.color}`;
|
|
1125
|
-
}else this.sectionBorder = '';
|
|
1126
1122
|
},
|
|
1127
1123
|
getCountDown() {
|
|
1128
1124
|
this.timer = setInterval(() => {
|
|
@@ -4,17 +4,6 @@ export default {
|
|
|
4
4
|
style: [],
|
|
5
5
|
content: (data)=>{
|
|
6
6
|
return [
|
|
7
|
-
{
|
|
8
|
-
label: "布局样式配置",
|
|
9
|
-
ele: "xd-radio",
|
|
10
|
-
valueKey: "layout_style",
|
|
11
|
-
value: data.layout_style || 'old',
|
|
12
|
-
list: [
|
|
13
|
-
{label: '布局1', value: 'old'},
|
|
14
|
-
{label: '布局2', value: 'tfk'},
|
|
15
|
-
],
|
|
16
|
-
groupKey: "style",
|
|
17
|
-
},
|
|
18
7
|
{
|
|
19
8
|
label: '设置订单状态:',
|
|
20
9
|
ele: 'xd-order-setting',
|
|
@@ -41,18 +30,6 @@ export default {
|
|
|
41
30
|
{required: true, message: '设置订单配置错误!请检查配置', trigger: 'change'},
|
|
42
31
|
],
|
|
43
32
|
},
|
|
44
|
-
{
|
|
45
|
-
label: "是否展示订单号:",
|
|
46
|
-
ele: 'xd-radio',
|
|
47
|
-
valueKey: 'isShowOrderNo',
|
|
48
|
-
value: data['isShowOrderNo'] || 'Y',
|
|
49
|
-
groupKey:'style',
|
|
50
|
-
list: [
|
|
51
|
-
{label: '是', value: 'Y'},
|
|
52
|
-
{label: '否', value: 'N'},
|
|
53
|
-
],
|
|
54
|
-
hidden: data.layout_style !== 'tfk'
|
|
55
|
-
},
|
|
56
33
|
{
|
|
57
34
|
label: '外填充:',
|
|
58
35
|
ele: 'xd-margin-padding',
|
|
@@ -64,129 +64,104 @@
|
|
|
64
64
|
class="jfb-base-order-list__body-order"
|
|
65
65
|
:style="{ padding: outMargin }"
|
|
66
66
|
>
|
|
67
|
-
<
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
>
|
|
81
|
-
<
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
<view
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
<view
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
>
|
|
100
|
-
|
|
101
|
-
<view class="jfb-base-order-list__body-order-item-content-info">
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
<view
|
|
106
|
-
|
|
107
|
-
<
|
|
108
|
-
|
|
109
|
-
<text>{{ Sitem.product_num }}</text>
|
|
110
|
-
</view>
|
|
67
|
+
<view
|
|
68
|
+
@click="handleToLink(detailPath, item)"
|
|
69
|
+
class="jfb-base-order-list__body-order-item"
|
|
70
|
+
v-for="item in orderList"
|
|
71
|
+
:key="item.main_order_id"
|
|
72
|
+
:style="{
|
|
73
|
+
background: backgroundColor,
|
|
74
|
+
border: borderBox,
|
|
75
|
+
borderRadius: radius + 'rpx',
|
|
76
|
+
boxShadow: shadowBox,
|
|
77
|
+
marginBottom: padding + 'rpx',
|
|
78
|
+
}"
|
|
79
|
+
>
|
|
80
|
+
<view class="jfb-base-order-list__body-order-item-biz">
|
|
81
|
+
<xd-font-icon
|
|
82
|
+
v-if="item.biz_code_icon"
|
|
83
|
+
:icon="item.biz_code_icon"
|
|
84
|
+
:size="item['biz_code_icon_size']"
|
|
85
|
+
></xd-font-icon>
|
|
86
|
+
<view :class="{ marginLeft: item.biz_code_icon }">{{item.biz_code_name }}</view>
|
|
87
|
+
</view>
|
|
88
|
+
<view class="jfb-base-order-list__body-order-item-title">
|
|
89
|
+
<view>订单编号:{{ item.main_order_id }}</view>
|
|
90
|
+
<view :style="{color:item.status.status_type !== 'error' ? mainColor : '#999999',}">{{ item.status.status_name }}</view>
|
|
91
|
+
</view>
|
|
92
|
+
<view class="order-list">
|
|
93
|
+
<view
|
|
94
|
+
class="jfb-base-order-list__body-order-item-content"
|
|
95
|
+
v-for="(Sitem, Sindex) in item.products"
|
|
96
|
+
:key="Sitem.key"
|
|
97
|
+
v-if="(item['isOpen'] === false && Sindex < showLen) || item['isOpen']"
|
|
98
|
+
>
|
|
99
|
+
<image :src="Sitem.product_thumb" style="background: #ffffff" mode="aspectFit"></image>
|
|
100
|
+
<view class="jfb-base-order-list__body-order-item-content-info">
|
|
101
|
+
<view class="jfb-base-order-list__body-order-item-content-info-name">{{ Sitem.product_name }}</view>
|
|
102
|
+
<view class="brand-name" v-if="Sitem.brand_name" :style="{color:brandTextColor}">{{ Sitem.brand_name }}</view>
|
|
103
|
+
<view v-if="Sitem.product_sku_name" class="jfb-base-order-list__body-order-item-content-info-skuname">规格:{{ Sitem.product_sku_name }}</view>
|
|
104
|
+
<view class="jfb-base-order-list__body-order-item-content-info-price">
|
|
105
|
+
<view></view>
|
|
106
|
+
<view class="info-price">
|
|
107
|
+
<text>X</text>
|
|
108
|
+
<text>{{ Sitem.product_num }}</text>
|
|
111
109
|
</view>
|
|
112
110
|
</view>
|
|
113
111
|
</view>
|
|
114
|
-
<view
|
|
115
|
-
class="order-list-icon"
|
|
116
|
-
:style="{ bottom: item['isOpen'] ? '-30rpx' : '-54rpx' }"
|
|
117
|
-
v-if="item.products.length > showLen"
|
|
118
|
-
@click.stop="switchOpen(item)"
|
|
119
|
-
>
|
|
120
|
-
<view :style="{ background: backgroundColor }">
|
|
121
|
-
<xd-font-icon
|
|
122
|
-
color="#666"
|
|
123
|
-
:icon="item['isOpen'] ? 'iconshang_up' : 'iconxia_down'"
|
|
124
|
-
size="24"
|
|
125
|
-
></xd-font-icon>
|
|
126
|
-
</view>
|
|
127
|
-
</view>
|
|
128
|
-
</view>
|
|
129
|
-
<view class="jfb-base-order-list__body-order-item-bottom">
|
|
130
|
-
<view>下单时间:{{ item.created_time_text }}</view>
|
|
131
|
-
<view v-if="item.biz_code !== 'gift' && item.is_not_show_price !== 'Y'">
|
|
132
|
-
<text>合计:</text>
|
|
133
|
-
<xd-unit
|
|
134
|
-
:isOld="false"
|
|
135
|
-
:price="item.total_amount"
|
|
136
|
-
:color="mainColor"
|
|
137
|
-
:fontSize="28"
|
|
138
|
-
></xd-unit>
|
|
139
|
-
</view>
|
|
140
|
-
<view style="color:#999" v-if="item['main_user_server_amount'] !== undefined && item['main_user_server_amount'] > 0">
|
|
141
|
-
<text>(平台服务费:</text>
|
|
142
|
-
<xd-unit
|
|
143
|
-
:isOld="false"
|
|
144
|
-
:price="item['main_user_server_amount']"
|
|
145
|
-
:fontSize="24"
|
|
146
|
-
:is-gray="true"
|
|
147
|
-
color="#999"
|
|
148
|
-
:icon-size=".25"
|
|
149
|
-
></xd-unit>
|
|
150
|
-
<text>)</text>
|
|
151
|
-
</view>
|
|
152
112
|
</view>
|
|
153
113
|
<view
|
|
154
|
-
class="
|
|
155
|
-
|
|
114
|
+
class="order-list-icon"
|
|
115
|
+
:style="{ bottom: item['isOpen'] ? '-30rpx' : '-54rpx' }"
|
|
116
|
+
v-if="item.products.length > showLen"
|
|
117
|
+
@click.stop="switchOpen(item)"
|
|
156
118
|
>
|
|
157
|
-
<view
|
|
158
|
-
<xd-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
119
|
+
<view :style="{ background: backgroundColor }">
|
|
120
|
+
<xd-font-icon
|
|
121
|
+
color="#666"
|
|
122
|
+
:icon="item['isOpen'] ? 'iconshang_up' : 'iconxia_down'"
|
|
123
|
+
size="24"
|
|
124
|
+
></xd-font-icon>
|
|
163
125
|
</view>
|
|
164
126
|
</view>
|
|
165
127
|
</view>
|
|
166
|
-
|
|
167
|
-
|
|
128
|
+
<view class="jfb-base-order-list__body-order-item-bottom">
|
|
129
|
+
<view>下单时间:{{ item.created_time_text }}</view>
|
|
130
|
+
<view v-if="item.biz_code !== 'gift' && item.is_not_show_price !== 'Y'">
|
|
131
|
+
<text>合计:</text>
|
|
132
|
+
<xd-unit
|
|
133
|
+
:isOld="false"
|
|
134
|
+
:price="item.total_amount"
|
|
135
|
+
:color="mainColor"
|
|
136
|
+
:fontSize="28"
|
|
137
|
+
></xd-unit>
|
|
138
|
+
</view>
|
|
139
|
+
<view style="color:#999" v-if="item['main_user_server_amount'] !== undefined && item['main_user_server_amount'] > 0">
|
|
140
|
+
<text>(平台服务费:</text>
|
|
141
|
+
<xd-unit
|
|
142
|
+
:isOld="false"
|
|
143
|
+
:price="item['main_user_server_amount']"
|
|
144
|
+
:fontSize="24"
|
|
145
|
+
:is-gray="true"
|
|
146
|
+
color="#999"
|
|
147
|
+
:icon-size=".25"
|
|
148
|
+
></xd-unit>
|
|
149
|
+
<text>)</text>
|
|
150
|
+
</view>
|
|
151
|
+
</view>
|
|
168
152
|
<view
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
v-for="item in orderList"
|
|
172
|
-
:key="item.main_order_id"
|
|
173
|
-
:style="{
|
|
174
|
-
background: backgroundColor,
|
|
175
|
-
border: borderBox,
|
|
176
|
-
borderRadius: radius + 'rpx',
|
|
177
|
-
boxShadow: shadowBox,
|
|
178
|
-
marginBottom: padding + 'rpx',
|
|
179
|
-
}"
|
|
153
|
+
class="jfb-base-order-list__body-order-item-pay"
|
|
154
|
+
v-if="item.buttons.length"
|
|
180
155
|
>
|
|
181
|
-
<
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
156
|
+
<view v-for="(btn,index) in item.buttons" :key="btn.key">
|
|
157
|
+
<xd-button
|
|
158
|
+
:type="getBtnType(btn.action)"
|
|
159
|
+
size="mini"
|
|
160
|
+
@click="handleBtnEvent(btn.action, item)"
|
|
161
|
+
>{{ btn.text }}</xd-button>
|
|
162
|
+
</view>
|
|
188
163
|
</view>
|
|
189
|
-
</
|
|
164
|
+
</view>
|
|
190
165
|
</view>
|
|
191
166
|
<view v-else class="jfb-base-order-list__body-no">
|
|
192
167
|
<xd-font-icon
|
|
@@ -214,7 +189,6 @@ import extsMixins from "@/mixins/extsMixins";
|
|
|
214
189
|
import { getContainerPropsValue } from "@/utils/xd.base";
|
|
215
190
|
import getServiceUrl from "@/common/getServiceUrl";
|
|
216
191
|
import Color from "color";
|
|
217
|
-
import XdTfkOrderItem from "./XdTfkOrderItem"
|
|
218
192
|
|
|
219
193
|
export default {
|
|
220
194
|
name: "JfbBaseOrderList",
|
|
@@ -223,7 +197,6 @@ export default {
|
|
|
223
197
|
XdTab,
|
|
224
198
|
XdUnit,
|
|
225
199
|
XdButton,
|
|
226
|
-
XdTfkOrderItem,
|
|
227
200
|
},
|
|
228
201
|
mixins: [componentsMixins, extsMixins, JfbBaseOrderListMixin],
|
|
229
202
|
data() {
|
|
@@ -266,8 +239,6 @@ export default {
|
|
|
266
239
|
right: 0,
|
|
267
240
|
bottom: 0,
|
|
268
241
|
},
|
|
269
|
-
layout_style: "old",
|
|
270
|
-
isShowOrderNo: "Y",
|
|
271
242
|
|
|
272
243
|
noticeBgc:'',
|
|
273
244
|
};
|
|
@@ -344,8 +315,6 @@ export default {
|
|
|
344
315
|
|
|
345
316
|
this.detailPath = getContainerPropsValue(container, "content.detailPath", { value: "" }).value;
|
|
346
317
|
this.payPath = getContainerPropsValue(container, "content.payPath", {value: "",}).value;
|
|
347
|
-
this.layout_style = getContainerPropsValue(container, "content.layout_style", "old");
|
|
348
|
-
this.isShowOrderNo = getContainerPropsValue(container, "content.isShowOrderNo", "Y");
|
|
349
318
|
this.tabList = getContainerPropsValue(container, "content.orderTypeList", []).map((item) => {
|
|
350
319
|
return {
|
|
351
320
|
name: item.customName || item.label,
|