mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-15 02:26:44 +08:00
[FIX]【自助入司流程优化】签名页将担保人和申请人分成两栏
This commit is contained in:
@@ -100,7 +100,7 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
//获取推荐人信息
|
//获取入司申请信息
|
||||||
agentAll() {
|
agentAll() {
|
||||||
let data = {
|
let data = {
|
||||||
// userModel: { mobile: 13000000000 } //线上去掉
|
// userModel: { mobile: 13000000000 } //线上去掉
|
||||||
|
|||||||
@@ -19,9 +19,32 @@
|
|||||||
</ul>
|
</ul>
|
||||||
点击【开始】按钮,进行相关操作
|
点击【开始】按钮,进行相关操作
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center mt20 mb60">
|
<div class="text-center mt20">
|
||||||
<van-button @click="faceAuth" v-no-more-click="1000" :disabled="isSubmit" type="danger" size="normal" style="width:30%">开始</van-button>
|
<van-button @click="faceAuth" v-no-more-click="1000" :disabled="isSubmit" type="danger" size="normal" style="width:30%">开始</van-button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="ebizGuarantor">
|
||||||
|
<van-field readonly label-width="120px" label="担保人" v-model="ebizGuarantor.name"></van-field>
|
||||||
|
<p class="p15 line-height">
|
||||||
|
以下内容需要您按照顺序阅读并签字确认:
|
||||||
|
</p>
|
||||||
|
<div class="p15 line-height">
|
||||||
|
需签署:
|
||||||
|
<ul>
|
||||||
|
<li class="flex" v-for="(sign, index) in signList" :key="index">
|
||||||
|
<div class="w260 blue">{{ sign.name }}</div>
|
||||||
|
<van-icon v-if="sign.signState === '1'" color="green" name="checked" />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
点击【开始】或【分享】,进行相关操作
|
||||||
|
</div>
|
||||||
|
<div class="flex justify-content-a mb60 mt20">
|
||||||
|
<van-button v-if="!isWeixin" @click="faceAuth" v-no-more-click="1000" :disabled="isSubmit" type="danger" size="normal" style="width:30%"
|
||||||
|
>分享</van-button
|
||||||
|
>
|
||||||
|
<van-button @click="faceAuth" v-no-more-click="1000" :disabled="isSubmit" type="danger" size="normal" style="width:30%">开始</van-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<van-button v-if="isSubmit" class="fixed bottom0" type="danger" v-no-more-click="1000" @click="clickSubmit" size="large">提交</van-button>
|
<van-button v-if="isSubmit" class="fixed bottom0" type="danger" v-no-more-click="1000" @click="clickSubmit" size="large">提交</van-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -29,9 +52,14 @@
|
|||||||
<script>
|
<script>
|
||||||
import { Field, Icon, Button } from 'vant'
|
import { Field, Icon, Button } from 'vant'
|
||||||
import { agreementQuery, signAgreement } from '@/api/ebiz/agentEenter/agentEenter.js'
|
import { agreementQuery, signAgreement } from '@/api/ebiz/agentEenter/agentEenter.js'
|
||||||
|
import { weixinShare } from '@/assets/js/utils/wxShare.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
let isWeixin = this.$utils.device().isWeixin //判断环境
|
||||||
return {
|
return {
|
||||||
|
// 是否在微信
|
||||||
|
isWeixin,
|
||||||
agentInfo: {
|
agentInfo: {
|
||||||
name: '皮伟',
|
name: '皮伟',
|
||||||
idNo: '422801199210070412',
|
idNo: '422801199210070412',
|
||||||
@@ -46,7 +74,7 @@ export default {
|
|||||||
// { name: '《个险销售人员代理合同》', signState: '1' }
|
// { name: '《个险销售人员代理合同》', signState: '1' }
|
||||||
],
|
],
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
ebizGuarantor: {}
|
ebizGuarantor: {} //担保人信息
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -223,4 +251,11 @@ export default {
|
|||||||
.signContract-container {
|
.signContract-container {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
.ebizGuarantor {
|
||||||
|
/deep/ .van-field__body {
|
||||||
|
.van-field__control {
|
||||||
|
color: #e9332e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user