...
|
...
|
@@ -24,7 +24,7 @@ |
|
|
<div class="image fail"></div>
|
|
|
<div class="pane-body">
|
|
|
<h1>审核不通过</h1>
|
|
|
<p class="desc">您提交的姓名和身份证不匹配。</p>
|
|
|
<p class="desc">{{message}}</p>
|
|
|
</div>
|
|
|
|
|
|
<div class="footer" @click="onRepeatClick">重新提交</div>
|
...
|
...
|
@@ -58,7 +58,7 @@ export default { |
|
|
return {};
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState(['status'])
|
|
|
...mapState(['status', 'message'])
|
|
|
},
|
|
|
methods: {
|
|
|
...mapActions(['getStoreStatus']),
|
...
|
...
|
@@ -66,7 +66,7 @@ export default { |
|
|
this.$yoho.finishPage({});
|
|
|
},
|
|
|
onRepeatClick() {
|
|
|
this.$store.commit('license/form/FETCH_UFO_STATUS_SUCCESS', -1);
|
|
|
this.$store.commit('license/form/FETCH_UFO_STATUS_SUCCESS', {status: -1});
|
|
|
},
|
|
|
async onCashClick() {
|
|
|
const result = await this.getStoreStatus();
|
...
|
...
|
|