jufubao-base 1.0.279-beta103 → 1.0.279-beta104

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.279-beta103",
3
+ "version": "1.0.279-beta104",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -55,7 +55,7 @@
55
55
  </view>
56
56
  <view :style="[addCoMpStyle]" class="jfb-base-chose-company__body-add"
57
57
  >{{ addTitle
58
- }}<view @click="handleToAdd" style="color: red"
58
+ }}<view @click="handleToAdd" :style="{color:mainColor}"
59
59
  >去添加<XdFontIcon
60
60
  size="28"
61
61
  icon="iconxiangyou_xian"
@@ -176,7 +176,7 @@ export default (data, gValue, gColor, oldData) => {
176
176
  },
177
177
  },
178
178
  {
179
- label: '商品投影',
179
+ label: '投影',
180
180
  ele: 'xd-shadow',
181
181
  labelInline: true,
182
182
  groupKey: 'style',
@@ -64,8 +64,9 @@
64
64
  class="jfb-base-wallet-index__body-type-item"
65
65
  @click="handleToWalletDetail(item)"
66
66
  >
67
- <view>{{ dividePrice(item.amount) }}</view>
68
- <view :style="{ color: mainColor }">{{ item.wallet_name }}<text v-if="item.customer_name">({{item.customer_name}})</text></view>
67
+ <view class="jfb-base-wallet-index__body-type-item-name" :style="{ color: mainColor }">{{ item.wallet_name }}</view>
68
+ <view class="jfb-base-wallet-index__body-type-item-amount">{{ dividePrice(item.amount) }}</view>
69
+ <view class="jfb-base-wallet-index__body-type-item-company" v-if="item.customer_name">{{item.customer_name}}</view>
69
70
  </view>
70
71
  </view>
71
72
  </view>
@@ -589,12 +590,16 @@ export default {
589
590
  &-item {
590
591
  text-align: center;
591
592
  margin-bottom: 20rpx;
592
- & > view:first-child {
593
+ &-name{
593
594
  font-size: 36rpx;
594
595
  }
595
- & > view:last-child {
596
+ &-amount {
597
+ font-size: 36rpx;
598
+ margin: 10rpx 0;
599
+ }
600
+ &-company {
596
601
  font-size: 24rpx;
597
- margin-top: 20rpx;
602
+ color: #999
598
603
  }
599
604
  }
600
605
  }