Commit 53089748 authored by 黄奎's avatar 黄奎

页面修改

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