feat: 优化代码

This commit is contained in:
2025-08-06 20:25:41 +08:00
parent 5f7d0ceb79
commit 73823c50fd
1179 changed files with 42944 additions and 189654 deletions
@@ -1,9 +1,10 @@
<template>
<view class="authentication_ok_warp">
<Header leftTitle="商家入驻" left-path-type="switchTab" left-path="/pages/mine/mine"/>
<Header leftTitle="商家入驻" left-path-type="switchTab" left-path="/pages/mine/mine" />
<view class="authentication_ok_content">
<view class="authentication_result">
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140" bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
<up-image src="/static/mine/auth_ok.png" mode="widthFix" shape="circle" width="140" height="140"
bgColor="#f1f6ff00" :fade="true" duration="450"></up-image>
<view class="result_value">提交成功</view>
</view>
<view class="reauthentication_warp">
@@ -17,85 +18,94 @@
</template>
<script>
import Header from '@/components/header.vue';
export default {
computed: {
},
components:{Header},
data() {
return {
}
},
mounted() {
},
methods: {
/**
* 重新认证
*/
reauthenticationFun(){
uni.switchTab({
url:'/pages/mine/mine',
})
}
import Header from '@/components/header.vue';
export default {
computed: {
},
components: { Header },
data() {
return {
}
},
mounted() {
},
methods: {
/**
* 重新认证
*/
reauthenticationFun() {
uni.switchTab({
url: '/pages/mine/mine',
})
}
}
}
</script>
<style lang="scss" scoped>
.authentication_ok_warp{
height: 100vh;
background-color: #FFFFFF;
.authentication_ok_content{
padding: 60rpx;
}
.authentication_result{
display: grid;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 100rpx;
.result_title{
font-weight: bold;
font-size: 40rpx;
color: #333333;
}
.result_value{
font-weight: bold;
font-size: 30rpx;
color: #666666;
line-height: 80rpx;
}
}
.reauthentication_warp{
display: grid;
justify-content: center;
.reauthentication_but_warp{
margin-top: 100rpx;
border: 1rpx solid $app-zt-color;
color: $app-zt-color;
padding: 8rpx 10rpx;
width: 200rpx;
border-radius: 10rpx;
text-align: center;
}
}
.authentication_info{
background: #F8F8F8;
border-radius: 10rpx;
padding: 30rpx;
margin-top: 30rpx;
}
.info_item{
font-weight: 500;
font-size: 28rpx;
color: #666666;
line-height: 66rpx;
}
.info_item_value{
.authentication_ok_warp {
height: 100vh;
background-color: #FFFFFF;
.authentication_ok_content {
padding: 60rpx;
}
.authentication_result {
display: grid;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 100rpx;
.result_title {
font-weight: bold;
font-size: 28rpx;
font-size: 40rpx;
color: #333333;
}
.result_value {
font-weight: bold;
font-size: 30rpx;
color: #666666;
line-height: 80rpx;
}
}
.reauthentication_warp {
display: grid;
justify-content: center;
.reauthentication_but_warp {
margin-top: 100rpx;
border: 1rpx solid $app-zt-color;
color: $app-zt-color;
padding: 8rpx 10rpx;
width: 200rpx;
border-radius: 10rpx;
text-align: center;
}
}
.authentication_info {
background: #F8F8F8;
border-radius: 10rpx;
padding: 30rpx;
margin-top: 30rpx;
}
.info_item {
font-weight: 500;
font-size: 28rpx;
color: #666666;
line-height: 66rpx;
}
.info_item_value {
font-weight: bold;
font-size: 28rpx;
color: #333333;
}
}
</style>