|
|
@@ -26,7 +26,7 @@
|
|
|
@tap="toDetail(supply.id)"
|
|
|
>
|
|
|
<view class="image_content">
|
|
|
- <image :src="supply.image" />
|
|
|
+ <image :src="supply.image" mode="aspectFill"/>
|
|
|
</view>
|
|
|
<view class="info">
|
|
|
<view class="title">
|
|
|
@@ -135,10 +135,10 @@ export default {
|
|
|
);
|
|
|
ob.time = time + " " + timeSecond;
|
|
|
ob.state = item.type;
|
|
|
- ob.image = ''
|
|
|
+ ob.image = "/static/nodata.svg"
|
|
|
// ob.image = item.attach_list[0]
|
|
|
// ? getApp().globalData.shareUrl + item.attach_list[0].url
|
|
|
- // : "";
|
|
|
+ // : "/static/nodata.svg";
|
|
|
return ob;
|
|
|
});
|
|
|
// console.log(res.data.data.list);
|
|
|
@@ -160,22 +160,22 @@ export default {
|
|
|
.picker {
|
|
|
position: fixed;
|
|
|
top: 3%;
|
|
|
- left: 10%;
|
|
|
+ left: 16%;
|
|
|
color: #007aff;
|
|
|
.picker_title {
|
|
|
width: 120rpx;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
+ justify-content: space-around;
|
|
|
.triangle-down {
|
|
|
width: 0;
|
|
|
height: 0;
|
|
|
- border-top: 20rpx solid rgb(173, 173, 173);
|
|
|
- border-left: 20rpx solid transparent;
|
|
|
- border-right: 20rpx solid transparent;
|
|
|
+ border-top: 15rpx solid rgb(173, 173, 173);
|
|
|
+ border-left: 15rpx solid transparent;
|
|
|
+ border-right: 15rpx solid transparent;
|
|
|
}
|
|
|
.pickername {
|
|
|
- font-size: 35rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
font-weight: 100;
|
|
|
}
|
|
|
}
|