Commit 53089748 authored by 黄奎's avatar 黄奎

页面修改

parent 3b9ee8d4
......@@ -240,7 +240,7 @@
</div>
</template>
<script>
import CostNewPrice from "../TravelNewQuotation/CostNewPrice";
import CostNewPriceMun from "../TravelNewQuotation/CostNewPriceMun";
export default {
......@@ -264,7 +264,7 @@
},
components: {
CostNewPrice: CostNewPrice,
CostNewPriceMun: CostNewPriceMun
}
};
......
......@@ -267,10 +267,8 @@
this.postData.NightNum = tempData.NightNum;
}
this.postData.CustomerName = tempData.CustomerName;
if (tempData.OutBranchId && tempData.OutBranchId >= 0) {
this.postData.OutBranchId = tempData.OutBranchId;
}
this.postData.OutDateTime = tempData.OutDateTime;
this.postData.OutBranchId = Number(tempData.OutBranchId);
this.postData.OfferPayType = tempData.OfferPayType;
this.postData.SaleOfferPayType = tempData.SaleOfferPayType;
this.postData.TravelState = tempData.TravelState;
......@@ -311,7 +309,7 @@
if (this.$route.query.OutDateTime && this.$route.query.OutDateTime != '') {
this.postData.OutDateTime = this.$route.query.OutDateTime;
}
if (this.$route.query.OutBranchId) {
if (this.$route.query.OutBranchId && this.$route.query.OutBranchId != '') {
this.postData.OutBranchId = Number(this.$route.query.OutBranchId);
}
if (this.$route.query.Title && this.$route.query.Title != '') {
......@@ -319,7 +317,6 @@
}
//团控列表跳转参数结束
console.log("this.post", this.postData);
},
components: {
DirectNewQuotation: DirectNewQuotation
......
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