78 lines
2.8 KiB
Vue
78 lines
2.8 KiB
Vue
|
<template>
|
||
|
<view style="letter-spacing: 1rpx;">
|
||
|
<tn-nav-bar :isBack="false" backTitle="" :bottomShadow="true" backgroundColor="#FFFFFF">
|
||
|
<view class="custom-nav tn-flex tn-flex-col-center tn-flex-row-left">
|
||
|
<view style="padding-left: 15rpx;" @click="goBack()">
|
||
|
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||
|
</view>
|
||
|
<view class="tn-margin-top"
|
||
|
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||
|
<tn-tabs :list="[{name:'供需记录'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||
|
:fontSize="36"></tn-tabs>
|
||
|
</view>
|
||
|
</view>
|
||
|
</tn-nav-bar>
|
||
|
<view :style="{paddingTop: vuex_custom_bar_height + 10+'px'}">
|
||
|
<view style="padding:10rpx 30rpx 100rpx 30rpx;">
|
||
|
<view v-for="(item,index) in 3" @click="openUrl('/pages/index/goods_info')" style="background-color: #FFF;padding: 20rpx;border-radius: 20rpx;
|
||
|
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(12,0,5,0.1);margin-bottom: 30rpx;">
|
||
|
<view class="tn-text-ellipsis">
|
||
|
<tn-tag v-if="index%2==0" shape="radius" size="sm"
|
||
|
backgroundColor="tn-main-gradient-red--reverse" width="60rpx">需求</tn-tag>
|
||
|
<tn-tag v-if="index%2!=0" shape="radius" size="sm" backgroundColor="tn-main-gradient-blue"
|
||
|
width="60rpx">供应</tn-tag>
|
||
|
<text style="vertical-align: middle;padding-left: 20rpx;font-size:30rpx;">
|
||
|
劲捷飞燕系列P056C旅拍三脚架碳纤维摄影旅拍三脚架碳纤维摄影</text>
|
||
|
</view>
|
||
|
<view style="font-size: 24rpx;color: #808080;margin-top: 20rpx;">洛阳灵睿网络技术有限公司</view>
|
||
|
<view>
|
||
|
<tn-tag shape="radius" width="auto" backgroundColor="#F7F7F7" fontColor="#808080">洛阳市</tn-tag>
|
||
|
<tn-tag shape="radius" margin="20rpx" width="auto" backgroundColor="#EBF4F7"
|
||
|
fontColor="#3377FF">合作意向18人</tn-tag>
|
||
|
<tn-tag shape="radius" width="auto" backgroundColor="#F7F3EB"
|
||
|
fontColor="#FF8C19">项目金额1万以下</tn-tag>
|
||
|
</view>
|
||
|
<view class="tn-flex tn-flex-row-between tn-flex-col-center tn-flex-row-center"
|
||
|
style="margin-top: 20rpx;">
|
||
|
<view style="color: #808080;font-size: 24rpx;">2023-12-19</view>
|
||
|
<view>
|
||
|
<tn-button shape="round" :fontSize="22" width="160rpx" height="50rpx"
|
||
|
backgroundColor="tn-main-gradient-orange" fontColor="#ffffff">查看详情</tn-button>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
topCurrent: 0
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
openUrl(url) {
|
||
|
uni.navigateTo({
|
||
|
url: url
|
||
|
})
|
||
|
},
|
||
|
goBack() {
|
||
|
if (getCurrentPages().length > 1) {
|
||
|
uni.navigateBack()
|
||
|
} else {
|
||
|
uni.redirectTo({
|
||
|
url: '/pages/index/index'
|
||
|
})
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|