|
@@ -0,0 +1,73 @@
|
|
|
|
|
+<config>
|
|
|
|
|
+{
|
|
|
|
|
+ "navigationBarTitleText": "认证审核进度",
|
|
|
|
|
+ "navigationBarBackgroundColor": "#ffffff",
|
|
|
|
|
+ "navigationBarTextStyle": "black"
|
|
|
|
|
+}
|
|
|
|
|
+</config>
|
|
|
|
|
+<template>
|
|
|
|
|
+ <div class="review">
|
|
|
|
|
+ <van-image width="100%" :src="img" fit="widthFix" />
|
|
|
|
|
+ <div class="content">
|
|
|
|
|
+ <div class="text1">{{ title }}</div>
|
|
|
|
|
+ <div class="text2">{{ desc }}</div>
|
|
|
|
|
+
|
|
|
|
|
+ <van-button type="primary" block>返回</van-button>
|
|
|
|
|
+ <van-button type="primary" plain block>取消申请</van-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script>
|
|
|
|
|
+export default {
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {};
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ img() {
|
|
|
|
|
+ const imgs = ['/native/imgs/kong_png_shenghezhong.png', '/native/imgs/kong_png_shengheshibai.png'];
|
|
|
|
|
+ return imgs[0];
|
|
|
|
|
+ },
|
|
|
|
|
+ title() {
|
|
|
|
|
+ const list = ['资料审核中!', '资料审核失败'];
|
|
|
|
|
+ return list[0];
|
|
|
|
|
+ },
|
|
|
|
|
+ desc() {
|
|
|
|
|
+ const list = [
|
|
|
|
|
+ '平台将于3日内完成资料审核,并将审核结果以短信的形式通知您',
|
|
|
|
|
+ '很遗憾,您的资料审核失败,请检查您填写的资料是否正确以及上传照片是否清晰'
|
|
|
|
|
+ ];
|
|
|
|
|
+ return list[0];
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+};
|
|
|
|
|
+</script>
|
|
|
|
|
+
|
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
|
+.review {
|
|
|
|
|
+ .flex-col();
|
|
|
|
|
+ padding: 22px 26px 100px;
|
|
|
|
|
+ .content {
|
|
|
|
|
+ .flex-col();
|
|
|
|
|
+ padding: 0 15px;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+
|
|
|
|
|
+ .text1 {
|
|
|
|
|
+ font-size: 22px;
|
|
|
|
|
+ color: #000000;
|
|
|
|
|
+ line-height: 32px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .text2 {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #939599;
|
|
|
|
|
+ line-height: 24px;
|
|
|
|
|
+ padding: 16px 0 60px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ ._van-button + ._van-button {
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|