Commit f50aa53a authored by 黄奎's avatar 黄奎

样式修改

parent ebd9aa43
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
width: 40vw; width: 40vw;
height: 80rpx; height: 80rpx;
border-radius: 20rpx; border-radius: 20rpx;
background-color: #F70027; /* background-color: yellow; */
color: #fff; color: #fff;
text-align: center; text-align: center;
line-height: 80rpx; line-height: 80rpx;
...@@ -314,16 +314,17 @@ ...@@ -314,16 +314,17 @@
</view> </view>
<template v-if="signMsg.FirstShopLinkManList.length==0"> <template v-if="signMsg.FirstShopLinkManList.length==0">
<view> <view>
<view class="ac_upBtn" style="width:300rpx;margin:auto;" @click="addPerson()">提交联系人信息</view> <view class="ac_upBtn" style="width:300rpx;margin:auto;" :style="{'background-color':mc}" @click="addPerson()">提交联系人信息</view>
</view> </view>
</template> </template>
<template v-if="signMsg.FirstShopLinkManList.length>0"> <template v-if="signMsg.FirstShopLinkManList.length>0">
<view style="display: flex;justify-content: space-between;" v-if="isShowAdd"> <view style="display: flex;justify-content: space-between;" v-if="isShowAdd">
<view class="ac_upBtn" @click="addPerson()">提交联系人信息</view> <view class="ac_upBtn" :style="{'background-color':mc}" @click="addPerson()">提交联系人信息</view>
<view class="ac_CancelBtn" @click="isShowAdd=false">取消</view> <view class="ac_CancelBtn" @click="isShowAdd=false">取消</view>
</view> </view>
<view v-if="!isShowAdd"> <view v-if="!isShowAdd">
<view class="ac_CancelBtn" style="width:300rpx;margin:auto;color:#F70027;border-color:#F70027" <view class="ac_CancelBtn" style="width:300rpx;margin:auto;color:#fff;;"
:style="{'background-color':mc}"
@click="goOnAdd()">继续添加联系人</view> @click="goOnAdd()">继续添加联系人</view>
</view> </view>
</template> </template>
...@@ -343,7 +344,7 @@ ...@@ -343,7 +344,7 @@
</view> </view>
<view> <view>
<view class="ac_upBtn" style="width:90%;margin:25rpx auto" @click="goSignUp()">提交</view> <view class="ac_upBtn" style="width:90%;margin:25rpx auto" :style="{'background-color':mc}" @click="goSignUp()">提交</view>
</view> </view>
</view> </view>
<auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth="gbAuth"></auth> <auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth="gbAuth"></auth>
......
...@@ -41,18 +41,32 @@ ...@@ -41,18 +41,32 @@
position: relative; position: relative;
height: 622rpx; height: 622rpx;
} }
.font-box{
width: 70%;
margin: auto;
text-align: center;
}
.txte-red{
font-weight: bolder;
color: red !important;
}
</style> </style>
<template> <template>
<view class="signSuccse"> <view class="signSuccse">
<image src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/signSuccsebg.png" mode="aspectFill" style="width: 73px;height: 73px;margin-top: 80px;"></image> <image src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/signSuccsebg.png" mode="aspectFill" style="width: 73px;height: 73px;margin-top: 80px;"></image>
<view style="font-size: 20px;color: #111111;font-weight: bold;margin-top: 22px;">报名信息已提交</view> <view style="font-size: 20px;color: #111111;font-weight: bold;margin-top: 22px;">报名信息已提交</view>
<view class="text" style="margin-top: 23px;">审核通过后(大会开始前3日)</view> <view class="font-box">
<view class="text">参会入场短信将发送至您的手机</view> <view class="text" style="margin-top: 23px;">审核通过后(大会开始前3日)</view>
<view class="text">请留意查收!</view> <view class="text">参会入场短信将发送至您的手机</view>
<view class="text">在会前请进行核酸检测,</view> <view class="text">请留意查收!</view>
<view class="text " style="color: red;">进入会场须提供24小时核酸阴性报告。</view> <view class="text">原则上重点地区来(返)蓉人员需完成管控措施后可参加会议活动;</view>
<view class="text">感谢您的支持</view> <view class="text txte-red">其它来(返)蓉人员持来(返)蓉前3天内2次核酸阴性证明,且完成抵蓉后第1次核酸检测后,持24小时内核酸阴性证明入场;
<view class="btn" @click="golist">好的</view> 市内参加会议活动人员需持24小时内核酸阴性证明入场。</view>
<view class="text">感谢您的支持</view>
</view>
<view class="btn" @click="golist" :style="{'background-color':mainColor}">好的</view>
<u-popup v-model="rzshow" mode="center" length="80%" :closeable="true"> <u-popup v-model="rzshow" mode="center" length="80%" :closeable="true">
<view class="popup_box"> <view class="popup_box">
<view class="btn" style="position: absolute;left: 50%;bottom: 78rpx;margin-left: -210rpx;" @click="queren">立即入驻</view> <view class="btn" style="position: absolute;left: 50%;bottom: 78rpx;margin-left: -210rpx;" @click="queren">立即入驻</view>
...@@ -68,12 +82,13 @@ ...@@ -68,12 +82,13 @@
export default { export default {
data(){ data(){
return{ return{
mainColor:'',
companyStatus:0, companyStatus:0,
rzshow:false, rzshow:false,
} }
}, },
created() { created() {
this.mainColor = this.$uiConfig.mainColor;
}, },
mounted() { mounted() {
setTimeout(()=>{ setTimeout(()=>{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment