Commit 00790bc3 authored by 黄奎's avatar 黄奎

页面修改

parent 4ffbe48d
......@@ -2190,7 +2190,7 @@
this.$router.push({
name: 'QuotationAduit',
query: {
configId: item.ConfigID,
offerid: item.Config_OfferId,
Qtype: 1,
blank: 'y',
tab: '报价单查看'
......
......@@ -1247,10 +1247,12 @@
</el-col>
</el-form>
</div>
<div v-if="dialog.show">
<el-dialog :visible.sync="dialog.show" width="1400px" title="报价详情">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</el-dialog>
</div>
</div>
</template>
<script>
import commonHotelInfo from "../../commonPage/commonHotelInfo.vue";
......
......@@ -876,8 +876,11 @@
<button class="normalBtn" type="primary" @click="SetSellingPoints">{{$t('pub.sureBtn')}}</button>
</div>
</div>
<el-dialog :visible.sync="dialog.show" width="1400px" title="报价详情">
<div v-if="dialog.show">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</div>
</el-dialog>
</div>
</template>
......
......@@ -67,7 +67,7 @@
<template>
<div>
<div class="CostNewPrice clearfix CP_Div" style="width:980px;">
<div class="CostNewPrice clearfix CP_Div" style="width:980px;" :loading="loading">
<el-form>
<div class="QuotationFirstDiv1">
<table>
......@@ -1138,7 +1138,7 @@
<script>
export default {
props: ["postConfig", "OtherPrice", "dayCostPrice", "LineList", "CostNumberList", "CurrencyNumberListExt",
"CostCurrencyList", "teamPrice"
"CostCurrencyList", "teamPrice","loading"
],
data() {
return {
......
......@@ -152,7 +152,7 @@
AuditContent: this.postData.AuditContent,
TravelState: Type,
OfferPayType: this.postData.OfferPayType,
TeamType:this.postData.TeamType,
TeamType: this.postData.TeamType,
};
this.loading = true;
this.apipost(
......@@ -178,7 +178,10 @@
});
},
getPostData() {
let configId = this.$route.query.configId;
let configId = 0;
if (this.$route.query.configId) {
configId = this.$route.query.configId;
}
let offerId = 0;
if (this.$route.query.offerid) {
offerId = this.$route.query.offerid;
......@@ -187,12 +190,12 @@
ID: configId,
offerId: offerId
};
this.loading=true;
this.loading = true;
this.apipost(
"travel_get_GetMyTravelInfo_V3",
msg,
res => {
this.loading=false;
this.loading = false;
if (res.data.resultCode == 1) {
var tempData = res.data.data;
if (tempData.ID && tempData.ID > 0) {
......
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