Commit ba9fbe8f authored by 黄奎's avatar 黄奎

11

parent ea8358d9
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
SaveData(Type) { SaveData(Type) {
var nObj = { var nObj = {
ID: this.$route.query.offerid, ID: this.$route.query.offerid,
BatchNum:this.$route.query.BatchNum, BatchNum: this.$route.query.BatchNum,
AuditContent: this.postData.CRemarks, AuditContent: this.postData.CRemarks,
TravelState: Type, TravelState: Type,
OfferPayType: this.postData.OfferPayType, OfferPayType: this.postData.OfferPayType,
...@@ -132,11 +132,16 @@ ...@@ -132,11 +132,16 @@
}, },
getPostData() { getPostData() {
let BatchNum = ""; let BatchNum = "";
let offerid = 0;
if (this.$route.query.BatchNum) { if (this.$route.query.BatchNum) {
BatchNum = this.$route.query.BatchNum; BatchNum = this.$route.query.BatchNum;
} }
if (this.$route.query.offerid) {
offerid = this.$route.query.offerid;
}
let msg = { let msg = {
BatchNum: BatchNum BatchNum: BatchNum,
offerId: offerid,
}; };
this.loading = true; this.loading = true;
this.apipost( this.apipost(
......
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