jufubao-base 1.0.387 → 1.0.388-beta2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.387",
3
+ "version": "1.0.388-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -16,6 +16,13 @@
16
16
  <view class="jfb-base-card-detail-entry__body" v-if="info!==null">
17
17
  <view class="qrcode_card">
18
18
  <view class="jfb-base-card-detail-entry__body-qrcode">
19
+ <view class="jfb-base-card-detail-entry__body-qrcode-title">
20
+ <xd-font-icon
21
+ icon="icondaifahuo-main"
22
+ :size="38"
23
+ ></xd-font-icon>
24
+ <text>提货二维码</text>
25
+ </view>
19
26
  <view class="barcode_wrap">
20
27
  <view>
21
28
  <image mode="aspectFit" :src="info.barcode"></image>
@@ -51,7 +58,7 @@
51
58
  <view class="card_sec">券号:{{ info.card_number }}</view>
52
59
  <view class="card_sec">有效期:{{ info.end_time }}</view>
53
60
  <view class="card_sec">
54
- <text>{{isShowBuss==='Y'?info.main_business_code_name:''}}余额:{{ info.card_point }}{{ info.unit }}</text>
61
+ <text>{{isShowBuss==='Y'?info.main_business_code_name:''}}剩余:{{ info.card_point }}{{ info.unit }}</text>
55
62
  <text
56
63
  v-if="info.other_card_point && info.card_point_type === 2"
57
64
  style="font-size: 24rpx;margin-left: 20rpx;"
@@ -928,6 +935,17 @@ export default {
928
935
  padding: unit(20,rpx) unit(70,rpx) 0 unit(70,rpx);
929
936
  color: #000;
930
937
  position: relative;
938
+ &-title {
939
+ font-size: unit(28, rpx);
940
+ font-weight: 500;
941
+ text-align: left;
942
+ display: flex;
943
+ justify-content: flex-start;
944
+ align-items: center;
945
+ & > text {
946
+ margin-left: unit(20, rpx);
947
+ }
948
+ }
931
949
 
932
950
  .card_bottom{
933
951
  content: " ";
@@ -211,7 +211,7 @@
211
211
  <text>{{item.end_time}}</text>
212
212
  </view>
213
213
  <view class="card-list__yue">
214
- <text>{{isShowBuss==='Y'?item.main_business_code_name:''}}余额:</text>
214
+ <text>{{isShowBuss==='Y'?item.main_business_code_name:''}}剩余:</text>
215
215
  <text>{{item.card_point}} {{ item.unit }}</text>
216
216
  </view>
217
217
  <view class="card-list__other" v-if="item.other_card_point && item.card_point_type === 2">
@@ -405,7 +405,7 @@
405
405
  <text>{{item.end_time}}</text>
406
406
  </view>
407
407
  <view class="card-list__yue">
408
- <text>{{item.main_business_code_name}}余额:</text>
408
+ <text>{{item.main_business_code_name}}剩余:</text>
409
409
  <text>{{item.card_point}} {{ item.unit }}</text>
410
410
  </view>
411
411
  <view class="card-list__other" v-if="item.other_card_point && item.card_point_type === 2">
@@ -1,22 +0,0 @@
1
- 'use strict';
2
-
3
- /**
4
- * @description 第三方库
5
- * @param threePackagePath {String} 第三方库所在项目路径存放路径路
6
- * @param packname {String} 包名字
7
- * @returns {string|*}
8
- */
9
- const getPackagePath = (threePackagePath, packname = 'gxd-commands-bussiness')=>{
10
- if(packname === 'gxd-commands-bussiness') {
11
- return `/Users/shiyonggao/home/root/Base-Jufubao/xd-commands-bussiness/${threePackagePath}`;
12
- }
13
-
14
- if (packname === 'gxd-uni-library-editx') {
15
- return `/Users/shiyonggao/home/root/Base-Jufubao/xd-uni-library-editx/${threePackagePath}`;
16
- }
17
-
18
- };
19
-
20
- module.exports = {
21
- getPackagePath
22
- }