Commit 4ee7f48c authored by 黄奎's avatar 黄奎

页面修改

parent 2495deac
...@@ -1209,7 +1209,6 @@ ...@@ -1209,7 +1209,6 @@
// 生成二维码 // 生成二维码
GetQrCode: function () { GetQrCode: function () {
let urlObj = this.domainManager(); let urlObj = this.domainManager();
let msg = { let msg = {
TCID: this.$route.query.TCID, TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID, orderID: this.$route.query.orderID,
......
...@@ -395,7 +395,7 @@ ...@@ -395,7 +395,7 @@
<input type="button" class="TCbtn-info" v-if="dataList.status==1" @click="getinvalid()" value="作废" /> <input type="button" class="TCbtn-info" v-if="dataList.status==1" @click="getinvalid()" value="作废" />
<input type="button" class="TCbtn-info" v-if="dataList.companySignature==''" <input type="button" class="TCbtn-info" v-if="dataList.companySignature==''"
@click="isShowFade=true,GetQrCode()" value="客户签字" /> @click="isShowFade=true,GetQrCode()" value="客户签字" />
<input type="button" class="TCbtn-info" v-if="dataList.companySignature!=''" value="下载" <input type="button" class="TCbtn-info" value="下载"
@click="toContractPDF(dataList.contractNum)" /> @click="toContractPDF(dataList.contractNum)" />
</span> </span>
</h2> </h2>
...@@ -1047,15 +1047,15 @@ ...@@ -1047,15 +1047,15 @@
// 生成二维码 // 生成二维码
GetQrCode: function () { GetQrCode: function () {
let urlObj = this.domainManager(); let urlObj = this.domainManager();
var guestId=0; var guestId = 0;
if(this.$route.query.guestId) if (this.$route.query.guestId) {
{ guestId = this.$route.query.guestId;
guestId=this.$route.query.guestId;
} }
let msg = { let msg = {
TCID: this.$route.query.TCID, TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID, orderID: this.$route.query.orderID,
guestId: guestId, guestId: guestId,
Id:this.$route.query.ID,
pUrl: "clientConfirm", pUrl: "clientConfirm",
}; };
this.$http({ this.$http({
......
...@@ -1477,6 +1477,7 @@ ...@@ -1477,6 +1477,7 @@
TCID: this.$route.query.TCID, TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID, orderID: this.$route.query.orderID,
guestId: this.$route.query.guestId, guestId: this.$route.query.guestId,
Id: this.$route.query.ID,
pUrl: "clientConfirm", pUrl: "clientConfirm",
}; };
this.$http({ this.$http({
...@@ -1761,7 +1762,10 @@ ...@@ -1761,7 +1762,10 @@
sendAudit() { sendAudit() {
//this.CtObj.auditContract = 1; //this.CtObj.auditContract = 1;
//this.apiJavaPost("/api/contract/dosaveOrUpdate", this.CtObj, res => { //this.apiJavaPost("/api/contract/dosaveOrUpdate", this.CtObj, res => {
this.apipost("travelcontract_get_UpdateAuditContractService", {"AuditContract":1,"Id":this.CtObj.Id}, res => { this.apipost("travelcontract_get_UpdateAuditContractService", {
"AuditContract": 1,
"Id": this.CtObj.Id
}, res => {
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.Success(res.data.message); this.Success(res.data.message);
this.getList(); this.getList();
......
...@@ -2239,6 +2239,7 @@ ...@@ -2239,6 +2239,7 @@
this.msg.TCID = this.$route.query.TCID; this.msg.TCID = this.$route.query.TCID;
this.msg.orderID = this.$route.query.orderID; this.msg.orderID = this.$route.query.orderID;
this.msg.guestId = this.$route.query.guestId; this.msg.guestId = this.$route.query.guestId;
this.msg.Id=this.$route.query.Id;
var h = window.screen.height; var h = window.screen.height;
var cHeight = document.getElementsByClassName("CliSignDiv")[0]; var cHeight = document.getElementsByClassName("CliSignDiv")[0];
cHeight.style.height = 900 + 'px'; cHeight.style.height = 900 + 'px';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment