123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <template>
- <view class="company">
- <view class="company-content">
- <view class="company-title">
- <u-icon
- name="clock-fill"
- color="#016BF6"
- size="40"
- style="margin-right: 16rpx"
- ></u-icon>
- 认证审核中</view
- >
- <view class="review-desc"
- >您于[2025-07-31]提交了企业认证申请,请耐心等待认证结果</view
- >
- <view class="review-btn" @click="goCompleteMsg">我知道了</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- address: "",
- addressDetail: "",
- };
- },
- methods: {
- goCompleteMsg() {
- uni.navigateTo({ url: "/package/jobIntention/completeMsg" });
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .company {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: flex;
- flex-direction: column;
- font-family: DM Sans;
- .company-content {
- flex: 1;
- padding: 40rpx;
- box-sizing: border-box;
- overflow: hidden;
- overflow-y: auto;
- padding-top: 200rpx;
- .company-title {
- color: rgba(29, 33, 41, 1);
- font-family: DM Sans;
- font-size: 36rpx;
- font-weight: 500;
- line-height: 44rpx;
- text-align: center;
- }
- .review-desc {
- color: rgba(102, 102, 102, 1);
- font-family: DM Sans;
- font-size: 24rpx;
- font-weight: 400;
- line-height: 32rpx;
- text-align: center;
- padding-top: 22rpx;
- padding-bottom: 50rpx;
- }
- .review-btn {
- padding: 16rpx 32rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 999px;
- background: rgba(255, 102, 0, 1);
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 400;
- margin: 0 22rpx;
- }
- }
- .bottom-btn {
- flex-shrink: 0;
- padding-bottom: 50rpx;
- text-align: center;
- color: #016bf6;
- font-family: DM Sans;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 36rpx;
- }
- }
- </style>
|