Commit ba9fbe8f authored by 黄奎's avatar 黄奎

11

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