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

页面修改

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