Compare commits
2 Commits
251a7384be
...
d5ce1f4394
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d5ce1f4394 | ||
![]() |
58680d4729 |
@ -1,8 +1,8 @@
|
||||
// 应用全局配置
|
||||
module.exports = {
|
||||
// baseUrl: 'https://www.ddtg.site/noticeApi',
|
||||
// baseUrl: 'https://www.ddtg.site/noticeApi',
|
||||
baseUrl: 'http://192.168.1.4:8099',
|
||||
baseUrl: 'https://www.ddtg.site/noticeApi',
|
||||
// baseUrl: 'http://192.168.1.4:8099',
|
||||
// 应用信息
|
||||
appInfo: {
|
||||
// 应用名称
|
||||
@ -43,4 +43,4 @@ module.exports = {
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,8 @@
|
||||
<view class="dl-components">
|
||||
<view v-for="(item,index) in dataList" class="dl-notice-box" @click="goDetail(item)">
|
||||
<view class="dl-is-urgent" v-if="'1'==item.isUrgent">急招</view>
|
||||
<view class="dl-is-platform" v-if="'1'==item.isPlatformFree && '1'!=item.isUrgent">平台结算</view>
|
||||
<view class="dl-is-platform-2" v-if="'1'==item.isPlatformFree && '1'==item.isUrgent">平台结算</view>
|
||||
<view class="dl-notice-title">
|
||||
<image class="dl-image" :src="'/static/platform/'+item.platformCode+'.png'" mode="aspectFit">
|
||||
</image>
|
||||
@ -36,12 +38,12 @@
|
||||
<image class="dl-icon3" src="@/static/index/eye.png" mode="aspectFit"></image>
|
||||
<view class="dl-item-right dl-number">{{item.viewNum}}</view>
|
||||
</view>
|
||||
<view class="item-box" style="width: 25%;">
|
||||
<!-- <view class="item-box" style="width: 25%;">
|
||||
|
||||
<view>
|
||||
{{item.isPlatformFree==1?'平台结算':''}}
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
<image class="right-image" :src="imageUrl+item.mainImage" mode="aspectFit"></image>
|
||||
@ -165,6 +167,28 @@
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.dl-is-platform {
|
||||
position: absolute;
|
||||
color: white;
|
||||
background-color: #FC1F3E;
|
||||
padding: 5rpx 25rpx;
|
||||
font-size: 24rpx;
|
||||
border-radius: 0 25rpx 0 25rpx;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.dl-is-platform-2 {
|
||||
position: absolute;
|
||||
color: white;
|
||||
background-color: #FC1F3E;
|
||||
padding: 5rpx 25rpx;
|
||||
font-size: 24rpx;
|
||||
border-radius: 0 0 25rpx 25rpx;
|
||||
top: 0;
|
||||
right: 120rpx;
|
||||
}
|
||||
|
||||
.dl-notice-title {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
Loading…
Reference in New Issue
Block a user