8.18
This commit is contained in:
@@ -297,12 +297,20 @@ onShow(()=>{
|
||||
height: calc(100vh - 120rpx);
|
||||
}
|
||||
.mostread{
|
||||
.title{
|
||||
font-weight: bold;
|
||||
}
|
||||
.cell{
|
||||
padding: 22rpx 0rpx!important;
|
||||
margin:0 30rpx;
|
||||
display: flex;
|
||||
.title{
|
||||
font-weight: normal!important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.box {
|
||||
flex: 1;
|
||||
@@ -440,6 +448,7 @@ onShow(()=>{
|
||||
margin-left: 10rpx;
|
||||
font-size: 32rpx;
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
line-height: 46rpx;
|
||||
}
|
||||
}
|
||||
@@ -454,7 +463,10 @@ onShow(()=>{
|
||||
margin: 0 30rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.more {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -161,7 +161,7 @@
|
||||
</view>
|
||||
<view class="bar" v-if="info.exchange_vote && info.exchange_vote.vote_title"></view>
|
||||
<view class="detail" v-if="info.exchange_vote && info.exchange_vote.vote_title">
|
||||
<view class="votebox" v-if="info.exchange_vote.is_have_voted==0 ">
|
||||
<view class="votebox" v-if="info.exchange_vote.is_enabled==1 && info.exchange_vote.is_have_voted==0 ">
|
||||
<view class="name">在线投票</view>
|
||||
<view class="title" >{{ info.exchange_vote.vote_title }}</view>
|
||||
<view class="group">
|
||||
@@ -182,7 +182,7 @@
|
||||
<view class="btn" @click="addVote()">投票</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="votebox" v-if="info.exchange_vote.is_enabled==0 || info.exchange_vote.is_have_voted==1 ">
|
||||
<view class="votebox" v-else>
|
||||
<view class="name">在线投票</view>
|
||||
<view class="title">{{ info.exchange_vote.vote_title }}</view>
|
||||
<view class="options">
|
||||
@@ -1831,7 +1831,7 @@ const readRecord= async()=>{
|
||||
.cloumn{
|
||||
padding-bottom: 30rpx;
|
||||
.stitle{
|
||||
font-size: 32rpx;
|
||||
font-size: 38rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
@@ -1885,6 +1885,7 @@ const readRecord= async()=>{
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
.num {
|
||||
color: #ff0000;
|
||||
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.earn {
|
||||
@@ -2109,8 +2110,9 @@ const readRecord= async()=>{
|
||||
background: none !important;
|
||||
}
|
||||
.num {
|
||||
font-weight: bold;
|
||||
margin-left: 10rpx;
|
||||
font-size: 32rpx;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
}
|
||||
.content {
|
||||
@@ -2148,7 +2150,7 @@ const readRecord= async()=>{
|
||||
color: #ffffff;
|
||||
}
|
||||
.name {
|
||||
font-size: 32rpx;
|
||||
font-size: 38rpx;
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
line-height: 46rpx;
|
||||
@@ -2319,10 +2321,11 @@ const readRecord= async()=>{
|
||||
.title {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
font-weight: bold;
|
||||
padding: 35rpx 30rpx 0;
|
||||
background: #fff;
|
||||
margin-top: -40rpx;
|
||||
font-weight: 400;
|
||||
|
||||
font-size: 38rpx;
|
||||
color: #111827;
|
||||
line-height: 54rpx;
|
||||
|
||||
@@ -302,6 +302,10 @@ onShow(() => {
|
||||
margin: 0 30rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.more {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
@ready="ready"
|
||||
pasteMode="origin"
|
||||
@input="changeInfoEditor"
|
||||
readOnly="true"
|
||||
:readOnly="true"
|
||||
|
||||
@epaste="epaste"
|
||||
></sv-editor>
|
||||
@@ -181,7 +181,7 @@
|
||||
@close="closeVote"
|
||||
@open="openVote"
|
||||
>
|
||||
<view class="votepop">
|
||||
<view class="votepop" v-if="showVote">
|
||||
<view class="titlebox">
|
||||
<view class="left" @click="closeVote">取消</view>
|
||||
<view class="right" @click="saveVote">保存</view>
|
||||
@@ -283,7 +283,7 @@
|
||||
</up-empty>
|
||||
</div>
|
||||
</view>
|
||||
<view class="draftlist" v-if="draftList.length>0">
|
||||
<scroll-view scroll-y="true" class="draftlist" v-if="draftList.length>0">
|
||||
<view
|
||||
class="cell"
|
||||
v-for="(item, index) in draftList"
|
||||
@@ -345,7 +345,8 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
</view>
|
||||
</up-popup>
|
||||
</div>
|
||||
@@ -773,6 +774,8 @@ const epaste=(e)=>{
|
||||
console.log(e)
|
||||
}
|
||||
const alertVote=()=>{
|
||||
console.log('voteData')
|
||||
console.log(voteData)
|
||||
if(exchange_id.value){
|
||||
uni.showToast({
|
||||
title: "投票发布后不能编辑",
|
||||
|
||||
@@ -917,6 +917,7 @@ const searchList = async (params) => {
|
||||
margin-left: 10rpx;
|
||||
font-size: 32rpx;
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
line-height: 46rpx;
|
||||
word-break:break-all;
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user