123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <view class="content">
- <uni-navbar title="运输申请增加成功" leftIconSize="0">
- </uni-navbar>
- <view class="centenDw">
- <u--image src="../../static/images/succeed.png" width="400rpx" height="400rpx" :fade='false'></u--image>
- <!-- <view class="fontStyle mt">
- 人员增加成功
- </view> -->
- <!-- <view class="fontStyle">
- 审核后可正常使用企业功能
- </view> -->
- <u-button @click="submit" class="mt2 buttonStyle">去查看</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- submit() {
- this.$tab.reLaunch('/pages/transport/index')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- width: 100%;
- height: 100vh;
- background-image: url('@/static/images/bj.png');
- background-size: 100% 100%;
- /* border: 1px salmon soli;
- background-color: aquamarine; */
- }
- .flexCenten {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .fontStyle {
- text-align: center;
- font-size: 28rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 60rpx;
- }
- .mt {
- margin-top: 56rpx;
- }
- .buttonStyle {
- width: 238rpx;
- height: 85rpx;
- background: linear-gradient(0deg, #FFD334 0%, #F59A02 100%);
- box-shadow: 0px 2rpx 13rpx 0rpx rgba(27, 43, 95, 0.25);
- border-radius: 43rpx;
- border-width: 0;
- font-size: 28rpx;
- font-weight: bold;
- color: #FFFFFF;
- }
- .centenDw {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .mt2 {
- margin-top: 108rpx;
- }
- </style>
|