Commit 718de6a2 authored by 黄奎's avatar 黄奎

页面修改

parent 7d261c80
......@@ -124,7 +124,7 @@
<tr>
<td width="80" class="txtRightCost">出团公司</td>
<td>
<el-select class=" multiple_input" v-model="postConfig.OutBranchId">
<el-select class=" multiple_input" v-model="postConfig.OutBranchId" filterable>
<el-option v-for='item in companyList' :key="item.id" :label="item.bName" :value="item.id">
</el-option>
</el-select>
......@@ -1038,7 +1038,7 @@
<el-button size="small" type="primary">报价单附件</el-button>
</el-upload>
<a style="margin-left:20px;color:blue;" :href="teamPrice.ContractArray[0].Url"
v-if="teamPrice.ContractArray" target="_blank">预览</a>
v-if="teamPrice.ContractArray&&teamPrice.ContractArray.length>0" target="_blank">预览</a>
</td>
</tr>
</table>
......
......@@ -755,8 +755,9 @@
<tr>
<td class="CP_ComTitle2">附件</td>
<td colspan="11">
<a style="margin-left:20px;color:blue;" :href="teamPrice.ContractArray[0].Url"
v-if="teamPrice.ContractArray" target="_blank">预览</a>
v-if="teamPrice.ContractArray&&teamPrice.ContractArray.length>0" target="_blank">预览</a>
</td>
</tr>
<tr>
......
......@@ -129,6 +129,7 @@
BackSafeMoney: 0, //退保险费
ContractUrl: "", //合同地址
PriceRemark: "", //定价备注
ContractArray:[],
},
LineList: [], //线路列表
loading: false
......
......@@ -743,7 +743,9 @@
PriceTeamType: 2,
TCSaleState: 1,
};
if (tempData.travelQuotationPriceObj && tempData.travelQuotationPriceObj.ContractArray) {
console.log(" tempData.travelQuotationPriceObj", tempData.travelQuotationPriceObj.ContractArray);
if (tempData.travelQuotationPriceObj && tempData.travelQuotationPriceObj.ContractArray && tempData
.travelQuotationPriceObj.ContractArray.length > 0) {
priceObj.PriceOfferUrl = tempData.travelQuotationPriceObj.ContractArray[0].Url;
}
if (tempData.travelQuotationPriceObj && tempData.travelQuotationPriceObj.ChildNeedPrice) {
......
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