cb-biz-ui 1.3.0 → 1.3.1
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/components/cb-address-list/cb-address-list.vue +4 -4
- package/components/cb-category/cb-category.vue +4 -1
- package/components/cb-manage-goods-item/cb-manage-goods-item.vue +4 -2
- package/components/cb-order-goods/cb-order-goods.vue +1 -1
- package/components/cb-shopping-cart/cb-shopping-cart.vue +1 -1
- package/package.json +1 -1
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
backgroundColor="#ffffff00"
|
|
26
26
|
width="20rpx"
|
|
27
27
|
height="14rpx"
|
|
28
|
-
src="/
|
|
28
|
+
src="https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/6974e6fc6fa748f194f367b135ec84f5.png"
|
|
29
29
|
v-if="item.chosen"
|
|
30
30
|
/>
|
|
31
31
|
<ui-lazyload-img
|
|
32
32
|
backgroundColor="#ffffff00"
|
|
33
33
|
width="20rpx"
|
|
34
34
|
height="14rpx"
|
|
35
|
-
src="/
|
|
35
|
+
src="https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/6974e6fc6fa748f194f367b135ec84f5.png"
|
|
36
36
|
v-else
|
|
37
37
|
/>
|
|
38
38
|
</view>
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
backgroundColor="#ffffff00"
|
|
56
56
|
width="28rpx"
|
|
57
57
|
height="28rpx"
|
|
58
|
-
src="/
|
|
58
|
+
src="https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/6d3c0ddbca1e4a7387181152270784cd.png"
|
|
59
59
|
/>
|
|
60
60
|
</view>
|
|
61
61
|
</view>
|
|
@@ -98,7 +98,7 @@ const props = withDefaults(
|
|
|
98
98
|
addressList: [],
|
|
99
99
|
button: [
|
|
100
100
|
{
|
|
101
|
-
src: '/
|
|
101
|
+
src: 'https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/7b33c94895684cd392ec69622b835d0f.png',
|
|
102
102
|
width: '20rpx',
|
|
103
103
|
height: '24rpx',
|
|
104
104
|
background: 'rgb(255, 82, 79)'
|
|
@@ -124,7 +124,10 @@ const emit = defineEmits<{
|
|
|
124
124
|
}>();
|
|
125
125
|
|
|
126
126
|
const noDataUrl = computed(() => {
|
|
127
|
-
return
|
|
127
|
+
return (
|
|
128
|
+
props.nullData.url ||
|
|
129
|
+
'https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/f225d4d3d47140129d6a4dd77988afd6.png'
|
|
130
|
+
);
|
|
128
131
|
});
|
|
129
132
|
const noDataTip = computed(() => {
|
|
130
133
|
return props.nullData.text || '暂无数据~';
|
|
@@ -7,13 +7,15 @@
|
|
|
7
7
|
:width="imgWidth"
|
|
8
8
|
:height="imgHeight"
|
|
9
9
|
:mode="imageMode"
|
|
10
|
-
:src="
|
|
10
|
+
:src="
|
|
11
|
+
data.image ||
|
|
12
|
+
'https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/fdf9860bcf7d464fbeab51fc547cb0ca.webp'
|
|
13
|
+
"
|
|
11
14
|
/>
|
|
12
15
|
|
|
13
16
|
<view class="off-shelf" v-if="data.saleStatus === 20">
|
|
14
17
|
<text class="text">已下架</text>
|
|
15
18
|
</view>
|
|
16
|
-
<!-- <image class="icon" :src="data.image || '/static/image/about_logo.png'" /> -->
|
|
17
19
|
</view>
|
|
18
20
|
<view class="text-box">
|
|
19
21
|
<view class="header">
|
|
@@ -136,7 +136,7 @@ const props = withDefaults(defineProps<IProps>(), {
|
|
|
136
136
|
|
|
137
137
|
const actions = [
|
|
138
138
|
{
|
|
139
|
-
src: '/
|
|
139
|
+
src: 'https://edu-cdn.yunzhuxue.com/edub1429d21xcfds/img/7b33c94895684cd392ec69622b835d0f.png',
|
|
140
140
|
width: '20rpx',
|
|
141
141
|
height: '24rpx',
|
|
142
142
|
background: 'rgb(255, 82, 79)'
|