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

页面修改

parent 2495deac
......@@ -1209,7 +1209,6 @@
// 生成二维码
GetQrCode: function () {
let urlObj = this.domainManager();
let msg = {
TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID,
......
......@@ -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.companySignature==''"
@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)" />
</span>
</h2>
......@@ -1047,15 +1047,15 @@
// 生成二维码
GetQrCode: function () {
let urlObj = this.domainManager();
var guestId=0;
if(this.$route.query.guestId)
{
guestId=this.$route.query.guestId;
var guestId = 0;
if (this.$route.query.guestId) {
guestId = this.$route.query.guestId;
}
let msg = {
TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID,
guestId: guestId,
Id:this.$route.query.ID,
pUrl: "clientConfirm",
};
this.$http({
......
......@@ -1477,6 +1477,7 @@
TCID: this.$route.query.TCID,
orderID: this.$route.query.orderID,
guestId: this.$route.query.guestId,
Id: this.$route.query.ID,
pUrl: "clientConfirm",
};
this.$http({
......@@ -1761,7 +1762,10 @@
sendAudit() {
//this.CtObj.auditContract = 1;
//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) {
this.Success(res.data.message);
this.getList();
......
......@@ -2239,6 +2239,7 @@
this.msg.TCID = this.$route.query.TCID;
this.msg.orderID = this.$route.query.orderID;
this.msg.guestId = this.$route.query.guestId;
this.msg.Id=this.$route.query.Id;
var h = window.screen.height;
var cHeight = document.getElementsByClassName("CliSignDiv")[0];
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