jufubao-base 1.0.243-beta1 → 1.0.243-beta201

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 (36) hide show
  1. package/package.json +1 -1
  2. package/src/components/JfbBaseAfterOrderList/Attr.js +13 -0
  3. package/src/components/JfbBaseAfterOrderList/JfbBaseAfterOrderList.vue +33 -1
  4. package/src/components/JfbBaseAfterSales/Api.js +58 -0
  5. package/src/components/JfbBaseAfterSales/Attr.js +25 -0
  6. package/src/components/JfbBaseAfterSales/JfbBaseAfterSales.vue +550 -0
  7. package/src/components/JfbBaseAfterSales/JfbBaseAfterSalesLess.less +79 -0
  8. package/src/components/JfbBaseAfterSales/JfbBaseAfterSalesMixin.js +30 -0
  9. package/src/components/JfbBaseAfterSales/Mock.js +13 -0
  10. package/src/components/JfbBaseAfterSales/refundOrderInfo.vue +150 -0
  11. package/src/components/JfbBaseAfterSalesDetail/Api.js +41 -0
  12. package/src/components/JfbBaseAfterSalesDetail/Attr.js +25 -0
  13. package/src/components/JfbBaseAfterSalesDetail/JfbBaseAfterSalesDetail.vue +538 -0
  14. package/src/components/JfbBaseAfterSalesDetail/JfbBaseAfterSalesDetailLess.less +79 -0
  15. package/src/components/JfbBaseAfterSalesDetail/JfbBaseAfterSalesDetailMixin.js +30 -0
  16. package/src/components/JfbBaseAfterSalesDetail/Mock.js +60 -0
  17. package/src/components/JfbBaseAfterSalesDetail/secProd.vue +58 -0
  18. package/src/components/JfbBaseAfterSalesFast/Api.js +30 -0
  19. package/src/components/JfbBaseAfterSalesFast/Attr.js +32 -0
  20. package/src/components/JfbBaseAfterSalesFast/JfbBaseAfterSalesFast.vue +297 -0
  21. package/src/components/JfbBaseAfterSalesFast/JfbBaseAfterSalesFastLess.less +79 -0
  22. package/src/components/JfbBaseAfterSalesFast/JfbBaseAfterSalesFastMixin.js +30 -0
  23. package/src/components/JfbBaseAfterSalesFast/Mock.js +38 -0
  24. package/src/components/JfbBaseAfterSalesList/Api.js +40 -0
  25. package/src/components/JfbBaseAfterSalesList/Attr.js +107 -0
  26. package/src/components/JfbBaseAfterSalesList/JfbBaseAfterSalesList.vue +463 -0
  27. package/src/components/JfbBaseAfterSalesList/JfbBaseAfterSalesListLess.less +79 -0
  28. package/src/components/JfbBaseAfterSalesList/JfbBaseAfterSalesListMixin.js +30 -0
  29. package/src/components/JfbBaseAfterSalesList/Mock.js +362 -0
  30. package/src/components/JfbBaseOrderDetail/Attr.js +36 -0
  31. package/src/components/JfbBaseOrderDetail/JfbBaseOrderDetail.vue +21 -1
  32. package/src/components/JfbBaseOrderList/Attr.js +36 -0
  33. package/src/components/JfbBaseOrderList/JfbBaseOrderList.vue +30 -0
  34. package/src/components/JfbBaseOrderList/Mock.js +1 -1
  35. package/src/components/JfbBaseOrderList/XdTfkOrderItem.vue +17 -5
  36. package/src/components/JfbBasePhoneLogin/JfbBasePhoneLogin.vue +24 -13
@@ -0,0 +1,550 @@
1
+ <template>
2
+ <view
3
+ class="jfb-base-after-sales"
4
+ @click="handleEditxSelect"
5
+ :class="{ editx : isEditx && active }"
6
+ >
7
+ <!--#ifdef H5-->
8
+ <view
9
+ class="jfb-base-after-sales__edit"
10
+ :class="{ editx : isEditx && active }"
11
+ v-if="isEditx && active"
12
+ >
13
+ <view class="jfb-base-after-sales__edit-icon" @click="delEdit">删除</view>
14
+ </view>
15
+ <!-- #endif -->
16
+ <view class="jfb-base-after-sales__body" :style="{
17
+ minHeight: layoutInfo.bodyMinHeightRpx + 'rpx',
18
+ '--main-color': mainColor
19
+ }">
20
+ <template v-if="step == 1">
21
+ <view class="s_type_box">
22
+ <view class="s_type_title">请选择售后类型</view>
23
+ <view class="service_types">
24
+ <view class="service_item"
25
+ :class="{ active: item.value === after_sale_method }"
26
+ v-for="item in afterSalesMethod" :key="item.value"
27
+ @click="handleSelectAfterSalesMethod(item)"
28
+ >{{ item.label }}</view>
29
+ </view>
30
+ </view>
31
+
32
+ <RefundOrderInfo :list="productList"
33
+ :orderNumber="baseInfo.main_order_id"
34
+ :showRadio="canChoseProduct"
35
+ :showNumberSet="canSetNumber"
36
+ @change="handleSelectProduct"
37
+ ></RefundOrderInfo>
38
+
39
+ <view class="bottom_fixed" :style="prod_bottom">
40
+ <xd-button type="primary" @click="handleStepNext">下一步</xd-button>
41
+ </view>
42
+ </template>
43
+
44
+ <template v-if="step == 2">
45
+ <RefundOrderInfo :list="service_product_list"
46
+ :showRadio="false"
47
+ :orderNumber="baseInfo.main_order_id"
48
+ ></RefundOrderInfo>
49
+
50
+ <view class="list_section section_inline" @click="toChoseReason">
51
+ <view class="sec_label">
52
+ <view class="label_require">*</view>
53
+ <view>申请原因</view>
54
+ </view>
55
+ <view class="sec_content">
56
+ <view>{{ afterSaleTypeText }}</view>
57
+ <xd-font-icon icon="iconxiangyou_xian" :size="28" style="margin-left: 8rpx;"></xd-font-icon>
58
+ </view>
59
+ </view>
60
+ <view class="list_section">
61
+ <view class="sec_label">
62
+ <view class="label_require">*</view>
63
+ <view>问题描述</view>
64
+ </view>
65
+ <view class="sec_content">
66
+ <textarea v-model="customer_feedback"
67
+ placeholder="请描述您遇到的问题"
68
+ style="width: 100%;background:#FAFAFA;height: 140rpx;padding: 16rpx;border-radius: 8rpx;font-size: 24rpx;"
69
+ ></textarea>
70
+ </view>
71
+ </view>
72
+
73
+ <view class="list_section">
74
+ <view class="sec_label">
75
+ <view>上传凭证</view>
76
+ <view class="label_sub">最多9张</view>
77
+ </view>
78
+ <view class="sec_content">
79
+ <view class="img_list">
80
+ <view class="img_box" v-for="(img, i) in showRefundImages" :key="i">
81
+ <image :src="img" class="img_item" mode="aspectFit"></image>
82
+ </view>
83
+ <view class="img_box img_add" @click="doAddImage">
84
+ <view class="icon">+</view>
85
+ </view>
86
+ </view>
87
+ </view>
88
+ </view>
89
+
90
+ <view class="bottom_fixed" :style="prod_bottom">
91
+ <xd-button type="primary" @click="handleApplyRefund">提交申请</xd-button>
92
+ </view>
93
+ </template>
94
+ <xd-down-drawer :show.sync="reasonShow" :isClose="false">
95
+ <view class="refund_reason_head">申请原因</view>
96
+ <view class="refund_reason_body" style="min-height: 50vh;max-height: 75vh;">
97
+ <view class="reason_cont">
98
+ <view class="reason_item" v-for="item in afterSalesTypes" :key="item.id">
99
+ <view>{{ item.type_name }}</view>
100
+ <xd-radio :value="temp_type === item.id" @change="selectApplyReason(item.id)"></xd-radio>
101
+ </view>
102
+ </view>
103
+ <view class="reason_foot">
104
+ <xd-button type="primary" @click="handleChoseReason">确定</xd-button>
105
+ </view>
106
+ </view>
107
+ </xd-down-drawer>
108
+ </view>
109
+ </view>
110
+ </template>
111
+
112
+ <script>
113
+ import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
114
+ import XdButton from "@/components/XdButton/XdButton";
115
+ import XdRadio from "@/components/XdRadio/XdRadio"
116
+ import XdDownDrawer from "@/components/XdDownDrawer/XdDownDrawer"
117
+ import RefundOrderInfo from "./refundOrderInfo.vue"
118
+ import { jfbRootExec } from "@/utils/xd.event";
119
+ import JfbBaseAfterSalesMixin from "./JfbBaseAfterSalesMixin";
120
+ import { getContainerPropsValue } from "@/utils/xd.base";
121
+ import componentsMixins from "@/mixins/componentsMixins";
122
+ import extsMixins from "@/mixins/extsMixins";
123
+ import getServiceUrl from "@/common/getServiceUrl";
124
+ export default {
125
+ name: "JfbBaseAfterSales",
126
+ components: {
127
+ XdFontIcon,
128
+ XdButton,
129
+ XdRadio,
130
+ XdDownDrawer,
131
+ RefundOrderInfo
132
+ },
133
+ mixins: [
134
+ componentsMixins, extsMixins, JfbBaseAfterSalesMixin
135
+ ],
136
+ data() {
137
+ return {
138
+ step: 1,
139
+ reasonShow: false,
140
+ afterSalesMethod: [],
141
+ after_sale_method: "",
142
+ after_sale_type: "",
143
+ temp_type: "",
144
+ service_product_list: [],
145
+ customer_feedback: "",
146
+
147
+ productList: [],
148
+ afterSalesTypes: [],
149
+ baseInfo: {},
150
+
151
+ refundImgList: [],
152
+ order_id: "",
153
+ //todo
154
+ refundStepPath: "",
155
+ }
156
+ },
157
+ computed: {
158
+ canChoseProduct(){
159
+ if(!this.after_sale_method) return false;
160
+ if(this.baseInfo.support_refund_method === 'all' && this.after_sale_method === 'refund_and_good') return false;
161
+ if(this.productList.length === 1) return false;
162
+ return true;
163
+ },
164
+ canSetNumber(){
165
+ if(!this.after_sale_method) return false;
166
+ if(this.after_sale_method === 'refund_and_good') return false;
167
+ return true;
168
+ },
169
+ afterSaleTypeText(){
170
+ if(!this.after_sale_type) return "";
171
+ let item = this.afterSalesTypes.find(i => i.id === this.after_sale_type);
172
+ return item ? item.type_name : "";
173
+ },
174
+ showRefundImages(){
175
+ return this.refundImgList.map(item => getServiceUrl(item))
176
+ },
177
+ prod_bottom() {
178
+ return this.fixedStyle({ height: 20, zIndex: 111 });
179
+ },
180
+ },
181
+ watch: {
182
+ container(value, oldValue) {
183
+ if (JSON.stringify(value) === JSON.stringify(oldValue)) return;
184
+ if (this.$configProject['isPreview']) this.init(value)
185
+ },
186
+ },
187
+ created() {
188
+ this.init(this.container);
189
+
190
+ //todo
191
+ },
192
+ methods: {
193
+ onJfbLoad(options) {
194
+ this.order_id = options.order_id;
195
+ this.p_getAfterOmsOrder();
196
+ this.p_getAfterSalesTypeList();
197
+ },
198
+ /**
199
+ * @description 监听事件变化
200
+ * @param container {object} 业务组件对象自己
201
+ */
202
+ init(container) {
203
+ this.refundStepPath = getContainerPropsValue(container, 'content.refundStepPath', {value: ""}).value;
204
+ },
205
+ doAddImage(){
206
+ uni.chooseImage({
207
+ count: 1,
208
+ sourceType: ['camera'],
209
+ success: async (res) => {
210
+ console.log('chooseImage',res);
211
+ // let filePath = res.tempFilePaths[0];
212
+ let file = res.tempFiles[0];
213
+ this.$xdShowLoading({});
214
+ try{
215
+ let image = await this.uploadImage(file);
216
+ this.refundImgList.push(image);
217
+ this.$xdHideLoading();
218
+ }catch(err){
219
+ this.$xdHideLoading();
220
+ }
221
+ }
222
+ })
223
+ },
224
+ uploadImage(file){
225
+ let fileName = file.name;
226
+ return new Promise((resolve, reject) => {
227
+ jfbRootExec("getConOssSign", {
228
+ vm: this,
229
+ data: { name: fileName }
230
+ }).then(res => {
231
+ let OSSAccessKeyId = res['id']
232
+ let cdnUrl = res['cdn_url']
233
+ delete res['id']
234
+ delete res['cdn_url']
235
+ uni.uploadFile({
236
+ url: res.action,
237
+ file: file,
238
+ name: 'file',
239
+ formData: {
240
+ ...res,
241
+ OSSAccessKeyId: OSSAccessKeyId,
242
+ name: fileName,
243
+ cdnUrl: cdnUrl,
244
+ success_action_status: 200
245
+ },
246
+ success: (r) => {
247
+ resolve(`/${res.key}`);
248
+ },
249
+ fail:(err)=>{
250
+ resolve('');
251
+ console.error(err)
252
+ }
253
+ });
254
+ }).catch(err => {
255
+ reject(err);
256
+ })
257
+ })
258
+
259
+ },
260
+ p_getAfterSalesTypeList(){
261
+ jfbRootExec("getAfterSalesTypeList", {
262
+ vm: this,
263
+ data: {}
264
+ }).then(res => {
265
+ this.afterSalesTypes = res.list;
266
+ })
267
+ },
268
+ p_getAfterOmsOrder(){
269
+ this.$xdShowLoading({});
270
+ jfbRootExec("getAfterOmsOrder", {
271
+ vm: this,
272
+ data: {
273
+ main_order_id: this.order_id
274
+ }
275
+ }).then(res => {
276
+ this.$xdHideLoading();
277
+ const { product_list, base_info } = res;
278
+ this.productList = product_list.map(item => {
279
+ item.product_thumb = getServiceUrl(item.product_thumb, 'size2');
280
+ return item;
281
+ });
282
+ this.baseInfo = base_info;
283
+ try{
284
+ this.afterSalesMethod = JSON.parse(base_info.support_aftersale_method);
285
+ }catch(e){}
286
+ })
287
+ },
288
+ handleSelectAfterSalesMethod(item){
289
+ this.after_sale_method = item.value;
290
+ this.$nextTick(() => {
291
+ if(this.productList.length === 1){
292
+ this.service_product_list = [this.productList[0]];
293
+ }else if(!this.canChoseProduct){
294
+ this.service_product_list = this.productList;
295
+ }
296
+ })
297
+ },
298
+ handleApplyRefund(){
299
+ let { order_id, after_sale_method, after_sale_type, customer_feedback } = this;
300
+ if(!after_sale_type) {
301
+ this.$xdAlert({
302
+ content: '请选择申请原因',
303
+ type: "error"
304
+ })
305
+ return;
306
+ }
307
+ if(!customer_feedback){
308
+ this.$xdAlert({
309
+ content: '请填写问题描述',
310
+ type: "error"
311
+ })
312
+ return;
313
+ }
314
+ if(!this.service_product_list.length){
315
+ this.$xdAlert({
316
+ content: '请选择售后商品',
317
+ type: "error"
318
+ })
319
+ return;
320
+ }
321
+ let data = {
322
+ main_order_id: order_id,
323
+ sub_order_id: this.service_product_list[0].sub_order_id,
324
+ after_sale_method,
325
+ after_sale_type,
326
+ customer_feedback,
327
+ refund_voucher: JSON.stringify(this.refundImgList),
328
+ product_list: JSON.stringify(this.service_product_list.map(item => ({
329
+ product_id: item.product_id,
330
+ product_sku_id: item.sku_id,
331
+ product_num: item.product_num,
332
+ gift_id: item.gift_id
333
+ })))
334
+ }
335
+ jfbRootExec("createAfterServiceOrder", {
336
+ vm: this,
337
+ data: data
338
+ }).then(res => {
339
+ this.$xdUniHelper.navigateTo({
340
+ url: `${this.refundStepPath}?service_order_id=${res.service_order_id}`,
341
+ });
342
+ })
343
+ },
344
+ handleSelectProduct(productList){
345
+ console.log('handleSelectProduct', productList)
346
+ this.service_product_list = productList;
347
+ },
348
+ handleStepNext(){
349
+ if(!this.after_sale_method){
350
+ this.$xdAlert({
351
+ content: '请选择售后类型',
352
+ type: "error"
353
+ })
354
+ return;
355
+ }
356
+ if(!this.service_product_list.length){
357
+ this.$xdAlert({
358
+ content: '请选择售后商品',
359
+ type: "error"
360
+ })
361
+ return;
362
+ }
363
+ console.log('handleStepNext', this.service_product_list)
364
+ this.step = 2;
365
+ },
366
+ toChoseReason(){
367
+ this.reasonShow = true;
368
+ },
369
+ selectApplyReason(id){
370
+ this.temp_type = id;
371
+ },
372
+ handleChoseReason(){
373
+ this.reasonShow = false;
374
+ this.after_sale_type = this.temp_type;
375
+ },
376
+ onJfbScroll(options) {
377
+ // console.log('event.onJfbScroll', options)
378
+ },
379
+ onJfbReachBottom(options) {
380
+ console.log('event.onJfbReachBottom', options)
381
+ },
382
+ onJfbShow(options) {
383
+ console.log('event.onJfbShow', options)
384
+ },
385
+ onJfbHide(options) {
386
+ console.log('event.onJfbHide', options)
387
+ },
388
+ onJfbBack(options) {
389
+ console.log('event.onJfbBack', options)
390
+ },
391
+ onJfbUpdate(...data) {
392
+ console.log('event.onJfbUpdate', data)
393
+ },
394
+ onJfbCustomEvent(options) {
395
+ console.log('event.onJfbReachBottom', options)
396
+ },
397
+ }
398
+ }
399
+
400
+ </script>
401
+
402
+ <style scoped lang="less">
403
+ @import "./JfbBaseAfterSalesLess.less";
404
+
405
+ .jfb-base-after-sales {
406
+ &__body{
407
+ padding: 20rpx 20rpx 120rpx;
408
+ box-sizing: border-box;
409
+ background-color: #EEEEEE;
410
+ .s_type_box{
411
+ background-color: #FFFFFF;
412
+ border-radius: 16rpx;
413
+ padding: 36rpx;
414
+ font-size: 26rpx;
415
+ .s_type_title{
416
+ color: #333333;
417
+ font-weight: 500;
418
+ margin-bottom: 28rpx;
419
+ }
420
+ .service_types{
421
+ display: flex;
422
+ flex-wrap: wrap;
423
+
424
+ .service_item{
425
+ padding: 12rpx 48rpx;
426
+ border-radius: 40rpx;
427
+ background-color: #F3F3F3;
428
+ color: #999999;
429
+ margin-right: 15rpx;
430
+ &:nth-child(4n){
431
+ margin-right: 0;
432
+ }
433
+ &.active{
434
+ background-color: var(--main-color);
435
+ color: #FFFFFF;
436
+ }
437
+ }
438
+ }
439
+ }
440
+
441
+ .list_section{
442
+ padding: 24rpx 36rpx;
443
+ border-radius: 16rpx;
444
+ background-color: #FFFFFF;
445
+ display: flex;
446
+ flex-direction: column;
447
+ margin: 20rpx 0;
448
+ color: #333333;
449
+ font-size: 28rpx;
450
+ &.section_inline{
451
+ flex-direction: row;
452
+ justify-content: space-between;
453
+ .sec_label{
454
+ margin-bottom: 0;
455
+ }
456
+ }
457
+ .sec_label{
458
+ display: flex;
459
+ align-items: center;
460
+ margin-bottom: 24rpx;
461
+ .label_require{
462
+ color: #FF5733;
463
+ margin-right: 4rpx;
464
+ }
465
+ .label_sub{
466
+ color: #CCCCCC;
467
+ font-size: 24rpx;
468
+ margin-left: 16rpx;
469
+ }
470
+ }
471
+ .sec_content{
472
+ display: flex;
473
+ align-items: center;
474
+ color: #666666;
475
+
476
+ .img_list{
477
+ display: flex;
478
+ flex-wrap: wrap;
479
+ .img_box{
480
+ width: 160rpx;
481
+ height: 160rpx;
482
+ border-radius: 8rpx;
483
+ border: 1px solid #E0E0E0;
484
+ margin-right: 28rpx;
485
+ margin-bottom: 28rpx;
486
+ .img_item{
487
+ width: 100%;
488
+ height: 100%;
489
+ }
490
+
491
+ &.img_add{
492
+ display: flex;
493
+ align-items: center;
494
+ justify-content: center;
495
+ .icon{
496
+ border: 1px solid #E0E0E0;
497
+ width: 36rpx;
498
+ height: 36rpx;
499
+ border-radius: 6rpx;
500
+ display: flex;
501
+ align-items: center;
502
+ justify-content: center;
503
+ color: #E0E0E0;
504
+ }
505
+ }
506
+ }
507
+ }
508
+ }
509
+ }
510
+ .bottom_fixed{
511
+ position: fixed;
512
+ bottom: 0;
513
+ left: 0;
514
+ width: 100%;
515
+ padding: 20rpx;
516
+ box-sizing: border-box;
517
+ }
518
+ .refund_reason_head{
519
+ padding: 32rpx 0;
520
+ text-align: center;
521
+ border-bottom: 1px solid #F2F2F2;
522
+ margin: 0 32rpx;
523
+ font-size: 28rpx;
524
+ color: #333333;
525
+ font-weight: bold;
526
+ }
527
+ .refund_reason_body{
528
+ display: flex;
529
+ flex-direction: column;
530
+ .reason_cont{
531
+ flex: 1;
532
+ padding: 0 40rpx;
533
+ overflow: auto;
534
+ .reason_item{
535
+ display: flex;
536
+ align-items: center;
537
+ justify-content: space-between;
538
+ padding: 20rpx 20rpx;
539
+ font-size: 28rpx;
540
+ color: #333333;
541
+ }
542
+ }
543
+ .reason_foot{
544
+ padding: 32rpx;
545
+ border-top: 1px solid #F2F2F2;
546
+ }
547
+ }
548
+ }
549
+ }
550
+ </style>
@@ -0,0 +1,79 @@
1
+ /**
2
+ * @desc 获取绝对路径完整地址
3
+ * @param @path
4
+ **/
5
+ //例如:https://image.jufubao.cn/20220501010108/image/bg/default_gonghui_bg.png
6
+ @basePath: 'business/';
7
+ @doMain: '//sandbox-img.jufubao.cn/';
8
+
9
+ .getBusinessImageUrl(@path, @size: 'size8') {
10
+ @url: "@{doMain}@{basePath}@{path}?x-oss-process=style/@{size}";
11
+ background-image: url(@url);
12
+ }
13
+
14
+ //start
15
+ .jfb-base-after-sales {
16
+ box-sizing: border-box;
17
+
18
+ &__body{
19
+ position: relative;
20
+ overflow: hidden;
21
+ z-index: 2
22
+ }
23
+
24
+ &.editx,&.editx:hover {
25
+ position: relative;
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
39
+
40
+ }
41
+
42
+
43
+ &__edit {
44
+ cursor: pointer;
45
+ position: absolute;
46
+ right: unit(0, rpx);
47
+ top: unit(-52, rpx);
48
+ height: unit(50, rpx);
49
+ line-height: unit(50, rpx);
50
+ display: flex;
51
+ justify-content: center;
52
+ align-items: center;
53
+ background: rgba(0, 0, 0, .6);
54
+ border-radius: unit(10, rpx);
55
+ box-shadow: 0 0 10px rbga(0, 0, 0, 0.3);
56
+ color: #fff;
57
+ font-size: unit(22, rpx);
58
+
59
+ &-icon{
60
+ padding: 0 unit(20, rpx);
61
+ }
62
+
63
+ &.editx {
64
+ box-sizing: border-box;
65
+
66
+ }
67
+ }
68
+ }
69
+ //end
70
+
71
+
72
+ /**notPreview**/
73
+ .jfb-base-after-sales {
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
78
+ }
79
+ /**endNotPreview**/
@@ -0,0 +1,30 @@
1
+ 'use strict';
2
+
3
+
4
+ //@AttrImport
5
+ import Attr from "./Attr";
6
+ //@EndAttrImport
7
+
8
+
9
+ export default {
10
+ data() {
11
+ return {
12
+ //#ifdef H5
13
+
14
+ //@AttrData
15
+ Attr:{}, //对外开发编辑属性
16
+ //@EndAttrData
17
+
18
+ // #endif
19
+ cssRoot: 'jfb-base-after-sales'
20
+ }
21
+ },
22
+ created() {
23
+
24
+ //@AttrDataCreated
25
+ this.Attr = this.$xdUniHelper.customClone(Attr);
26
+ //@EndAttrDataCreated
27
+
28
+
29
+ },
30
+ }
@@ -0,0 +1,13 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+
5
+ getAfterByIdFilmSquate:{},
6
+
7
+ updateAfterFilmPaiqiDate:{},
8
+
9
+ removeAfterFilmAddress:{},
10
+
11
+ addAfterFilmcart:{},
12
+
13
+ }