59 lines
1.4 KiB
Vue

<template>
<view class="container">
<view class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }">
<view class="searchBox_add">
<view class="searchBox_left">
<u-icon bold color="#000" size="40" name="arrow-left" @click="back"></u-icon>
</view>
</view>
</view>
<view class="sucessImg">
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/enter_audit1.png" mode="aspectFill"></image>
</view>
<view class="Msg1">提交成功</view>
<view class="Msg2">
<view>入驻申请提交成功!</view>
<view>
请耐心等待工作人员处理
</view>
</view>
</view>
</template>
<script>
import {
apiArr
} from '../../../api/shopEnter';
import {
isPhone,
picUrl,
request,
menuButtonInfo,
upload,
NavgateTo
} from '../../../utils';
export default {
data() {
return {
picUrl,
top: "",
localHeight: "",
}
},
methods: {
back() {
NavgateTo('/pages/index/index')
}
},
onLoad() {
const meun = menuButtonInfo();
this.top = meun.top;
this.localHeight = meun.height;
}
}
</script>
<style>
@import url("./index.css");
</style>