jufubao-base 1.0.232-beta4 → 1.0.232-beta6

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.
Files changed (46) hide show
  1. package/package.json +1 -1
  2. package/src/components/JfbBaseBalance/Api.js +18 -30
  3. package/src/components/JfbBaseBalance/Attr.js +292 -24
  4. package/src/components/JfbBaseBalance/JfbBaseBalance.vue +250 -32
  5. package/src/components/JfbBaseCodeOpenVip/Api.js +17 -39
  6. package/src/components/JfbBaseCodeOpenVip/Attr.js +19 -0
  7. package/src/components/JfbBaseCodeOpenVip/JfbBaseCodeOpenVip.vue +54 -25
  8. package/src/components/JfbBaseConsumpCode/JfbBaseConsumpCode.vue +2 -2
  9. package/src/components/JfbBaseOpenVip/Api.js +11 -40
  10. package/src/components/JfbBaseOpenVip/Attr.js +4 -4
  11. package/src/components/JfbBaseOpenVip/JfbBaseOpenVip.vue +69 -26
  12. package/src/components/JfbBaseOpenVip/Mock.js +16 -9
  13. package/src/components/JfbBaseOpenVip/XdVipList.vue +44 -6
  14. package/src/components/JfbBaseOpenVipDetail/Api.js +17 -39
  15. package/src/components/JfbBaseOpenVipDetail/Attr.js +16 -27
  16. package/src/components/JfbBaseOpenVipDetail/JfbBaseOpenVipDetail.vue +110 -25
  17. package/src/components/JfbBasePersonalData/Api.js +9 -41
  18. package/src/components/JfbBasePersonalData/Attr.js +1 -37
  19. package/src/components/JfbBasePersonalData/JfbBasePersonalData.vue +119 -32
  20. package/src/components/JfbBasePointsCard/Api.js +4 -44
  21. package/src/components/JfbBasePointsCard/Attr.js +0 -48
  22. package/src/components/JfbBasePointsCard/JfbBasePointsCard.vue +24 -107
  23. package/src/components/JfbBasePointsCard/Mock.js +1 -9
  24. package/src/components/JfbBasePointsDetail/Api.js +25 -0
  25. package/src/components/JfbBasePointsDetail/JfbBasePointsDetail.vue +65 -20
  26. package/src/components/JfbBasePointsDetail/Mock.js +2 -8
  27. package/src/components/JfbBaseSavingDetail/Api.js +12 -29
  28. package/src/components/JfbBaseSavingDetail/Attr.js +44 -22
  29. package/src/components/JfbBaseSavingDetail/JfbBaseSavingDetail.vue +593 -29
  30. package/src/components/JfbBaseSavingDetail/components/echarts.min.js +26 -0
  31. package/src/components/JfbBaseSavingDetail/components/echarts.vue +254 -0
  32. package/src/components/JfbBaseSavingDetail/components/wx-canvas.js +105 -0
  33. package/src/components/JfbBaseShare/Api.js +5 -43
  34. package/src/components/JfbBaseShare/JfbBaseShare.vue +14 -13
  35. package/src/components/JfbBaseTfkSearch/ContentProduct.vue +1 -20
  36. package/src/components/JfbBaseTfkSearch/JfbBaseTfkSearch.vue +5 -0
  37. package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +6 -2
  38. package/src/components/JfbBaseWithDrawAgain/Api.js +13 -30
  39. package/src/components/JfbBaseWithDrawAgain/Attr.js +70 -26
  40. package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgain.vue +255 -32
  41. package/src/components/JfbBaseWithDrawRecord/Api.js +4 -43
  42. package/src/components/JfbBaseWithDrawRecord/Attr.js +56 -25
  43. package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecord.vue +151 -34
  44. package/src/components/JfbBaseWithdraw/Api.js +20 -30
  45. package/src/components/JfbBaseWithdraw/Attr.js +304 -24
  46. package/src/components/JfbBaseWithdraw/JfbBaseWithdraw.vue +166 -32
@@ -0,0 +1,254 @@
1
+ <template>
2
+ <!-- #ifdef MP-WEIXIN || MP-TOUTIAO -->
3
+ <canvas type="2d" class="echarts" :canvas-id="canvasId" :id="canvasId" @touchstart="touchStart"
4
+ @touchmove="touchMove" @touchend="touchEnd" />
5
+ <!-- #endif -->
6
+ <!-- #ifndef MP-WEIXIN || MP-TOUTIAO -->
7
+ <canvas :key="canvasId" style="border-radius: 20rpx;" class="echarts" :canvas-id="canvasId" :id="canvasId" @touchstart="touchStart" @touchmove="touchMove"
8
+ @touchend="touchEnd" />
9
+ <!-- #endif -->
10
+
11
+ </template>
12
+ <script>
13
+
14
+ /**
15
+ * echartsForUniApp echart兼容uni-app
16
+ * @description echart兼容uni-app
17
+ * @property {Object} option 图表数据
18
+ * @property {String} canvasId 画布id
19
+ * @example <echarts ref="echarts" :option="option" canvasId="echarts"></echarts>
20
+ */
21
+ import WxCanvas from './wx-canvas.js';
22
+ import * as echarts from './echarts.min.js';
23
+
24
+ var chartList = {}
25
+ export default {
26
+ props: {
27
+ canvasId: {
28
+ type: String,
29
+ default: 'echarts'
30
+ },
31
+ option: {
32
+ type: Object,
33
+ default: () => {
34
+ return {}
35
+ }
36
+ },
37
+ },
38
+ watch: {
39
+ option(newValue, oldValue) {
40
+ if(newValue.series){
41
+ this.initChart(newValue)
42
+ }
43
+ }
44
+ },
45
+ data() {
46
+ return {
47
+ ctx:null
48
+ }
49
+ },
50
+
51
+ mounted() {
52
+ // Disable prograssive because drawImage doesn't support DOM as parameter
53
+ // See https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.drawImage.html
54
+ console.log(echarts,'echartsechartsecharts');
55
+
56
+ echarts.registerPreprocessor(option => {
57
+ console.log(option,'optionoptionoption');
58
+
59
+ if (option && option.series) {
60
+ if (option.series.length > 0) {
61
+ option.series.forEach(series => {
62
+ series.progressive = 0;
63
+ });
64
+ } else if (typeof option.series === 'object') {
65
+ option.series.progressive = 0;
66
+ }
67
+ }
68
+ });
69
+
70
+ },
71
+
72
+ methods: {
73
+ getCanvasAttr2d() {
74
+ return new Promise((resolve, reject) => {
75
+ const query = uni.createSelectorQuery().in(this)
76
+ query
77
+ .select('#' + this.canvasId)
78
+ .fields({
79
+ node: true,
80
+ size: true
81
+ })
82
+ .exec(res => {
83
+ const canvasNode = res[0].node
84
+ this.canvasNode = canvasNode
85
+ const canvasDpr = uni.getSystemInfoSync().pixelRatio
86
+ const canvasWidth = res[0].width
87
+ const canvasHeight = res[0].height
88
+ const canvasRadius = res[0].borderRadius
89
+ this.ctx = canvasNode.getContext('2d')
90
+
91
+ const canvas = new WxCanvas(this.ctx, this.canvasId, true, canvasNode)
92
+ echarts.setCanvasCreator(() => {
93
+ return canvas
94
+ })
95
+ resolve({
96
+ canvas,
97
+ canvasWidth,
98
+ canvasHeight,
99
+ canvasDpr,
100
+ canvasRadius
101
+ })
102
+ })
103
+ });
104
+ },
105
+ getCanvasAttr() {
106
+ return new Promise((resolve, reject) => {
107
+ this.ctx = uni.createCanvasContext(this.canvasId, this);
108
+ var canvas = new WxCanvas(this.ctx, this.canvasId, false);
109
+ echarts.setCanvasCreator(() => {
110
+ return canvas;
111
+ });
112
+ const canvasDpr = 1
113
+ var query = uni.createSelectorQuery()
114
+ // #ifndef MP-ALIPAY
115
+ .in(this)
116
+ // #endif
117
+ query.select('#' + this.canvasId).boundingClientRect(res => {
118
+ const canvasWidth = res.width
119
+ const canvasHeight = res.height
120
+ const canvasRadius = res.borderRadius
121
+ resolve({
122
+ canvas,
123
+ canvasWidth,
124
+ canvasHeight,
125
+ canvasDpr,
126
+ canvasRadius
127
+ })
128
+ }).exec();
129
+ });
130
+ },
131
+ // #ifdef H5
132
+ //H5绘制图表
133
+ initChart(option) {
134
+ this.ctx = uni.createCanvasContext(this.canvasId, this);
135
+ chartList[this.canvasId] = echarts.init(document.getElementById(this.canvasId));
136
+ chartList[this.canvasId].setOption(option?option:this.option);
137
+ console.log(chartList[this.canvasId],this.canvasId,'canvasIdcanvasId');
138
+ },
139
+ //H5生成图片
140
+ canvasToTempFilePath(opt) {
141
+ const base64 = chartList[this.canvasId].getDataURL()
142
+ opt.success && opt.success({tempFilePath:base64})
143
+ },
144
+ // #endif
145
+ // #ifndef H5
146
+ //绘制图表
147
+ async initChart(option) {
148
+ // #ifdef MP-WEIXIN || MP-TOUTIAO
149
+ const canvasAttr = await this.getCanvasAttr2d();
150
+ // #endif
151
+ // #ifndef MP-WEIXIN || MP-TOUTIAO
152
+ const canvasAttr = await this.getCanvasAttr();
153
+ // #endif
154
+ const {
155
+ canvas,
156
+ canvasWidth,
157
+ canvasHeight,
158
+ canvasDpr,
159
+ canvasRadius
160
+ } = canvasAttr
161
+ chartList[this.canvasId] = echarts.init(canvas, null, {
162
+ width: canvasWidth,
163
+ height: canvasHeight,
164
+ devicePixelRatio: canvasDpr, // new
165
+ borderRadius: canvasRadius
166
+ });
167
+ canvas.setChart(chartList[this.canvasId]);
168
+ chartList[this.canvasId].setOption(option?option:this.option);
169
+ },
170
+ //生成图片
171
+ canvasToTempFilePath(opt) {
172
+ // #ifdef MP-WEIXIN || MP-TOUTIAO
173
+ var query = uni.createSelectorQuery()
174
+ // #ifndef MP-ALIPAY
175
+ .in(this)
176
+ // #endif
177
+ query.select('#' + this.canvasId).fields({ node: true, size: true }).exec(res => {
178
+ const canvasNode = res[0].node
179
+ opt.canvas = canvasNode
180
+ uni.canvasToTempFilePath(opt, this)
181
+ })
182
+ // #endif
183
+ // #ifndef MP-WEIXIN || MP-TOUTIAO
184
+ if (!opt.canvasId) {
185
+ opt.canvasId = this.canvasId;
186
+ }
187
+ this.ctx.draw(true, () => {
188
+ uni.canvasToTempFilePath(opt, this);
189
+ });
190
+ // #endif
191
+ },
192
+ // #endif
193
+
194
+ touchStart(e) {
195
+ if (chartList[this.canvasId] && e.touches.length > 0) {
196
+ var touch = e.touches[0];
197
+ var handler = chartList[this.canvasId].getZr().handler;
198
+ handler.dispatch('mousedown', {
199
+ zrX: touch.x,
200
+ zrY: touch.y
201
+ });
202
+ handler.dispatch('mousemove', {
203
+ zrX: touch.x,
204
+ zrY: touch.y
205
+ });
206
+ handler.processGesture(wrapTouch(e), 'start');
207
+ }
208
+ },
209
+ touchMove(e) {
210
+ if (chartList[this.canvasId] && e.touches.length > 0) {
211
+ var touch = e.touches[0];
212
+ var handler = chartList[this.canvasId].getZr().handler;
213
+ handler.dispatch('mousemove', {
214
+ zrX: touch.x,
215
+ zrY: touch.y
216
+ });
217
+ handler.processGesture(wrapTouch(e), 'change');
218
+ }
219
+ },
220
+
221
+ touchEnd(e) {
222
+ if (chartList[this.canvasId]) {
223
+ const touch = e.changedTouches ? e.changedTouches[0] : {};
224
+ var handler = chartList[this.canvasId].getZr().handler;
225
+ handler.dispatch('mouseup', {
226
+ zrX: touch.x,
227
+ zrY: touch.y
228
+ });
229
+ handler.dispatch('click', {
230
+ zrX: touch.x,
231
+ zrY: touch.y
232
+ });
233
+ handler.processGesture(wrapTouch(e), 'end');
234
+ }
235
+ }
236
+ }
237
+ }
238
+
239
+ function wrapTouch(event) {
240
+ for (let i = 0; i < event.touches.length; ++i) {
241
+ const touch = event.touches[i];
242
+ touch.offsetX = touch.x;
243
+ touch.offsetY = touch.y;
244
+ }
245
+ return event;
246
+ }
247
+ </script>
248
+ <style lang="scss" scoped>
249
+ .echarts {
250
+ width: 100%;
251
+ height: 100%;
252
+ border-radius: 40rpx;
253
+ }
254
+ </style>
@@ -0,0 +1,105 @@
1
+ export default class WxCanvas {
2
+ constructor(ctx, canvasId, isNew, canvasNode) {
3
+ this.ctx = ctx;
4
+ this.canvasId = canvasId;
5
+ this.chart = null;
6
+ this.isNew = isNew
7
+ if (isNew) {
8
+ this.canvasNode = canvasNode;
9
+ }
10
+ else {
11
+ this._initStyle(ctx);
12
+ }
13
+
14
+ // this._initCanvas(zrender, ctx);
15
+
16
+ this._initEvent();
17
+ }
18
+
19
+ getContext(contextType) {
20
+ if (contextType === '2d') {
21
+ return this.ctx;
22
+ }
23
+ }
24
+
25
+ // canvasToTempFilePath(opt) {
26
+ // if (!opt.canvasId) {
27
+ // opt.canvasId = this.canvasId;
28
+ // }
29
+ // return wx.canvasToTempFilePath(opt, this);
30
+ // }
31
+
32
+ setChart(chart) {
33
+ this.chart = chart;
34
+ }
35
+
36
+ attachEvent() {
37
+ // noop
38
+ }
39
+
40
+ detachEvent() {
41
+ // noop
42
+ }
43
+
44
+ _initCanvas(zrender, ctx) {
45
+ zrender.util.getContext = function () {
46
+ return ctx;
47
+ };
48
+
49
+ zrender.util.$override('measureText', function (text, font) {
50
+ ctx.font = font || '12px sans-serif';
51
+ return ctx.measureText(text);
52
+ });
53
+ }
54
+
55
+ _initStyle(ctx) {
56
+ ctx.createRadialGradient = () => {
57
+ return ctx.createCircularGradient(arguments);
58
+ };
59
+ }
60
+
61
+ _initEvent() {
62
+ this.event = {};
63
+ const eventNames = [{
64
+ wxName: 'touchStart',
65
+ ecName: 'mousedown'
66
+ }, {
67
+ wxName: 'touchMove',
68
+ ecName: 'mousemove'
69
+ }, {
70
+ wxName: 'touchEnd',
71
+ ecName: 'mouseup'
72
+ }, {
73
+ wxName: 'touchEnd',
74
+ ecName: 'click'
75
+ }];
76
+
77
+ eventNames.forEach(name => {
78
+ this.event[name.wxName] = e => {
79
+ const touch = e.touches[0];
80
+ this.chart.getZr().handler.dispatch(name.ecName, {
81
+ zrX: name.wxName === 'tap' ? touch.clientX : touch.x,
82
+ zrY: name.wxName === 'tap' ? touch.clientY : touch.y
83
+ });
84
+ };
85
+ });
86
+ }
87
+
88
+ set width(w) {
89
+ if (this.canvasNode) this.canvasNode.width = w
90
+ }
91
+ set height(h) {
92
+ if (this.canvasNode) this.canvasNode.height = h
93
+ }
94
+
95
+ get width() {
96
+ if (this.canvasNode)
97
+ return this.canvasNode.width
98
+ return 0
99
+ }
100
+ get height() {
101
+ if (this.canvasNode)
102
+ return this.canvasNode.height
103
+ return 0
104
+ }
105
+ }
@@ -6,53 +6,15 @@
6
6
  */
7
7
  module.exports = [
8
8
  {
9
- //设置方法名字当别忘记加上【模块名字】:Share
10
- mapFnName: 'getShareByIdFilmSquate',
11
- title: '获取电影广场列表',
12
- path: '/api/account/film/list-film-square',
9
+ mapFnName: "getInviteCardList",
10
+ title: "获取邀请卡列表",
11
+ path: "/dist/v1/invitation_card",
13
12
  isRule: false,
14
13
  params: {
15
- last_key: ['当前页', 'Number', '必选'],
14
+ page_token: ['当前页', 'Number', '必选'],
16
15
  page_size: ['每页数量', 'Number', '必选'],
17
16
  },
18
17
  isConsole: true,
19
- disabled: true,
20
- },
21
- {
22
- //设置方法名字当别忘记加上【模块名字】:Share
23
- mapFnName: 'updateShareFilmPaiqiDate',
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
- //设置方法名字当别忘记加上【模块名字】:Share
36
- mapFnName: 'removeShareFilmAddress',
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
- //设置方法名字当别忘记加上【模块名字】:Share
48
- mapFnName: 'addShareFilmcart',
49
- title: '添加购物车',
50
- path: '/api/account/film/paiqi-date',
51
- isRule: false,
52
- params: {
53
- film_id: ['电影id', 'Number', '必选'],
54
- },
55
- isConsole: true,
56
- disabled: true,
18
+ disabled: false,
57
19
  },
58
20
  ];
@@ -62,7 +62,9 @@
62
62
  ],
63
63
  data() {
64
64
  return {
65
- hideMask: true,
65
+ closeMask: true,
66
+
67
+ shareList: [],
66
68
  //todo
67
69
  }
68
70
  },
@@ -80,15 +82,7 @@
80
82
  methods: {
81
83
  onJfbLoad(options) {
82
84
 
83
- // jfbRootExec('baiduUserLogin', {
84
-
85
- // vm: this,// data: {
86
-
87
- // account: 'gaoshiyong',// password: '123456789',// type: 3,// ...options
88
-
89
- // }
90
-
91
- // }).then().catch()
85
+ this.p_getInviteCardList();
92
86
  },
93
87
  /**
94
88
  * @description 监听事件变化
@@ -96,9 +90,16 @@
96
90
  */
97
91
  init(container) {
98
92
 
99
- //this.bgcolor = getContainerPropsValue(container, 'content.bgcolor', '#fff');
100
-
101
- //this.height = getContainerPropsValue(container, 'content.height', 10);
93
+ },
94
+ p_getInviteCardList(){
95
+ jfbRootExec("getInviteCardList", {
96
+ vm: this,
97
+ data: {
98
+ page_token: '1'
99
+ }
100
+ }).then(res => {
101
+ this.shareList = res.list;
102
+ })
102
103
  },
103
104
  onJfbScroll(options) {
104
105
  console.log('event.onJfbScroll', options)
@@ -28,29 +28,10 @@
28
28
  </view>
29
29
  <view class="prodcut-content-btn" v-if="isBtn">
30
30
  <view :class="{onePrice: cell === 1}">
31
- <!-- <view v-if="productConfig.isPrice === 'Y'">
32
- <xd-unit
33
- :price="(item['promo_price'] || item['sale_price'])"
34
- :isOld="false"
35
- :iconSize="0.3"
36
- :fontSize="36"
37
- />
38
- </view>
39
- <view
40
- v-if="productConfig.isShowDiscount==='Y' && checkDiscountPrice"
41
- :style="{color:oldPriceColor}" class="oldPrice">
42
- <xd-unit
43
- :price="dividePrice"
44
- :iconSize="0.21"
45
- :fontSize="24"
46
- delete-line
47
- is-gray
48
- />
49
- </view> -->
50
31
  <CusPrice
51
32
  v-if="productConfig.isPrice === 'Y'"
52
33
  type="two"
53
- :showPrice="item['showPrice']"
34
+ :showPrice="item['show_prices']"
54
35
  :isVip="true">
55
36
  </CusPrice>
56
37
  </view>
@@ -246,6 +246,11 @@
246
246
  if(this.tabId === 'all'){
247
247
  data['search_range'] = this.searchScope.map(item => item.value.split("@")[0]).join(',');
248
248
  }
249
+ if(this.productConfig.isShowDiscount==='Y'){
250
+ data.is_show_uprice=this.$xdUniHelper.multiplyFloatNumber(this.productConfig.differ,100)
251
+ } else {
252
+ data.is_show_uprice=-1
253
+ }
249
254
 
250
255
  jfbRootExec("getTfkSearchList", {
251
256
  vm: this,
@@ -25,10 +25,10 @@
25
25
  <view class="jfb-base-user-info__body-plus-header-top-left-info">
26
26
  <view class="jfb-base-user-info__body-plus-header-top-left-info-name" v-if="logined">
27
27
  <view>{{userInfo|getName}} </view>
28
- <view v-if="is_vip==='Y'"><span>PLUS</span>会员</view>
28
+ <view v-if="is_vip==='Y'"><text>PLUS</text>会员</view>
29
29
  <view v-else>普通用户</view>
30
30
  </view>
31
- <view>138****5454</view>
31
+ <view>{{userInfo.phone_number}}</view>
32
32
  </view>
33
33
  </view>
34
34
  <view class="jfb-base-user-info__body-plus-header-right">
@@ -284,6 +284,10 @@
284
284
  }
285
285
  },
286
286
  created() {
287
+ console.log(this.getTokenForKey('user_level'),'user_leveluser_level');
288
+ console.log(this.projectAttr.headers['X-Site-Group'],'this.$configProject');
289
+ this.is_plus_site = this.projectAttr.headers['X-Site-Group']==="vip";
290
+ this.is_vip = this.getTokenForKey('user_level')&&this.getTokenForKey('user_level')==='VIP'?'Y':'N'
287
291
  this.init(this.container);
288
292
  },
289
293
  methods: {
@@ -6,51 +6,34 @@
6
6
  */
7
7
  module.exports = [
8
8
  {
9
- //设置方法名字当别忘记加上【模块名字】:With
10
- mapFnName: 'getWithByIdFilmSquate',
11
- title: '获取电影广场列表',
12
- path: '/api/account/film/list-film-square',
9
+ mapFnName: 'cancelWithdraw',
10
+ title: '用户资产 - 提现取消',
11
+ path: '/pay/v1/property/withdraw-order/cancel',
13
12
  isRule: false,
14
- params: {
15
- last_key: ['当前页', 'Number', '必选'],
16
- page_size: ['每页数量', 'Number', '必选'],
17
- },
18
- isConsole: true,
19
- disabled: true,
20
- },
21
- {
22
- //设置方法名字当别忘记加上【模块名字】:With
23
- mapFnName: 'updateWithFilmPaiqiDate',
24
- title: '更新排期',
25
- path: '/api/account/film/paiqi-date',
26
- isRule: false,
27
- params: {
28
- film_id: ['电影id', 'Number', '必选'],
29
- cinema_id: ['影院id', 'Number', '必选'],
13
+ data: {
14
+ order_id: ['提现订单号', 'Number', '必选'],
30
15
  },
31
16
  isConsole: true,
32
17
  disabled: true,
33
18
  },
34
19
  {
35
- //设置方法名字当别忘记加上【模块名字】:With
36
- mapFnName: 'removeWithFilmAddress',
37
- title: '删除我的配送地址',
38
- path: '/api/account/film/paiqi-date',
20
+ mapFnName: 'getWithdrawOrderDetail',
21
+ title: '用户资产 - 提现订单详情',
22
+ path: '/pay/v1/property/withdraw-order/detail',
39
23
  isRule: false,
40
24
  params: {
41
- film_id: ['电影id', 'Number', '必选'],
25
+ order_id: ['提现订单号', 'Number', '必选'],
42
26
  },
43
27
  isConsole: true,
44
28
  disabled: true,
45
29
  },
46
30
  {
47
- //设置方法名字当别忘记加上【模块名字】:With
48
- mapFnName: 'addWithFilmcart',
49
- title: '添加购物车',
50
- path: '/api/account/film/paiqi-date',
31
+ mapFnName: 'getWithdrawThirdPlaceOrderList',
32
+ title: '用户资产 - 提现渠道下单',
33
+ path: '/pay/v1/property/withdraw-order/third-place',
51
34
  isRule: false,
52
35
  params: {
53
- film_id: ['电影id', 'Number', '必选'],
36
+ order_id: ['提现订单号', 'Number', '必选'],
54
37
  },
55
38
  isConsole: true,
56
39
  disabled: true,