talk_appAmin/pages/common/talkState/audit.vue

108 lines
2.3 KiB
Vue
Raw Normal View History

2024-06-04 22:00:48 +08:00
<template>
<view>
2024-06-05 16:57:58 +08:00
<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>
2024-06-13 00:46:01 +08:00
<image class="bacimg2" :src="sh2x2"></image>
2024-06-05 16:57:58 +08:00
<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;">
2024-06-29 13:29:19 +08:00
<up-button color="#c0f0ec" size="large" shape="circle" @click="leftClick"><span
2024-06-05 16:57:58 +08:00
class="fbText">继续发布</span></up-button>
</view>
2024-06-04 22:00:48 +08:00
</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;
2024-06-05 16:57:58 +08:00
const sh2x1 = iconConfig.sh2x1;
2024-06-13 00:46:01 +08:00
const sh2x2 = iconConfig.sh2x2;
2024-06-09 15:37:59 +08:00
const bgColor = ref('rgba(170, 0, 0, 0)');
2024-06-05 16:57:58 +08:00
const leftClick = () => {
proxy.$tab.navigateBack(1)
}
2024-06-04 22:00:48 +08:00
</script>
2024-06-09 15:37:59 +08:00
<style lang="scss" >
page{
background-color: #ffffff;
}
2024-06-05 16:57:58 +08:00
.bacimg2 {
2024-06-09 15:37:59 +08:00
z-index: 1;
2024-06-05 16:57:58 +08:00
width: 508rpx;
height: 540rpx;
position: fixed;
2024-06-13 00:46:01 +08:00
top: 0;
left: 0;
2024-06-05 16:57:58 +08:00
}
.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;
2024-06-09 15:37:59 +08:00
2024-06-05 16:57:58 +08:00
}
.shenhe2x1 {
width: 232rpx;
height: 228rpx;
position: fixed;
top: 276rpx;
left: 260rpx;
}
.text {
2024-06-08 17:06:47 +08:00
font-weight: 600;
2024-06-05 16:57:58 +08:00
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{
2024-06-08 17:06:47 +08:00
font-weight: 600;
2024-06-05 16:57:58 +08:00
font-size: 30rpx;
text-align: left;
color: #00CCBE !important;
}
2024-06-04 22:00:48 +08:00
</style>