105 lines
3.5 KiB
Vue
105 lines
3.5 KiB
Vue
|
<template>
|
|||
|
<view style="background-color: #F5F5F5;min-height: 100vh;">
|
|||
|
<view class="ask_index_bg">
|
|||
|
<tn-nav-bar customBack :bottomShadow="false" backgroundColor="transparent">
|
|||
|
<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/w_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 v-for="item in 5" @click="openUrl('/pages/packageB/ask/info')" 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"
|
|||
|
style="background-color: #F7F7F7;padding: 20rpx;border-radius: 18rpx;margin-top: 20rpx;">
|
|||
|
<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 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>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<image @click="openUrl('/pages/packageB/ask/add')" src="/static/tiwen.png"
|
|||
|
style="width: 106rpx;position: fixed;right:30rpx;bottom: 150rpx;" mode="widthFix" class="no-img"></image>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
openUrl(url) {
|
|||
|
uni.navigateTo({
|
|||
|
url: url
|
|||
|
})
|
|||
|
},
|
|||
|
goBack() {
|
|||
|
if (getCurrentPages().length > 1) {
|
|||
|
uni.navigateBack()
|
|||
|
} else {
|
|||
|
uni.redirectTo({
|
|||
|
url: '/pages/index/index'
|
|||
|
})
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style scoped>
|
|||
|
.ask_index_bg {
|
|||
|
background: url('https://ysx.hschool.com.cn/uploads/1/20250509/4247d991a9a95810641fb3b533602978.png') no-repeat;
|
|||
|
background-size: 100%;
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
|
|||
|
page {
|
|||
|
background-color: #F5F5F5;
|
|||
|
}
|
|||
|
</style>
|