jufubao-base 1.0.232-beta3 → 1.0.232-beta5
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/JfbBaseBalance/Api.js +58 -0
- package/src/components/JfbBaseBalance/Attr.js +48 -0
- package/src/components/JfbBaseBalance/JfbBaseBalance.vue +111 -0
- package/src/components/JfbBaseBalance/JfbBaseBalanceLess.less +79 -0
- package/src/components/JfbBaseBalance/JfbBaseBalanceMixin.js +30 -0
- package/src/components/JfbBaseBalance/Mock.js +13 -0
- package/src/components/JfbBaseCardDelay/JfbBaseCardDelay.vue +30 -29
- package/src/components/JfbBaseCodeOpenVip/Attr.js +229 -27
- package/src/components/JfbBaseCodeOpenVip/JfbBaseCodeOpenVip.vue +111 -9
- package/src/components/JfbBaseConsumpCode/Attr.js +22 -22
- package/src/components/JfbBaseConsumpCode/JfbBaseConsumpCode.vue +580 -34
- package/src/components/JfbBaseLogin/JfbBaseLogin.vue +16 -7
- package/src/components/JfbBaseOpenVip/Attr.js +229 -27
- package/src/components/JfbBaseOpenVip/JfbBaseOpenVip.vue +259 -7
- package/src/components/JfbBaseOpenVip/XdVipList.vue +81 -0
- package/src/components/JfbBaseOpenVipDetail/JfbBaseOpenVipDetail.vue +33 -4
- package/src/components/JfbBasePersonalData/JfbBasePersonalData.vue +98 -33
- package/src/components/JfbBasePointsCard/Attr.js +199 -24
- package/src/components/JfbBasePointsCard/JfbBasePointsCard.vue +209 -29
- package/src/components/JfbBasePointsDetail/Api.js +8 -43
- package/src/components/JfbBasePointsDetail/Attr.js +282 -26
- package/src/components/JfbBasePointsDetail/JfbBasePointsDetail.vue +139 -29
- package/src/components/JfbBaseRechargeOrder/Api.js +3 -13
- package/src/components/JfbBaseRechargeOrder/JfbBaseRechargeOrder.vue +16 -34
- package/src/components/JfbBaseShare/JfbBaseShare.vue +108 -2
- package/src/components/JfbBaseTfkSearch/Attr.js +8 -82
- package/src/components/JfbBaseUserInfo/Attr.js +102 -10
- package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +301 -114
- package/src/components/JfbBaseWithDrawAgain/Api.js +58 -0
- package/src/components/JfbBaseWithDrawAgain/Attr.js +48 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgain.vue +111 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgainLess.less +79 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgainMixin.js +30 -0
- package/src/components/JfbBaseWithDrawAgain/Mock.js +13 -0
- package/src/components/JfbBaseWithDrawRecord/Api.js +58 -0
- package/src/components/JfbBaseWithDrawRecord/Attr.js +48 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecord.vue +111 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecordLess.less +79 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecordMixin.js +30 -0
- package/src/components/JfbBaseWithDrawRecord/Mock.js +13 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<view
|
|
3
|
-
class="jfb-base-points-card"
|
|
4
|
-
@click="handleEditxSelect"
|
|
5
|
-
:class="{ editx : isEditx && active }"
|
|
6
|
-
>
|
|
2
|
+
<view class="jfb-base-points-card" @click="handleEditxSelect" :class="{ editx : isEditx && active }">
|
|
7
3
|
<!--#ifdef H5-->
|
|
8
|
-
<view
|
|
9
|
-
class="jfb-base-points-card__edit"
|
|
10
|
-
:class="{ editx : isEditx && active }"
|
|
11
|
-
v-if="isEditx && active"
|
|
12
|
-
>
|
|
4
|
+
<view class="jfb-base-points-card__edit" :class="{ editx : isEditx && active }" v-if="isEditx && active">
|
|
13
5
|
<view class="jfb-base-points-card__edit-icon" @click="delEdit">删除</view>
|
|
14
6
|
</view>
|
|
15
7
|
<!-- #endif -->
|
|
16
8
|
<view class="jfb-base-points-card__body">
|
|
17
|
-
<view
|
|
9
|
+
<view :style="[bodyStyleComp]" class="jfb-base-points-card__body-list">
|
|
10
|
+
<view :style="[itemStyleComp]" @click="handleTo(item)" v-for="(item,index) in typeList" :key="index" class="jfb-base-points-card__body-list-item">
|
|
11
|
+
<view class="jfb-base-points-card__body-list-item-label">
|
|
12
|
+
{{item.label}}
|
|
13
|
+
<view :style="{background:is_vip==='N'?mainColor:'',color:is_vip==='N'?'#fff':''}" class="jfb-base-points-card__body-list-item-operate" v-if="item.operate">{{item.operate}}</view>
|
|
14
|
+
</view>
|
|
15
|
+
<view class="jfb-base-points-card__body-list-item-value">{{item.value}}</view>
|
|
16
|
+
</view>
|
|
17
|
+
</view>
|
|
18
18
|
</view>
|
|
19
19
|
</view>
|
|
20
20
|
</template>
|
|
@@ -34,10 +34,59 @@
|
|
|
34
34
|
mixins: [
|
|
35
35
|
componentsMixins, extsMixins, JfbBasePointsCardMixin
|
|
36
36
|
],
|
|
37
|
+
computed: {
|
|
38
|
+
bodyStyleComp() {
|
|
39
|
+
return {
|
|
40
|
+
background: this.is_vip === 'Y' ? this.plusBodyBgColor : this.normalBodyBgColor,
|
|
41
|
+
borderRadius: `${this.radius}rpx`,
|
|
42
|
+
margin: this.getMarginAndPadding(this.margin, 20),
|
|
43
|
+
padding: this.getMarginAndPadding(this.padding, 32),
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
itemStyleComp() {
|
|
47
|
+
return {
|
|
48
|
+
background: this.is_vip === 'Y' ? this.plusItemBgColor : this.normalItemBgColor,
|
|
49
|
+
borderRadius: `${this.itemRadius}rpx`,
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
37
53
|
data() {
|
|
38
54
|
return {
|
|
39
|
-
|
|
40
|
-
|
|
55
|
+
isPoints: '',
|
|
56
|
+
isYue: '',
|
|
57
|
+
isConpon: '',
|
|
58
|
+
typeList: [
|
|
59
|
+
{
|
|
60
|
+
label: "积分",
|
|
61
|
+
key: "points",
|
|
62
|
+
value: 0
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
label: "余额",
|
|
66
|
+
key: "yue",
|
|
67
|
+
operate: '提现',
|
|
68
|
+
value: 0
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
label: "优惠券",
|
|
72
|
+
key: "conpon",
|
|
73
|
+
value: 0
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
is_vip: 'N',
|
|
77
|
+
plusBodyBgColor: '',
|
|
78
|
+
plusItemBgColor: '',
|
|
79
|
+
normalBodyBgColor: '',
|
|
80
|
+
normalItemBgColor: '',
|
|
81
|
+
is_plus_preview: 'N',
|
|
82
|
+
radius: 0,
|
|
83
|
+
itemRadius: 0,
|
|
84
|
+
margin: {},
|
|
85
|
+
padding: {},
|
|
86
|
+
is_vip: 'N',
|
|
87
|
+
pointsPath: '',
|
|
88
|
+
withdrawPath: '',
|
|
89
|
+
couponPath: '',
|
|
41
90
|
}
|
|
42
91
|
},
|
|
43
92
|
watch: {
|
|
@@ -45,6 +94,67 @@
|
|
|
45
94
|
if (JSON.stringify(value) === JSON.stringify(oldValue)) return;
|
|
46
95
|
if (this.$configProject['isPreview']) this.init(value)
|
|
47
96
|
},
|
|
97
|
+
isPoints(n, o) {
|
|
98
|
+
if (n === "Y") {
|
|
99
|
+
let flag = this.typeList.find((item) => item.key === "points");
|
|
100
|
+
if (!flag) {
|
|
101
|
+
this.typeList.splice(0, 0, {
|
|
102
|
+
label: "积分",
|
|
103
|
+
key: "points",
|
|
104
|
+
operate: '兑换'
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
} else {
|
|
108
|
+
let flagIndex = this.typeList.findIndex(
|
|
109
|
+
(item) => item.key === "points"
|
|
110
|
+
);
|
|
111
|
+
if (flagIndex !== -1) {
|
|
112
|
+
this.typeList.splice(flagIndex, 1);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
isYue(n, o) {
|
|
117
|
+
if (n === "Y") {
|
|
118
|
+
let flag = this.typeList.find((item) => item.key === "yue");
|
|
119
|
+
if (!flag) {
|
|
120
|
+
this.typeList.splice(1, 0, {
|
|
121
|
+
label: "余额",
|
|
122
|
+
key: "yue",
|
|
123
|
+
operate: '提现'
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
} else {
|
|
127
|
+
let flagIndex = this.typeList.findIndex(
|
|
128
|
+
(item) => item.key === "yue"
|
|
129
|
+
);
|
|
130
|
+
if (flagIndex !== -1) {
|
|
131
|
+
this.typeList.splice(flagIndex, 1);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
isConpon(n, o) {
|
|
136
|
+
if (n === "Y") {
|
|
137
|
+
let flag = this.typeList.find((item) => item.key === "conpon");
|
|
138
|
+
if (!flag) {
|
|
139
|
+
this.typeList.splice(2, 0, {
|
|
140
|
+
label: "优惠券",
|
|
141
|
+
key: "conpon",
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
} else {
|
|
145
|
+
let flagIndex = this.typeList.findIndex(
|
|
146
|
+
(item) => item.key === "conpon"
|
|
147
|
+
);
|
|
148
|
+
if (flagIndex !== -1) {
|
|
149
|
+
this.typeList.splice(flagIndex, 1);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
is_plus_preview() {
|
|
154
|
+
if (this.$configProject['isPreview']) {
|
|
155
|
+
this.is_vip = this.is_plus_preview
|
|
156
|
+
}
|
|
157
|
+
}
|
|
48
158
|
},
|
|
49
159
|
created() {
|
|
50
160
|
this.init(this.container);
|
|
@@ -53,26 +163,53 @@
|
|
|
53
163
|
},
|
|
54
164
|
methods: {
|
|
55
165
|
onJfbLoad(options) {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
166
|
+
this.typeList = this.typeList.map(item => {
|
|
167
|
+
if (item.key === 'points') {
|
|
168
|
+
// item.value = 'score_amount'
|
|
169
|
+
item.value = 89144
|
|
170
|
+
}
|
|
171
|
+
if (item.key === 'yue') {
|
|
172
|
+
// item.value = 'total_amount'
|
|
173
|
+
item.value = 4545
|
|
174
|
+
}
|
|
175
|
+
if (item.key === 'conpon') {
|
|
176
|
+
// item.value = 'coupon_count'
|
|
177
|
+
item.value = 3
|
|
178
|
+
}
|
|
179
|
+
return item
|
|
180
|
+
})
|
|
66
181
|
},
|
|
67
182
|
/**
|
|
68
183
|
* @description 监听事件变化
|
|
69
184
|
* @param container {object} 业务组件对象自己
|
|
70
185
|
*/
|
|
71
186
|
init(container) {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
187
|
+
this.isPoints = getContainerPropsValue(container, "content.isPoints", "Y");
|
|
188
|
+
this.isYue = getContainerPropsValue(container, "content.isYue", "Y");
|
|
189
|
+
this.isConpon = getContainerPropsValue(container, "content.isConpon", "Y");
|
|
190
|
+
this.plusBodyBgColor = getContainerPropsValue(container, 'content.plusBodyBgColor', 'linear-gradient(180deg, #FFFCF8 0%, #FFF3E2 100%)');
|
|
191
|
+
this.plusItemBgColor = getContainerPropsValue(container, 'content.plusItemBgColor', 'linear-gradient(136.55deg, #FFECD1 0%, #F6D6AB 100%)');
|
|
192
|
+
this.normalBodyBgColor = getContainerPropsValue(container, 'content.normalBodyBgColor', '#fff');
|
|
193
|
+
this.normalItemBgColor = getContainerPropsValue(container, 'content.normalItemBgColor', '#F7F7F7');
|
|
194
|
+
this.is_plus_preview = getContainerPropsValue(container, 'content.is_plus_preview', 'N');
|
|
195
|
+
this.radius = getContainerPropsValue(container, 'content.radius', '20');
|
|
196
|
+
this.itemRadius = getContainerPropsValue(container, 'content.itemRadius', '16');
|
|
197
|
+
this.margin = getContainerPropsValue(container, 'content.bodyMargin', {});
|
|
198
|
+
this.padding = getContainerPropsValue(container, 'content.bodyPadding', {});
|
|
199
|
+
this.pointsPath = getContainerPropsValue(container, 'content.pointsPath', { value: "" }).value;
|
|
200
|
+
this.withdrawPath = getContainerPropsValue(container, 'content.withdrawPath', { value: "" }).value;
|
|
201
|
+
this.couponPath = getContainerPropsValue(container, 'content.couponPath', { value: "" }).value;
|
|
202
|
+
},
|
|
203
|
+
handleTo(item) {
|
|
204
|
+
if (item.key === 'points') {
|
|
205
|
+
this.$router.push(this.pointsPath)
|
|
206
|
+
}
|
|
207
|
+
if (item.key === 'yue') {
|
|
208
|
+
this.$router.push(this.withdrawPath)
|
|
209
|
+
}
|
|
210
|
+
if (item.key === 'conpon') {
|
|
211
|
+
this.$router.push(this.couponPath)
|
|
212
|
+
}
|
|
76
213
|
},
|
|
77
214
|
onJfbScroll(options) {
|
|
78
215
|
console.log('event.onJfbScroll', options)
|
|
@@ -104,8 +241,51 @@
|
|
|
104
241
|
@import "./JfbBasePointsCardLess.less";
|
|
105
242
|
|
|
106
243
|
.jfb-base-points-card {
|
|
107
|
-
&__body{
|
|
244
|
+
&__body {
|
|
245
|
+
&-list {
|
|
246
|
+
display: flex;
|
|
247
|
+
justify-content: center;
|
|
248
|
+
align-items: center;
|
|
249
|
+
background: linear-gradient(180deg, #FFFCF8 0%, #FFF3E2 100%);
|
|
108
250
|
|
|
251
|
+
&-item:last-child {
|
|
252
|
+
margin-right: 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
&-item {
|
|
256
|
+
flex: 1;
|
|
257
|
+
display: flex;
|
|
258
|
+
flex-direction: column;
|
|
259
|
+
justify-content: center;
|
|
260
|
+
align-items: center;
|
|
261
|
+
padding: 20rpx 0;
|
|
262
|
+
margin-right: 32rpx;
|
|
263
|
+
background: linear-gradient(136.55deg, #FFECD1 0%, #F6D6AB 100%);
|
|
264
|
+
border-radius: 16rpx;
|
|
265
|
+
font-size: 24rpx;
|
|
266
|
+
|
|
267
|
+
&-label {
|
|
268
|
+
display: flex;
|
|
269
|
+
margin-bottom: 8rpx;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&-operate {
|
|
273
|
+
background: linear-gradient(90deg, #333231 0%, #6C5A46 100%);
|
|
274
|
+
border-radius: 24rpx;
|
|
275
|
+
padding: 4rpx 8rpx;
|
|
276
|
+
color: #F8DCB4;
|
|
277
|
+
font-size: 20rpx;
|
|
278
|
+
margin-left: 8rpx;
|
|
279
|
+
text-align: center;
|
|
280
|
+
vertical-align: middle;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
&-value {
|
|
284
|
+
color: #333332;
|
|
285
|
+
font-weight: 700;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
109
289
|
}
|
|
110
290
|
}
|
|
111
|
-
</style>
|
|
291
|
+
</style>
|
|
@@ -6,51 +6,16 @@
|
|
|
6
6
|
*/
|
|
7
7
|
module.exports = [
|
|
8
8
|
{
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
path: '/api/account/film/list-film-square',
|
|
9
|
+
mapFnName: 'getListBaseNewsContent', //自定义方法名字(必选)
|
|
10
|
+
title: '获取内容',
|
|
11
|
+
path: '/cms/v1/news-content',
|
|
13
12
|
isRule: false,
|
|
14
13
|
params: {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
//设置方法名字当别忘记加上【模块名字】:Points
|
|
23
|
-
mapFnName: 'updatePointsFilmPaiqiDate',
|
|
24
|
-
title: '更新排期',
|
|
25
|
-
path: '/api/account/film/paiqi-date',
|
|
26
|
-
isRule: false,
|
|
27
|
-
params: {
|
|
28
|
-
film_id: ['电影id', 'Number', '必选'],
|
|
29
|
-
cinema_id: ['影院id', 'Number', '必选'],
|
|
30
|
-
},
|
|
31
|
-
isConsole: true,
|
|
32
|
-
disabled: true,
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
//设置方法名字当别忘记加上【模块名字】:Points
|
|
36
|
-
mapFnName: 'removePointsFilmAddress',
|
|
37
|
-
title: '删除我的配送地址',
|
|
38
|
-
path: '/api/account/film/paiqi-date',
|
|
39
|
-
isRule: false,
|
|
40
|
-
params: {
|
|
41
|
-
film_id: ['电影id', 'Number', '必选'],
|
|
42
|
-
},
|
|
43
|
-
isConsole: true,
|
|
44
|
-
disabled: true,
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
//设置方法名字当别忘记加上【模块名字】:Points
|
|
48
|
-
mapFnName: 'addPointsFilmcart',
|
|
49
|
-
title: '添加购物车',
|
|
50
|
-
path: '/api/account/film/paiqi-date',
|
|
51
|
-
isRule: false,
|
|
52
|
-
params: {
|
|
53
|
-
film_id: ['电影id', 'Number', '必选'],
|
|
14
|
+
scene: ['使用场景', 'String', '选填'],
|
|
15
|
+
container_id: ['插件ID', 'String', '必填'],
|
|
16
|
+
page_id: ['页面ID', 'String', '必填'],
|
|
17
|
+
page_size: ['记录条数', 'Number', '必填', 1],
|
|
18
|
+
code: ['业务线id', 'String', '选填'],
|
|
54
19
|
},
|
|
55
20
|
isConsole: true,
|
|
56
21
|
disabled: true,
|
|
@@ -8,41 +8,297 @@ export default {
|
|
|
8
8
|
content: (data) => {
|
|
9
9
|
return [
|
|
10
10
|
{
|
|
11
|
-
label: '
|
|
12
|
-
ele: 'xd-
|
|
13
|
-
valueKey: '
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
label: '外边距:',
|
|
12
|
+
ele: 'xd-margin-padding',
|
|
13
|
+
valueKey: 'bodyMargin',
|
|
14
|
+
groupKey: 'style',
|
|
15
|
+
value: data['bodyMargin'] || null,
|
|
16
|
+
setting: {
|
|
17
|
+
type: 'margin',
|
|
18
|
+
},
|
|
19
|
+
placeholder: '请设置外边距',
|
|
20
|
+
inline: false,
|
|
21
|
+
notice: '设置外边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">0</span>像素',
|
|
17
22
|
},
|
|
18
23
|
{
|
|
19
|
-
label: '
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
value: data['select-pages-path'] || null,
|
|
24
|
+
label: '外填充:',
|
|
25
|
+
ele: 'xd-margin-padding',
|
|
26
|
+
valueKey: 'bodyPadding',
|
|
27
|
+
groupKey: 'style',
|
|
28
|
+
value: data['bodyPadding'] || null,
|
|
25
29
|
setting: {
|
|
26
|
-
|
|
30
|
+
type: 'padding',
|
|
27
31
|
},
|
|
32
|
+
placeholder: '请设置外填充',
|
|
33
|
+
inline: false,
|
|
34
|
+
notice: '设置填充值,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
|
|
28
35
|
},
|
|
29
|
-
|
|
30
|
-
label: '
|
|
31
|
-
ele: '
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
placeholder: '
|
|
36
|
+
{
|
|
37
|
+
label: '圆角设置:',
|
|
38
|
+
ele: 'xd-site-select-list',
|
|
39
|
+
valueKey: 'radius',
|
|
40
|
+
value: data['radius'] || '20',
|
|
41
|
+
labelInline: true,
|
|
42
|
+
groupKey: 'style',
|
|
43
|
+
placeholder: '请选择圆角设置',
|
|
44
|
+
multiple: false,
|
|
37
45
|
className: 'input60',
|
|
46
|
+
handleCustom({ action, data }) {
|
|
47
|
+
XdBus.getParentApi('getOptionsSettingList')({
|
|
48
|
+
setting_id: 'edtix_style_radius',
|
|
49
|
+
key: Date.now()
|
|
50
|
+
})
|
|
51
|
+
.then(res => {
|
|
52
|
+
data.cb(res.list)
|
|
53
|
+
})
|
|
54
|
+
.catch(error => {
|
|
55
|
+
console.error(error);
|
|
56
|
+
});
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
label: "边框设置:",
|
|
61
|
+
ele: "xd-border",
|
|
62
|
+
valueKey: "bodyBorder",
|
|
63
|
+
value: data['bodyBorder'] || { type: 'Y', value: { color: '#eee', style: "solid", width: '1' } },
|
|
64
|
+
className: 'input80',
|
|
65
|
+
groupKey: 'style',
|
|
38
66
|
},
|
|
39
67
|
{
|
|
40
|
-
label: '',
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
68
|
+
label: '背景颜色:',
|
|
69
|
+
ele: 'xd-color',
|
|
70
|
+
valueKey: 'bgColor',
|
|
71
|
+
groupKey: 'style',
|
|
72
|
+
value: data['bgColor'] || null,
|
|
73
|
+
placeholder: '请选择背景颜色',
|
|
74
|
+
labelInline: true,
|
|
75
|
+
classNmae: 'input80',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
label: '公告内容:',
|
|
79
|
+
ele: 'xd-site-news',
|
|
80
|
+
valueKey: 'notice',
|
|
81
|
+
groupKey: 'content',
|
|
82
|
+
value: data.notice || null,
|
|
83
|
+
className: 'input70',
|
|
84
|
+
setting: {
|
|
85
|
+
config: {
|
|
86
|
+
sort: true,
|
|
87
|
+
maxlen: 100,
|
|
88
|
+
action: 'aliyun',
|
|
89
|
+
size: 5,
|
|
90
|
+
tipsformet: '上传文件格式:@imageType@,不超过@size@MB.',
|
|
91
|
+
uploadType: 'aliyun',
|
|
92
|
+
type: ['jpg', 'png', 'jpeg']
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
handleCustom({ action, data }) {
|
|
96
|
+
if (data && data.params) {
|
|
97
|
+
//当一个插件中出现使用内容分类时候需要设置code值,在页面引用时候容器id + code进行拼接
|
|
98
|
+
//data.params = Object.assign({}, data.params, {code: 'g_test_id'});
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
//获取返回参数(场景类型名称为必填)
|
|
102
|
+
//获取返回参数(场景类型名称为必填)
|
|
103
|
+
let loading = { close() { } }
|
|
104
|
+
|
|
105
|
+
//获取显示内容
|
|
106
|
+
if (action === 'screen') {
|
|
107
|
+
XdBus.getParentApi('getOptionsSettingList')({ setting_id: 'edtix_bucket_content_tip' })
|
|
108
|
+
.then(res => {
|
|
109
|
+
loading.close();
|
|
110
|
+
data.cb(res['list'])
|
|
111
|
+
})
|
|
112
|
+
.catch(error => {
|
|
113
|
+
console.error(error);
|
|
114
|
+
loading.close();
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
//获取返回参数(广告位高度必选项)
|
|
120
|
+
if (action === 'getNewsInfo') {
|
|
121
|
+
XdBus.getParentApi('cmsGetPublishEditxContent')(data.params)
|
|
122
|
+
.then(res => {
|
|
123
|
+
loading.close()
|
|
124
|
+
data.cb({ list: res.list, selectId: res.selected })
|
|
125
|
+
})
|
|
126
|
+
.catch(error => {
|
|
127
|
+
loading.close()
|
|
128
|
+
console.error(error);
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
//获取产品业务线列表
|
|
133
|
+
if (action === 'namespace') {
|
|
134
|
+
XdBus.getParentApi('getOptionsNamespaces')({})
|
|
135
|
+
.then(res => {
|
|
136
|
+
loading.close()
|
|
137
|
+
data.cb(res['list'])
|
|
138
|
+
})
|
|
139
|
+
.catch(error => {
|
|
140
|
+
loading.close()
|
|
141
|
+
console.error(error);
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
//使用内容分类
|
|
146
|
+
if (action === 'cmsPublishEditxContent') {
|
|
147
|
+
loading = XdBus.getParentApi('loading')({});
|
|
148
|
+
XdBus.getParentApi('cmsPublishEditxContent')(data.params)
|
|
149
|
+
.then(res => {
|
|
150
|
+
console.log('cmsPublishEditxContent', res)
|
|
151
|
+
loading.close();
|
|
152
|
+
data.cb(res)
|
|
153
|
+
})
|
|
154
|
+
.catch(error => {
|
|
155
|
+
loading.close();
|
|
156
|
+
console.error(error);
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
//位置列表
|
|
161
|
+
if (action === 'getListPostion') {
|
|
162
|
+
loading = XdBus.getParentApi('loading')({});
|
|
163
|
+
XdBus.getParentApi('getListNewsPosition')(data.params)
|
|
164
|
+
.then(res => {
|
|
165
|
+
loading.close();
|
|
166
|
+
data.cb(res)
|
|
167
|
+
})
|
|
168
|
+
.catch(error => {
|
|
169
|
+
loading.close();
|
|
170
|
+
console.error(error);
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
//位置创建
|
|
175
|
+
if (action === 'addPostion') {
|
|
176
|
+
loading = XdBus.getParentApi('loading')({});
|
|
177
|
+
XdBus.getParentApi('addNewsPosition')(data.params)
|
|
178
|
+
.then(res => {
|
|
179
|
+
loading.close();
|
|
180
|
+
data.cb(true)
|
|
181
|
+
})
|
|
182
|
+
.catch(error => {
|
|
183
|
+
console.error(error);
|
|
184
|
+
loading.close();
|
|
185
|
+
data.cb(false)
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
//位置编辑
|
|
190
|
+
if (action === 'editPostion') {
|
|
191
|
+
loading = XdBus.getParentApi('loading')({});
|
|
192
|
+
XdBus.getParentApi('updateNewsPosition')(data.params)
|
|
193
|
+
.then(res => {
|
|
194
|
+
loading.close();
|
|
195
|
+
data.cb(true)
|
|
196
|
+
})
|
|
197
|
+
.catch(error => {
|
|
198
|
+
console.error(error);
|
|
199
|
+
loading.close();
|
|
200
|
+
data.cb(false)
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
//位置删除
|
|
205
|
+
if (action === 'deleltePostion') {
|
|
206
|
+
loading = XdBus.getParentApi('loading')({});
|
|
207
|
+
XdBus.getParentApi('deleteNewsPosition')(data.params)
|
|
208
|
+
.then(res => {
|
|
209
|
+
loading.close();
|
|
210
|
+
data.cb(true)
|
|
211
|
+
})
|
|
212
|
+
.catch(error => {
|
|
213
|
+
console.error(error);
|
|
214
|
+
loading.close();
|
|
215
|
+
data.cb(false)
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
//获取广告位内容列表
|
|
220
|
+
if (action === 'getListContent') {
|
|
221
|
+
loading = XdBus.getParentApi('loading')({});
|
|
222
|
+
XdBus.getParentApi('getListNewsContent')(data.params)
|
|
223
|
+
.then(res => {
|
|
224
|
+
loading.close();
|
|
225
|
+
data.cb(res)
|
|
226
|
+
})
|
|
227
|
+
.catch(error => {
|
|
228
|
+
loading.close();
|
|
229
|
+
console.error(error);
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
//广告内容创建
|
|
234
|
+
if (action === 'addContent') {
|
|
235
|
+
loading = XdBus.getParentApi('loading')({});
|
|
236
|
+
XdBus.getParentApi('addNewsContent')(data.params)
|
|
237
|
+
.then(res => {
|
|
238
|
+
loading.close();
|
|
239
|
+
data.cb(true)
|
|
240
|
+
})
|
|
241
|
+
.catch(error => {
|
|
242
|
+
console.error(error);
|
|
243
|
+
loading.close();
|
|
244
|
+
data.cb(false)
|
|
245
|
+
});
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
//广告内容编辑
|
|
249
|
+
if (action === 'editContent') {
|
|
250
|
+
loading = XdBus.getParentApi('loading')({});
|
|
251
|
+
XdBus.getParentApi('updateNewsContent')(data.params)
|
|
252
|
+
.then(res => {
|
|
253
|
+
loading.close();
|
|
254
|
+
data.cb(true)
|
|
255
|
+
})
|
|
256
|
+
.catch(error => {
|
|
257
|
+
console.error(error);
|
|
258
|
+
loading.close();
|
|
259
|
+
data.cb(false)
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
//广告内容删除
|
|
264
|
+
if (action === 'deleteContent') {
|
|
265
|
+
loading = XdBus.getParentApi('loading')({});
|
|
266
|
+
XdBus.getParentApi('deleteNewsContent')(data.params)
|
|
267
|
+
.then(res => {
|
|
268
|
+
loading.close();
|
|
269
|
+
data.cb(true)
|
|
270
|
+
})
|
|
271
|
+
.catch(error => {
|
|
272
|
+
console.error(error);
|
|
273
|
+
loading.close();
|
|
274
|
+
data.cb(false)
|
|
275
|
+
});
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
//内容发布
|
|
279
|
+
if (action === 'publish') {
|
|
280
|
+
loading = XdBus.getParentApi('loading')({});
|
|
281
|
+
console.log('publish', data.params)
|
|
282
|
+
XdBus.getParentApi('cmsPublishContent')(data.params)
|
|
283
|
+
.then(res => {
|
|
284
|
+
loading.close();
|
|
285
|
+
data.cb(res)
|
|
286
|
+
})
|
|
287
|
+
.catch(error => {
|
|
288
|
+
loading.close();
|
|
289
|
+
console.error(error);
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
//通知页面进行刷新
|
|
294
|
+
if (action === 'update') {
|
|
295
|
+
loading = XdBus.getParentApi('loading')({});
|
|
296
|
+
XdBus.getParentApi('getXdBusUpdateView')('onUpdateView', {});
|
|
297
|
+
loading.close()
|
|
298
|
+
}
|
|
299
|
+
},
|
|
44
300
|
},
|
|
45
|
-
].filter(i=>i)
|
|
301
|
+
].filter(i => i)
|
|
46
302
|
},
|
|
47
303
|
advanced: [],
|
|
48
304
|
};
|