feat:订单id
This commit is contained in:
@@ -3,12 +3,11 @@
|
||||
<TopSafe></TopSafe>
|
||||
<Header title="我的合同" />
|
||||
<view class="contract-view">
|
||||
<ContractItem :type="type" :text="obj && obj.signatureName" :time="obj && obj.time" class="mt-24"
|
||||
@click="onBtn"></ContractItem>
|
||||
<ContractItem :type="type" :text="obj && obj.signatureName" :time="obj && obj.time" class="mt-24" @click="onBtn">
|
||||
</ContractItem>
|
||||
</view>
|
||||
<u-modal :show="tipsShow" :showCancelButton="true" confirmText="去认证"
|
||||
@cancel="onTipsCancel" @confirm="onConfirm" confirmColor="#7934F6"
|
||||
title="提示" content='签署合同需要进行实名认证,请先完成实名认证'></u-modal>
|
||||
<u-modal :show="tipsShow" :showCancelButton="true" confirmText="去认证" @cancel="onTipsCancel" @confirm="onConfirm"
|
||||
confirmColor="#7934F6" title="提示" content='签署合同需要进行实名认证,请先完成实名认证'></u-modal>
|
||||
<DownPopup :show="downShow" @ok="onSignContract" @cancel="onCancel" />
|
||||
<up-toast ref="uToastRef"></up-toast>
|
||||
<!-- 腾讯电子签H5 → 集成到UniApp -->
|
||||
@@ -35,7 +34,6 @@ export default {
|
||||
flowId: null,
|
||||
signUrl: null,
|
||||
downShow: false,
|
||||
selectItem: null,
|
||||
tipsShow: false,
|
||||
userInfo: null
|
||||
};
|
||||
@@ -124,11 +122,8 @@ export default {
|
||||
});
|
||||
return;
|
||||
}
|
||||
const params = {
|
||||
// 需要的参数
|
||||
orderId: this.selectItem.id,
|
||||
}
|
||||
const { bizcode, data } = await signContract(params);
|
||||
|
||||
const { bizcode, data } = await signContract();
|
||||
if (bizcode === 100) {
|
||||
this.flowId = data.flowId;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user