Commit ef4336c6 authored by 黄奎's avatar 黄奎

页面修改

parent 9d73ccd4
<style>
@import "../../assets/css/newTravelManager.css";
.productQuerySearch {
width: 100%;
min-height: auto;
......@@ -541,6 +542,7 @@
.productQuerybottomLayer .el-upload-list {
width: 200px;
}
</style>
<template>
<div class="flexOne">
......@@ -1228,6 +1230,15 @@
{{ item.Title }}
</p>
</el-tooltip>
<p v-if="item.CustomerName&&item.CustomerName!=''"
style="font-size: 11px;font-weight:bold;color:red">
<span v-if="item.CustomerName">客户名称:{{item.CustomerName}}
</span>
</p>
<p v-if="item.PriceOfferUrl&&item.PriceOfferUrl!=''">
<a style="color:blue;" :href="item.PriceOfferUrl" v-if="item.PriceOfferUrl"
target="_blank">下载报价单</a>
</p>
</div>
</div>
<div class="d2">
......@@ -1335,8 +1346,8 @@
</p>
<p>
<span>{{ $t("scen.sc_cp") }}</span>{{ item.OutBranchName }}
<span class="TC_neibu" style="float: inherit;color: #ffffff;margin-left: 5px;" v-if="item.StandardCurrencyName"
:class="{'TCneibu':item.StandardCurrencyName=='人民币','TCb2b':item.StandardCurrencyName=='日元',
<span class="TC_neibu" style="float: inherit;color: #ffffff;margin-left: 5px;"
v-if="item.StandardCurrencyName" :class="{'TCneibu':item.StandardCurrencyName=='人民币','TCb2b':item.StandardCurrencyName=='日元',
'TCb2c':item.StandardCurrencyName=='新台币','AppPlat':item.StandardCurrencyName=='',
'otherPlat':item.StandardCurrencyName=='',}">{{item.StandardCurrencyName}}结算</span>
</p>
......@@ -2952,7 +2963,7 @@
this.autoRemarks("TripleRoomNum", "三人房");
},
submitForm(addMsg) {
if(this.TotalNumber==0){
if (this.TotalNumber == 0) {
this.$message.error('总人数不能小于1人')
return
}
......@@ -3651,4 +3662,5 @@
this.getFylx();
},
};
</script>
<style>
@import "../../../assets/css/newTravelManager.css";
.opbdList{
.opbdList {
font-weight: bold;
display: inline-block;
width: 25px;
......@@ -12,7 +13,8 @@
cursor: pointer;
text-align: center;
}
.Audian_cent{
.Audian_cent {
-webkit-box-flex: 1;
-ms-flex: 1;
display: -webkit-box;
......@@ -22,7 +24,12 @@
-ms-flex-align: center;
align-items: center;
}
.quoTation .Audit_left{align-items: center;border-right: 1px dashed #dddddd;padding-right: 20px;}
.quoTation .Audit_left {
align-items: center;
border-right: 1px dashed #dddddd;
padding-right: 20px;
}
</style>
<template>
......@@ -87,7 +94,8 @@
<span>{{item.LineName}}</span>
</el-tooltip>
</p>
<p class="Quo_Content" style="padding-right:20px;width:100%;"><i v-if="item.LtName" class="iconfont icon-richeng"></i>
<p class="Quo_Content" style="padding-right:20px;width:100%;"><i v-if="item.LtName"
class="iconfont icon-richeng"></i>
<span>{{item.LtName}}</span>
</p>
</div>
......@@ -99,7 +107,8 @@
<span>{{item.Title}}</span>
</el-tooltip>
</p>
<p class="Quo_Content" style="padding-right:20px;width:100%;"><i v-if="item.CustomerName" class="iconfont icon-richeng"></i>
<p class="Quo_Content" style="padding-right:20px;width:100%;"><i v-if="item.CustomerName"
class="iconfont icon-richeng"></i>
<span>{{item.CustomerName}}</span>
</p>
</div>
......@@ -252,7 +261,7 @@
</div>
</el-col>
<el-col :span="10" style="margin-top:30px;">
<el-form-item label="审批说明" >
<el-form-item label="审批说明">
<el-input type="textarea" class="w600" v-model="AuditInfo.AuditContent"></el-input>
</el-form-item>
</el-col>
......
......@@ -787,7 +787,7 @@
</template>
</td>
</tr>
<tr>
<tr v-if="IsEdit==2">
<td colspan="13" style="text-align:center;">
<input type="button" class="normalBtn" value="同意" @click="SubSaveType(3)" />
<input type="button" class="normalBtn" value="拒绝" @click="SubSaveType(4)" />
......
<style>
</style>
<template>
<div>
支付宝支付
<iframe :srcdoc="aliMsg.payData" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"
width="200" height="200" style="overflow: hidden">
</iframe>
</div>
</template>
<script>
export default {
components: {
},
data() {
return {
aliMsg: {
payData: ""
},
isShow: true,
};
},
mounted() {
},
created() {
this.testALiPay();
},
methods: {
testALiPay() {
var postMsg = {
"OrderNo": "D202303171113570001"
};
this.apipost(
"GetAliPayByOrderNo_post", postMsg,
res => {
if (res.data.resultCode == 1) {
this.aliMsg.payData = res.data.data.QrCode;
// this.isShow=true;
this.$nextTick(() => {
// document.querySelector(".aLiForom form").setAttribute("target", "_blank");
// document.querySelector(".aLiForom form input")[1].click();
});
}
}
);
},
}
};
</script>
......@@ -26,6 +26,7 @@ export default {
title: '领队用款计划打印'
},
},
{ //签证个人申请表信息
path: '/VisaPersonalForm',
name: 'VisaPersonalForm',
......@@ -88,6 +89,14 @@ export default {
name: 'TravelControlTrip',
component: resolve => require(['@/components/TravelControlTrip'], resolve),
},
{
path: '/aliPay', //支付宝支付
name: 'aliPay',
component: resolve => require(['@/components/aliPay'], resolve),
meta: {
title: '支付宝支付'
},
},
{
path: '/index',
name: 'index',
......@@ -938,7 +947,7 @@ export default {
}, {
path: '/HotelQueryList', //酒店查询统计
name: 'HotelQueryList',
component: resolve => require(['@/components/Hotel/singleProduct/HotelQueryList'], resolve),//@/components/Hotel/HotelQueryList
component: resolve => require(['@/components/Hotel/singleProduct/HotelQueryList'], resolve), //@/components/Hotel/HotelQueryList
meta: {
title: '酒店查询统计'
},
......@@ -2290,8 +2299,7 @@ export default {
meta: {
title: '团控列表'
},
},
, {
}, , {
path: '/TravelSupplier', //供应商列表
name: 'TravelSupplier',
component: resolve => require(['@/components/newTravelManager/TravelGroupControl/TravelSupplier'], resolve),
......@@ -5607,6 +5615,7 @@ export default {
title: '电子合同'
}
},
{
path: '/SingleContract', //单项合同
name: 'SingleContract',
......
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