12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="flexitem">
- <view style="margin-top: 200rpx;">
- <u--image width="160rpx" height="160rpx" src="/static/supplier/icon_success1.png" ></u--image>
- </view>
- <view style="margin-top: 40rpx;font-size: 48rpx; font-weight: 700; color: #333333;">
- 提交成功
- </view>
- <view style="margin-top: 40rpx;font-size: 32rpx; font-weight: 400; color: #999999; width: 480rpx;">
- 工作人员将会在工作日内审核您的申请,请及时留意通知!
- </view>
- <view style="width: 650rpx; height: 80rpx; background: #46a6ff; text-align: center;
- border-radius: 40rpx;font-size: 28rpx;color: #ffffff;line-height: 80rpx;position: absolute;
- bottom: 20px;"
- @click="openLink()">
- 返回首页
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- info:[],
- title:'互动天地',
- }
- },
- async mounted() {
- },
- methods: {
- openLink(){
- uni.switchTab({
- url: '/pages/index/index'
- })
-
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .flexitem{
- height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- </style>
-
|