|
|
|
|
@ -1,5 +1,9 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view class="p-root-bind-applyForm g_w_all g_h_all g_bg_f_5 g_kuaishou">
|
|
|
|
|
<view v-show="isloading">
|
|
|
|
|
<rh-loading></rh-loading>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-show="!isloading">
|
|
|
|
|
<view class="g_h_10"></view>
|
|
|
|
|
<g-panel-card-info
|
|
|
|
|
:info="{
|
|
|
|
|
@ -18,7 +22,7 @@
|
|
|
|
|
<view class="g_flex_row_center g_mt_32">
|
|
|
|
|
<view class="g_w_184 g_h_40 g_flex_c g_radius_20 g_c_f g_fs_16"
|
|
|
|
|
:class="info.recordStatus == 1 || info.recordStatus == 2 ? 'g_bg_e g_c_9' : 'g_bg_main'"
|
|
|
|
|
:style="info.recordStatus == 1 || info.recordStatus == 2 ? 'pointer-events: none;' : ''"
|
|
|
|
|
:style="info.recordStatus == 1 || info.recordStatus == 2 ? 'pointer-events: none;background-color: #ccc;' : ''"
|
|
|
|
|
hover-class="thover"
|
|
|
|
|
@click="handleSubmit"
|
|
|
|
|
>
|
|
|
|
|
@ -26,6 +30,7 @@
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
@ -38,6 +43,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isloading: true,
|
|
|
|
|
wxCode: "",
|
|
|
|
|
info: {
|
|
|
|
|
logo: "",
|
|
|
|
|
@ -83,6 +89,7 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
init() {
|
|
|
|
|
let that = this;
|
|
|
|
|
that.isloading = true;
|
|
|
|
|
that.G.Get(
|
|
|
|
|
that.api.bind_getSubscribeDetail,
|
|
|
|
|
{
|
|
|
|
|
@ -91,8 +98,13 @@ export default {
|
|
|
|
|
(res) => {
|
|
|
|
|
console.log("企业基本信息:", res);
|
|
|
|
|
if(res.recordStatus == 1){
|
|
|
|
|
res.recordStatus = 1;
|
|
|
|
|
that.info = res;
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
that.isloading = false;
|
|
|
|
|
}, 100);
|
|
|
|
|
}else{
|
|
|
|
|
that.isloading = false;
|
|
|
|
|
uni.switchTab({
|
|
|
|
|
url: '/pages/home/index',
|
|
|
|
|
});
|
|
|
|
|
|