Commit 8d44b04a authored by 黄奎's avatar 黄奎

页面修改

parent 55ed0b7d
<style> <style>
.signSuccse{ .signSuccse {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
overflow-y: auto; overflow-y: auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.signSuccse .text{
.signSuccse .text {
font-size: 15px; font-size: 15px;
font-family: PingFang SC; font-family: PingFang SC;
color: #111111; color: #111111;
line-height: 21px; line-height: 21px;
} }
.signSuccse .btn{
.signSuccse .btn {
width: 420rpx; width: 420rpx;
height: 44px; height: 44px;
border-radius: 10px; border-radius: 10px;
...@@ -26,27 +28,36 @@ ...@@ -26,27 +28,36 @@
margin-top: 67px; margin-top: 67px;
font-size: 16px; font-size: 16px;
color: #FFFFFF; color: #FFFFFF;
} }
.popup_box{
.popup_box {
width: 100%; width: 100%;
background: #FFF; background: #FFF;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
border-radius: 10px; border-radius: 10px;
background-image: url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/signSuccsetc.png'); background-image: url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/signSuccsetc.png');
background-size:cover; background-size: cover;
position: relative; position: relative;
height: 622rpx; height: 622rpx;
} }
.font-box{
.font-box {
width: 70%; width: 70%;
/* margin: auto; */ /* margin: auto; */
text-align: center; text-align: center;
} }
.txte-red{
.font-box2 {
width: 70%;
/* margin: auto; */
}
.txte-red {
font-weight: bolder; font-weight: bolder;
color: red !important; color: red !important;
} }
...@@ -59,20 +70,23 @@ ...@@ -59,20 +70,23 @@
<view class="text" style="margin-top: 23px;">审核通过后(大会开始前3日)</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">原则上重点地区来(返)蓉人员需完成管控措施后可参加会议活动;</view> </view>
<view class="text txte-red">其它来(返)蓉人员持来(返)蓉前3天内2次核酸阴性证明,且完成抵蓉后第1次核酸检测后,持24小时内核酸阴性证明入场; <view class="font-box2">
市内参加会议活动人员需持24小时内核酸阴性证明入场。</view> <view class="text" style="text-indent: 2em;">原则上重点地区来(返)蓉人员需完成管控措施后可参加会议活动;</view>
<view class="text txte-red" style="text-indent: 2em;">其它来(返)蓉人员持来(返)蓉前3天内2次核酸阴性证明,且完成抵蓉后第1次核酸检测后,持24小时内核酸阴性证明入场;
市内参加会议活动人员需持24小时内核酸阴性证明入场。</view>
<view class="text txte-red" style="text-indent: 2em;">市内参加会议活动人员需持24小时内核酸阴性证明入场。</view>
</view>
<view class="font-box">
<view class="text">感谢您的支持</view> <view class="text">感谢您的支持</view>
</view> </view>
<view class="btn" @click="golist" :style="{'background-color':mainColor}">好的</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>
<u-icon name="cross" color="#909399" size="42" style="position: absolute;right: 15px;top: 15px;" @click="rzshow=false"></u-icon> <u-icon name="cross" color="#909399" size="42" style="position: absolute;right: 15px;top: 15px;" @click="rzshow=false"></u-icon>
</view> </view>
</u-popup> </u-popup>
</view> </view>
...@@ -80,51 +94,50 @@ ...@@ -80,51 +94,50 @@
<script> <script>
export default { export default {
data(){ data() {
return{ return {
mainColor:'', mainColor: '',
companyStatus:0, companyStatus: 0,
rzshow:false, rzshow: false,
} }
}, },
created() { created() {
this.mainColor = this.$uiConfig.mainColor; this.mainColor = this.$uiConfig.mainColor;
}, },
mounted() { mounted() {
setTimeout(()=>{ setTimeout(() => {
this.getComponyStatus() this.getComponyStatus()
},2000) }, 2000)
}, },
methods:{ methods: {
// 获取公司认证信息 // 获取公司认证信息
getComponyStatus(){ getComponyStatus() {
let that = this let that = this
let parms = { let parms = {
url: "/api/AppletTrade/GetCommpanyStatus", url: "/api/AppletTrade/GetCommpanyStatus",
} }
this.request2(parms, (res) => { this.request2(parms, (res) => {
if (res.resultCode == 1&&res.data!=null) { if (res.resultCode == 1 && res.data != null) {
// 获取公司名字和认证状态 // 获取公司名字和认证状态
that.companyStatus=res.data.CompanyStatus that.companyStatus = res.data.CompanyStatus
if(that.companyStatus!=5){ if (that.companyStatus != 5) {
this.rzshow=true this.rzshow = true
} }
} }
}) })
}, },
queren(){//去认证 queren() { //去认证
uni.reLaunch({ uni.reLaunch({
url: "/pages/kotra/identification", url: "/pages/kotra/identification",
}); });
}, },
golist(){//报名列表 golist() { //报名列表
uni.reLaunch({ uni.reLaunch({
url: "/pages/kotra/activityList" url: "/pages/kotra/activityList"
}); });
} }
} }
} }
</script> </script>
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