jufubao-base 1.0.158-beta6 → 1.0.158-beta7
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
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
</view>
|
|
69
69
|
<view v-else>
|
|
70
70
|
<view
|
|
71
|
-
v-if="can_take === 'Y'"
|
|
72
71
|
class="jfb-base-con-list__body-content-list"
|
|
73
72
|
>
|
|
74
73
|
<view>
|
|
@@ -78,8 +77,7 @@
|
|
|
78
77
|
:class="'status_' + item.can_take_num"
|
|
79
78
|
:style="{
|
|
80
79
|
backgroundColor:
|
|
81
|
-
item.can_take_num === 'Y'
|
|
82
|
-
item.can_take_num === 'P'
|
|
80
|
+
item.can_take_num === 'Y'
|
|
83
81
|
? contentBackground
|
|
84
82
|
: '#F3F3F3',
|
|
85
83
|
}"
|
|
@@ -114,13 +112,6 @@
|
|
|
114
112
|
>{{ btn_txt }}</xd-button
|
|
115
113
|
>
|
|
116
114
|
</view>
|
|
117
|
-
<view
|
|
118
|
-
v-else
|
|
119
|
-
class="jfb-base-con-list__body-content-list"
|
|
120
|
-
style="padding-bottom: 60rpx"
|
|
121
|
-
>
|
|
122
|
-
<image mode="widthFix" :src="used_up_url"></image>
|
|
123
|
-
</view>
|
|
124
115
|
</view>
|
|
125
116
|
</view>
|
|
126
117
|
|
|
@@ -418,14 +409,16 @@ export default {
|
|
|
418
409
|
backgroundRepeat: "no-repeat",
|
|
419
410
|
// 设置背景颜色
|
|
420
411
|
backgroundColor: "",
|
|
421
|
-
|
|
422
|
-
|
|
412
|
+
height: '70rpx',
|
|
413
|
+
width: '450rpx',
|
|
414
|
+
marginTop: '26rpx'
|
|
423
415
|
}
|
|
424
416
|
: {
|
|
425
417
|
// 设置背景颜色
|
|
426
418
|
backgroundColor: "#FB5B3F",
|
|
427
|
-
|
|
428
|
-
|
|
419
|
+
height: '70rpx',
|
|
420
|
+
width: '450rpx',
|
|
421
|
+
marginTop: '26rpx'
|
|
429
422
|
};
|
|
430
423
|
// 设置按钮文字
|
|
431
424
|
btn_txt = res.can_take === "Y" ? "一键领取" : "去查看";
|