jufubao-base 1.0.351 → 1.0.352-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.351",
3
+ "version": "1.0.352-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -21,7 +21,7 @@
21
21
  class="jfb-base-wallet-index__body-wrap"
22
22
  >
23
23
  <view class="jfb-base-wallet-index__body-header">
24
- <view class="jfb-base-wallet-index__body-header-total">
24
+ <view class="jfb-base-wallet-index__body-header-total" @click="typeList.length===1?handleToWalletDetail(typeList[0]):''">
25
25
  <view>
26
26
  <XdFontIcon
27
27
  :icon="type === 'wallet' ? 'iconyuanbao' : 'iconjifenjilu'"
@@ -36,10 +36,11 @@
36
36
  style="align-items: flex-start"
37
37
  color="#999999"
38
38
  size="60"
39
- icon="iconerweima"
39
+ icon="iconerweima"
40
40
  ></XdFontIcon>
41
41
  </view>
42
42
  <view
43
+ v-if="typeList.length>1"
43
44
  :style="{
44
45
  justifyContent:
45
46
  typeList.length === 2
@@ -165,7 +166,7 @@
165
166
  ></XdFontIcon>
166
167
  </view>
167
168
  </view>
168
- <view class="jfb-base-wallet-index__body-pay-id"
169
+ <view v-if="qrcodeInfo.wallet_virtual_number" class="jfb-base-wallet-index__body-pay-id"
169
170
  >ID:{{ qrcodeInfo.wallet_virtual_number }}</view
170
171
  >
171
172
  </view>
@@ -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/Desktop/code/BASE/UNIAPP/xd-commands-bussiness/${threePackagePath}`;
12
- }
13
-
14
- if (packname === 'gxd-uni-library-editx') {
15
- return `/Users/shiyonggao/Desktop/code/BASE/UNIAPP/xd-uni-library-editx/${threePackagePath}`;
16
- }
17
-
18
- };
19
-
20
- module.exports = {
21
- getPackagePath
22
- }