108 lines
2.3 KiB
Vue
108 lines
2.3 KiB
Vue
<template>
|
|
<view>
|
|
|
|
<view>
|
|
<!-- 顶部导航栏 -->
|
|
<up-navbar leftText="" title="" :placeholder="true" :safeAreaInsetTop="true" @leftClick="leftClick"
|
|
:bgColor="bgColor">
|
|
|
|
<template #center>
|
|
<div class="navbarcenter"><span>发布话题</span></div>
|
|
</template>
|
|
</up-navbar>
|
|
</view>
|
|
<image class="bacimg2" :src="sh2x2"></image>
|
|
<view class="bgc"></view>
|
|
<view class="cardz">
|
|
<image :src="sh2x1" class="shenhe2x1"></image>
|
|
<span class="text">待审核</span>
|
|
</view>
|
|
<view style="position: fixed; top: 632rpx; width: 100%; padding-left: 32rpx; padding-right: 32rpx;">
|
|
<up-button color="#c0f0ec" size="large" shape="circle" @click="leftClick"><span
|
|
class="fbText">继续发布</span></up-button>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
<script setup>
|
|
import { onShow, onLoad } from '@dcloudio/uni-app'
|
|
import { getDicts } from "@/api/system/dict/data"
|
|
import { ref, reactive, getCurrentInstance } from 'vue'
|
|
import { useStore } from 'vuex';
|
|
const emit = defineEmits(['scrolltolower']);
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const iconConfig = proxy.iconConfig;
|
|
const sh2x1 = iconConfig.sh2x1;
|
|
const sh2x2 = iconConfig.sh2x2;
|
|
const bgColor = ref('rgba(170, 0, 0, 0)');
|
|
|
|
|
|
const leftClick = () => {
|
|
proxy.$tab.navigateBack(1)
|
|
}
|
|
</script>
|
|
<style lang="scss" >
|
|
page{
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
.bacimg2 {
|
|
z-index: 1;
|
|
width: 508rpx;
|
|
height: 540rpx;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.navbarcenter {
|
|
font-weight: 400;
|
|
|
|
font-size: 36rpx;
|
|
text-align: left;
|
|
color: #000000;
|
|
}
|
|
|
|
.bgc {
|
|
width: 100%;
|
|
height: 500rpx;
|
|
background: linear-gradient(-180deg, #a3e6df, #ffffff);
|
|
position: fixed;
|
|
top: 0rpx;
|
|
left: 0rpx;
|
|
|
|
}
|
|
|
|
.shenhe2x1 {
|
|
width: 232rpx;
|
|
height: 228rpx;
|
|
position: fixed;
|
|
top: 276rpx;
|
|
left: 260rpx;
|
|
}
|
|
|
|
.text {
|
|
font-weight: 600;
|
|
|
|
font-size: 48rpx;
|
|
text-align: left;
|
|
color: #00CCBE !important;
|
|
position: fixed;
|
|
top: 500rpx;
|
|
left: 300rpx;
|
|
}
|
|
.cardz{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.fbText{
|
|
font-weight: 600;
|
|
|
|
font-size: 30rpx;
|
|
text-align: left;
|
|
color: #00CCBE !important;
|
|
}
|
|
</style> |