|
@@ -993,7 +993,7 @@
|
|
|
<el-button v-show="reslistitem.quoteCode == '200'" type="text" size="small" style="font-size:14px "
|
|
<el-button v-show="reslistitem.quoteCode == '200'" type="text" size="small" style="font-size:14px "
|
|
|
@click="bjdpreview(reslistitem.result.companyId)">报价单</el-button>
|
|
@click="bjdpreview(reslistitem.result.companyId)">报价单</el-button>
|
|
|
<el-button type="text" size="small" style="font-size:14px "
|
|
<el-button type="text" size="small" style="font-size:14px "
|
|
|
- @click="Payment(reslistitem.result.companyId, reslistitem.namesimple)"
|
|
|
|
|
|
|
+ @click="Payment(reslistitem.result.companyId, reslistitem)"
|
|
|
v-show="reslistitem.orderstatus == '2' && !('editStatus' in reslistitem.result)">付款码</el-button>
|
|
v-show="reslistitem.orderstatus == '2' && !('editStatus' in reslistitem.result)">付款码</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -2067,7 +2067,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer" v-if="orderstatus == '2'">
|
|
<span slot="footer" class="dialog-footer" v-if="orderstatus == '2'">
|
|
|
<el-button style="width: 100px;" type="primary" size="small"
|
|
<el-button style="width: 100px;" type="primary" size="small"
|
|
|
- @click="Payment(companyId, queryOrders.inscompany)">缴费二维码</el-button>
|
|
|
|
|
|
|
+ @click="Payment(companyId, queryOrders)">缴费二维码</el-button>
|
|
|
</span>
|
|
</span>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
<el-dialog title="转保确认码" :visible.sync="renewalCodedialogVisible" width="400px" style="font-weight: bold">
|
|
<el-dialog title="转保确认码" :visible.sync="renewalCodedialogVisible" width="400px" style="font-weight: bold">
|
|
@@ -4434,6 +4434,7 @@ export default {
|
|
|
// });
|
|
// });
|
|
|
// },
|
|
// },
|
|
|
Payment(id, item) {
|
|
Payment(id, item) {
|
|
|
|
|
+ console.log(id, item)
|
|
|
this.carcode(id, item);
|
|
this.carcode(id, item);
|
|
|
},
|
|
},
|
|
|
//选择协议 val:协议id row:协议列表 index:下标 item:保险公司数据集合
|
|
//选择协议 val:协议id row:协议列表 index:下标 item:保险公司数据集合
|
|
@@ -8093,7 +8094,8 @@ export default {
|
|
|
},
|
|
},
|
|
|
//返回上一步
|
|
//返回上一步
|
|
|
Back() { },
|
|
Back() { },
|
|
|
- carcode(id, item) {
|
|
|
|
|
|
|
+ carcode(id,item) {
|
|
|
|
|
+ console.log(id,item)
|
|
|
this.$api.letter.getQrCode(id).then(res => {
|
|
this.$api.letter.getQrCode(id).then(res => {
|
|
|
if (res.code == "200") {
|
|
if (res.code == "200") {
|
|
|
this.inscompany = res.data.inscompany; //保险公司
|
|
this.inscompany = res.data.inscompany; //保险公司
|
|
@@ -8107,7 +8109,8 @@ export default {
|
|
|
this.jqstartdate = res.data.jqStartDate; //交强起保日期
|
|
this.jqstartdate = res.data.jqStartDate; //交强起保日期
|
|
|
this.systartdate = res.data.syStartDate; //商业起保日期
|
|
this.systartdate = res.data.syStartDate; //商业起保日期
|
|
|
// this.mobile = res.data.applyinfo.mobile;//投保人手机号
|
|
// this.mobile = res.data.applyinfo.mobile;//投保人手机号
|
|
|
- let qrCodeUrl = res.data.qrCodeUrl
|
|
|
|
|
|
|
+ let qrCodeUrl = res.data.qrCodeUrl;
|
|
|
|
|
+
|
|
|
this.$api.letter.getThemeByUserId().then(res => {
|
|
this.$api.letter.getThemeByUserId().then(res => {
|
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
if (res.data[0] == 'GD') {
|
|
if (res.data[0] == 'GD') {
|
|
@@ -8142,6 +8145,7 @@ export default {
|
|
|
else {
|
|
else {
|
|
|
this.creatQrCode(qrCodeUrl);
|
|
this.creatQrCode(qrCodeUrl);
|
|
|
}
|
|
}
|
|
|
|
|
+ console.log(this.paycodeimg)
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|