You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
621 B
25 lines
621 B
2 months ago
|
<template>
|
||
|
<cs-page isCustom>
|
||
|
<template #header>
|
||
|
<view class="wd-flex wd-items-center" style="gap: 10px">
|
||
|
<u--image src="/static/favicon.png" width="20px" height="20px" mode="aspectFit"></u--image>
|
||
|
<view class="wd-text-16 wd-font-800">智慧生态</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
<view class="wd-flex wd-flex-col wd-flex-center" style="height: 100%; gap: 10px">
|
||
|
<icon type="waiting" size="40" />
|
||
|
<text class="wd-text-18">审核中</text>
|
||
|
</view>
|
||
|
</cs-page>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss"></style>
|