提交超录问题

This commit is contained in:
皮伟
2019-10-29 18:00:41 +08:00
parent a07fa9b75b
commit 1d8205130a
4 changed files with 17 additions and 0 deletions

View File

View File

View File

@@ -11,6 +11,7 @@
<div class="pt30 pl30 flex align-items-c">
<span class="mr10">投保人签名 :</span>
<div>
<van-button type="danger" size="small" @click="chaolu('0')" v-no-more-click="1000">超录</van-button>
<van-button type="danger" size="small" @click="sign('0')" v-no-more-click="1000">{{ isSign ? '签名' : '已签名' }}</van-button>
</div>
</div>
@@ -548,6 +549,22 @@ export default {
})
)
window.location.href = this.$mainUrl + '/sign/index.html'
},
// 超录
chaolu(status, keyword, offset) {
localStorage.setItem(
'signInfo',
JSON.stringify({
idNo: this.saleInsuredInfo.idNo,
name: this.saleInsuredInfo.name,
type: this.saleInsuredInfo.idType,
keyword: keyword,
status: status,
offset: offset,
originUrl: location.origin
})
)
window.location.href = this.$mainUrl + '/chaolu/index.html'
}
},
async created() {