90 lines
2.9 KiB
Vue
90 lines
2.9 KiB
Vue
|
<template>
|
|||
|
<view style="background-color: #F7F7F7;min-height: 100vh;">
|
|||
|
<tn-nav-bar customBack :bottomShadow="false" backgroundColor="#ffffff">
|
|||
|
<view class="custom-nav tn-flex tn-flex-col-center tn-flex-row-center">
|
|||
|
<view style="color: #000000;;text-align: left;font-size: 36rpx;font-weight: 600;">
|
|||
|
<text>详情</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view slot="back" class='tn-custom-nav-bar__back' style="padding-left: 20rpx;" @click="goBack">
|
|||
|
<image src="/static/h_back.png" style="width: 60rpx;height: 60rpx;"></image>
|
|||
|
</view>
|
|||
|
</tn-nav-bar>
|
|||
|
<view :style="{paddingTop: vuex_custom_bar_height + 'px'}">
|
|||
|
<view style="padding: 30rpx;">
|
|||
|
<view style="background-color: #fff;border-radius: 18rpx;padding: 30rpx;margin-bottom: 30rpx;">
|
|||
|
<view>
|
|||
|
<image src="/static/03.png" style="width: 50rpx;height: 50rpx;vertical-align: middle;"
|
|||
|
mode="aspectFill"></image>
|
|||
|
<text
|
|||
|
style="color: #9B9B9B;vertical-align: middle;margin-left: 10rpx;font-size: 28rpx;font-weight: 400;">风一样的男人</text>
|
|||
|
</view>
|
|||
|
<view class="tn-flex" style="margin-top: 30rpx;">
|
|||
|
<view>
|
|||
|
<image src="/static/wen.png" style="width: 38rpx;" class="no-img" mode="widthFix">
|
|||
|
</image>
|
|||
|
</view>
|
|||
|
<view style="margin-left: 20rpx;font-size: 28rpx;font-weight: 400;">
|
|||
|
亲爱的职友,在你心目中什么样的工作是稳定的工作
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="text-align: center;margin-top: 20rpx;">
|
|||
|
<image src="/static/def.png"
|
|||
|
style="width: 200rpx;height: 200rpx;border-radius:18rpx 0rpx 0rpx 18rpx;"></image>
|
|||
|
<image src="/static/def.png" style="width: 200rpx;height: 200rpx;margin: 0rpx 10rpx;">
|
|||
|
</image>
|
|||
|
<image src="/static/def.png"
|
|||
|
style="width: 200rpx;height: 200rpx;border-radius:0rpx 18rpx 18rpx 0rpx;"></image>
|
|||
|
</view>
|
|||
|
|
|||
|
<view class="tn-flex tn-flex-col-center tn-flex-row-between"
|
|||
|
style="margin-top: 30rpx;font-size: 26rpx;font-weight: 400;color: #9B9B9B;">
|
|||
|
<view>2024.04.06</view>
|
|||
|
<view>
|
|||
|
<text class="tn-icon-eye"></text>
|
|||
|
<text>133</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="background-color: #fff;border-radius: 18rpx;padding:30rpx;">
|
|||
|
<view class="tn-flex">
|
|||
|
<view>
|
|||
|
<image src="/static/da.png" style="width: 35rpx;" class="no-img" mode="widthFix">
|
|||
|
</image>
|
|||
|
</view>
|
|||
|
<view class="tn-text-ellipsis-2"
|
|||
|
style="margin-left: 20rpx;font-size: 28rpx;font-weight: 400;color: #9B9B9B;">
|
|||
|
今天天气很清凉今天天气很清凉今天天气很清凉今天天气很清凉今天天气很清凉
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
goBack() {
|
|||
|
if (getCurrentPages().length > 1) {
|
|||
|
uni.navigateBack()
|
|||
|
} else {
|
|||
|
uni.redirectTo({
|
|||
|
url: '/pages/index/index'
|
|||
|
})
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style>
|
|||
|
|
|||
|
</style>
|