cb-biz-ui 1.2.7 → 1.2.8

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.
@@ -204,6 +204,7 @@ const errStatusText = computed(() => {
204
204
  if (!props.entity.existInventory) {
205
205
  return '无货';
206
206
  }
207
+ return '';
207
208
  });
208
209
 
209
210
  const state = reactive({
@@ -21,7 +21,9 @@
21
21
  <view class="marketPrice">¥{{ data.marketPrice }}</view></view
22
22
  >
23
23
  <view class="price" v-else>
24
- <view class="only-marketPrice">¥{{ data.marketPrice }}</view>
24
+ <view class="only-marketPrice" v-if="data.marketPrice"
25
+ >¥{{ data.marketPrice }}</view
26
+ >
25
27
  </view>
26
28
  </view>
27
29
  </view>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cb-biz-ui",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "description": "cb-biz-ui",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -18,7 +18,8 @@
18
18
  "sass-loader": "8.0.2"
19
19
  },
20
20
  "peerDependencies": {
21
- "cb-mobile-ui": ">=1.0.4"
21
+ "cb-mobile-ui": ">=1.0.4",
22
+ "z-paging": ">=2.5.8"
22
23
  },
23
24
  "author": "cb-biz-ui"
24
25
  }