Commit c49925d7 authored by 黄奎's avatar 黄奎

组件选择菜单调整

parent 8113ad67
...@@ -1872,5 +1872,9 @@ input[type="number"] { ...@@ -1872,5 +1872,9 @@ input[type="number"] {
color: #67C23A; color: #67C23A;
} }
.webset_choosemenu .el-dialog__body{
padding: 0;
padding-left: 20px;
}
/************************** luochao 重新定义表格样式 END *******************************/ /************************** luochao 重新定义表格样式 END *******************************/
\ No newline at end of file
...@@ -308,7 +308,6 @@ ...@@ -308,7 +308,6 @@
}) })
}, },
AddMsgBaseInfo(obj){//给编辑数据赋值 AddMsgBaseInfo(obj){//给编辑数据赋值
console.log("obj",obj);
this.addMsg.InstitutionName=obj.InstitutionName;//制度名称 this.addMsg.InstitutionName=obj.InstitutionName;//制度名称
this.addMsg.Id=obj.ID; this.addMsg.Id=obj.ID;
this.outerVisible=true, this.outerVisible=true,
......
...@@ -509,7 +509,6 @@ ...@@ -509,7 +509,6 @@
}, },
watch: { watch: {
OfferArray: function (oldValue, newValue) { OfferArray: function (oldValue, newValue) {
console.log("DirectNew_Watch")
this.initData() this.initData()
} }
}, },
......
...@@ -233,7 +233,6 @@ ...@@ -233,7 +233,6 @@
</div> </div>
</div> </div>
<el-dialog :title="commonTitle" :visible.sync="isShowDialog" width="1000px"> <el-dialog :title="commonTitle" :visible.sync="isShowDialog" width="1000px">
<!--视频--> <!--视频-->
<plugvideodialog v-if="currentEditItem.Id=='white_label_video'" :plugData="currentEditItemData"></plugvideodialog> <plugvideodialog v-if="currentEditItem.Id=='white_label_video'" :plugData="currentEditItemData"></plugvideodialog>
<!--轮播图--> <!--轮播图-->
......
This diff is collapsed.
...@@ -303,7 +303,7 @@ ...@@ -303,7 +303,7 @@
</tbody> </tbody>
</table> </table>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
......
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
</tbody> </tbody>
</table> </table>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" class="webset_choosemenu" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -299,6 +299,9 @@ ...@@ -299,6 +299,9 @@
if (chooseMenuObj) { if (chooseMenuObj) {
this.clickItem.SubName = chooseMenuObj.MenuName; this.clickItem.SubName = chooseMenuObj.MenuName;
this.clickItem.LinkUrl = chooseMenuObj.MenuUrl; this.clickItem.LinkUrl = chooseMenuObj.MenuUrl;
if (chooseMenuObj.ImgUrl && chooseMenuObj.ImgUrl != '') {
this.clickItem.FileUrl = chooseMenuObj.ImgUrl;
}
} }
this.$refs.chooseMenu.initMenuCheck(); this.$refs.chooseMenu.initMenuCheck();
}, },
......
...@@ -214,7 +214,7 @@ ...@@ -214,7 +214,7 @@
</tbody> </tbody>
</table> </table>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
......
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
</tbody> </tbody>
</table> </table>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
......
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }
</style> </style>
<template> <template>
<div class="b2bDialog"> <div class="b2bDialog">
...@@ -241,10 +242,12 @@ ...@@ -241,10 +242,12 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
LinkUrl: LinkUrl, LinkUrl: LinkUrl,
}; };
this.plugData.Details[this.clickIndex].TripImageUrl = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.Details[this.clickIndex].TripImageUrl = obj.imgUrl;
}
this.plugData.Details[this.clickIndex].Price = obj.Price; this.plugData.Details[this.clickIndex].Price = obj.Price;
this.plugData.Details[this.clickIndex].DayNum = obj.DayNum; this.plugData.Details[this.clickIndex].DayNum = obj.DayNum;
this.plugData.Details[this.clickIndex].TripTitle = obj.Title; this.plugData.Details[this.clickIndex].TripTitle = obj.Title;
...@@ -255,4 +258,5 @@ ...@@ -255,4 +258,5 @@
}, },
mounted() {}, mounted() {},
}; };
</script>
\ No newline at end of file </script>
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
LinkUrl: LinkUrl, LinkUrl: LinkUrl,
}; };
this.plugData.TripImage = obj.imgUrl; this.plugData.TripImage = obj.imgUrl;
......
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }
</style> </style>
<template> <template>
<div class="bannerdialog"> <div class="bannerdialog">
...@@ -118,7 +119,7 @@ ...@@ -118,7 +119,7 @@
</el-row> </el-row>
</template> </template>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -166,10 +167,14 @@ ...@@ -166,10 +167,14 @@
if (chooseMenuObj) { if (chooseMenuObj) {
this.clickItem.LinkTitle = chooseMenuObj.MenuName; this.clickItem.LinkTitle = chooseMenuObj.MenuName;
this.clickItem.LinkUrl = chooseMenuObj.MenuUrl; this.clickItem.LinkUrl = chooseMenuObj.MenuUrl;
if (chooseMenuObj.ImgUrl && chooseMenuObj.ImgUrl != '') {
this.clickItem.ImageUrl = chooseMenuObj.ImgUrl;
}
} }
this.$refs.chooseMenu.initMenuCheck(); this.$refs.chooseMenu.initMenuCheck();
}, },
}, },
mounted() {}, mounted() {},
}; };
</script>
\ No newline at end of file </script>
...@@ -85,10 +85,11 @@ ...@@ -85,10 +85,11 @@
.choose_trip .table-striped>tr:nth-of-type(odd) { .choose_trip .table-striped>tr:nth-of-type(odd) {
background-color: #f9f9f9; background-color: #f9f9f9;
} }
</style> </style>
<template> <template>
<div class="choose_trip"> <div class="choose_trip">
<el-form > <el-form>
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item :label="$t('system.table_ssLine')" label-width="115px;"> <el-form-item :label="$t('system.table_ssLine')" label-width="115px;">
...@@ -167,7 +168,7 @@ ...@@ -167,7 +168,7 @@
{{ $t("ground.tianshu") }} {{ $t("ground.tianshu") }}
</th> </th>
<th> <th>
{{ $t("objFill.jiage") }} {{$t('Operation.Op_directPrice')}}
</th> </th>
<th> <th>
{{ $t("objFill.v101.tuanweizku") }} {{ $t("objFill.v101.tuanweizku") }}
...@@ -416,4 +417,5 @@ ...@@ -416,4 +417,5 @@
this.getLineList(); this.getLineList();
}, },
}; };
</script>
\ No newline at end of file </script>
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
Seat: totalSeat, Seat: totalSeat,
LinkUrl: LinkUrl, LinkUrl: LinkUrl,
Substitute: item.IsSubstitution > 0, Substitute: item.IsSubstitution > 0,
......
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }
</style> </style>
<template> <template>
<div class="WebSiteimgLink"> <div class="WebSiteimgLink">
...@@ -185,24 +186,28 @@ ...@@ -185,24 +186,28 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
}; };
if (this.checkIndex == 1) { if (this.checkIndex == 1) {
this.plugData.ImageUrl1 = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.ImageUrl1 = obj.imgUrl;
}
this.plugData.TripTitle1 = obj.Title; this.plugData.TripTitle1 = obj.Title;
} }
if (this.checkIndex == 2) { if (this.checkIndex == 2) {
this.plugData.ImageUrl2 = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.ImageUrl2 = obj.imgUrl;
}
this.plugData.TripTitle2 = obj.Title; this.plugData.TripTitle2 = obj.Title;
} }
this.$refs.chooseTrip.clearData(); this.$refs.chooseTrip.clearData();
}); });
} }
}, },
}, },
mounted() { mounted() {
}, },
}; };
</script>
\ No newline at end of file </script>
...@@ -63,12 +63,13 @@ ...@@ -63,12 +63,13 @@
<el-row style="margin-bottom:20px;"> <el-row style="margin-bottom:20px;">
<el-col :span="12"> <el-col :span="12">
<el-form-item> <el-form-item>
<el-button type="primary" size="small" @click="isShowTripDailog=true,clickIndex=1">{{$t('objFill.v101.xuanzhexingc')}}</el-button> <el-button type="primary" size="small" @click="isShowTripDailog=true,clickIndex=1">
{{$t('objFill.v101.xuanzhexingc')}}</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<div class="webSliderDiv" @click="clickIndex=1"> <div class="webSliderDiv" @click="clickIndex=1">
<el-upload :http-request="UploadAttachment" :multiple="true" accept="image/jpeg,image/gif,image/png,image/bmp" <el-upload :http-request="UploadAttachment" :multiple="true"
:show-file-list="false" action=""> accept="image/jpeg,image/gif,image/png,image/bmp" :show-file-list="false" action="">
<div class="sectionImg" :style="{backgroundImage:'url(' + plugData.TripImage1 + ')'}"></div> <div class="sectionImg" :style="{backgroundImage:'url(' + plugData.TripImage1 + ')'}"></div>
<div class="addIconDiv"> <div class="addIconDiv">
<i class="web_addImg iconfont icon-img_haha"></i> <i class="web_addImg iconfont icon-img_haha"></i>
...@@ -81,12 +82,13 @@ ...@@ -81,12 +82,13 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item> <el-form-item>
<el-button type="primary" size="small" @click="isShowTripDailog=true,clickIndex=2">{{$t('objFill.v101.xuanzhexingc')}}</el-button> <el-button type="primary" size="small" @click="isShowTripDailog=true,clickIndex=2">
{{$t('objFill.v101.xuanzhexingc')}}</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<div class="webSliderDiv" @click="clickIndex=2"> <div class="webSliderDiv" @click="clickIndex=2">
<el-upload :http-request="UploadAttachment" :multiple="true" accept="image/jpeg,image/gif,image/png,image/bmp" <el-upload :http-request="UploadAttachment" :multiple="true"
:show-file-list="false" action=""> accept="image/jpeg,image/gif,image/png,image/bmp" :show-file-list="false" action="">
<div class="sectionImg" :style="{backgroundImage:'url(' + plugData.TripImage2 + ')'}"></div> <div class="sectionImg" :style="{backgroundImage:'url(' + plugData.TripImage2 + ')'}"></div>
<div class="addIconDiv"> <div class="addIconDiv">
<i class="web_addImg iconfont icon-img_haha"></i> <i class="web_addImg iconfont icon-img_haha"></i>
...@@ -157,20 +159,24 @@ ...@@ -157,20 +159,24 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
}; };
if (this.clickIndex == 1) { if (this.clickIndex == 1) {
this.plugData.TripImage1 = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.TripTitle1=obj.Title; this.plugData.TripImage1 = obj.imgUrl;
}
this.plugData.TripTitle1 = obj.Title;
} }
if (this.clickIndex == 2) { if (this.clickIndex == 2) {
this.plugData.TripImage2 = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.TripTitle2=obj.Title; this.plugData.TripImage2 = obj.imgUrl;
}
this.plugData.TripTitle2 = obj.Title;
} }
this.$refs.chooseTrip.clearData(); this.$refs.chooseTrip.clearData();
}); });
} }
this.plugData.Describe=this.plugData.TripTitle1+"\r\n"+this.plugData.TripTitle2; this.plugData.Describe = this.plugData.TripTitle1 + "\r\n" + this.plugData.TripTitle2;
}, },
}, },
mounted() {}, mounted() {},
......
...@@ -14,10 +14,11 @@ ...@@ -14,10 +14,11 @@
.otherDialog .table-striped>tr:nth-of-type(odd) { .otherDialog .table-striped>tr:nth-of-type(odd) {
background-color: #f9f9f9; background-color: #f9f9f9;
} }
.otherDialog .webSliderDiv { .otherDialog .webSliderDiv {
line-height: 0; line-height: 0;
height: 115px; height: 115px;
width:400px; width: 400px;
border: 1px solid #ccc; border: 1px solid #ccc;
cursor: pointer; cursor: pointer;
position: relative; position: relative;
...@@ -53,10 +54,11 @@ ...@@ -53,10 +54,11 @@
.otherDialog .webSliderDiv>div { .otherDialog .webSliderDiv>div {
height: 100%; height: 100%;
} }
.otherDialog .sectionImg{
position:absolute; .otherDialog .sectionImg {
width:100%; position: absolute;
height:100%; width: 100%;
height: 100%;
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }
...@@ -95,7 +97,8 @@ ...@@ -95,7 +97,8 @@
</td> </td>
<td> <td>
<el-upload :http-request="UploadAttachment" :show-file-list="false" :multiple="true" accept="" action=''> <el-upload :http-request="UploadAttachment" :show-file-list="false" :multiple="true" accept="" action=''>
<el-button size="small" type="primary" @click="checkIndex=index">{{$t('tips.dianjishanhcuan')}}</el-button> <el-button size="small" type="primary" @click="checkIndex=index">{{$t('tips.dianjishanhcuan')}}
</el-button>
</el-upload> </el-upload>
</td> </td>
<td> <td>
...@@ -125,8 +128,9 @@ ...@@ -125,8 +128,9 @@
<el-col :span="24"> <el-col :span="24">
<el-form-item :label="$t('objFill.v101.duanluoneir')"> <el-form-item :label="$t('objFill.v101.duanluoneir')">
<!-- <el-input type="textarea" :rows="4" v-model="plugData.ParagraphContent"></el-input> --> <!-- <el-input type="textarea" :rows="4" v-model="plugData.ParagraphContent"></el-input> -->
<my-edit style="height:60vh" v-on:edit-value="plugData.ParagraphContent = arguments[0]" v-bind:editValue="plugData.ParagraphContent" <my-edit style="height:60vh" v-on:edit-value="plugData.ParagraphContent = arguments[0]"
v-bind:toolbarShow="toolbar" v-bind:referenceList="DefaultList"></my-edit> v-bind:editValue="plugData.ParagraphContent" v-bind:toolbarShow="toolbar"
v-bind:referenceList="DefaultList"></my-edit>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -156,15 +160,16 @@ ...@@ -156,15 +160,16 @@
</el-col> </el-col>
</el-row> </el-row>
</template> </template>
</el-form> </el-form>
</div> </div>
</template> </template>
<script> <script>
import MyEdit from "@/components/EditTemplate.vue"; import MyEdit from "@/components/EditTemplate.vue";
export default { export default {
props: ["plugData"], props: ["plugData"],
components:{MyEdit}, components: {
MyEdit
},
data() { data() {
return { return {
checkIndex: 0, checkIndex: 0,
...@@ -172,7 +177,7 @@ import MyEdit from "@/components/EditTemplate.vue"; ...@@ -172,7 +177,7 @@ import MyEdit from "@/components/EditTemplate.vue";
clean: true, clean: true,
font: false, //字体 font: false, //字体
narrative: false, //叙述, narrative: false, //叙述,
image:false, image: false,
bold: true, //加粗 bold: true, //加粗
underline: true, //下划线 underline: true, //下划线
header1: true, //H1 header1: true, //H1
...@@ -190,27 +195,24 @@ import MyEdit from "@/components/EditTemplate.vue"; ...@@ -190,27 +195,24 @@ import MyEdit from "@/components/EditTemplate.vue";
UploadAttachment(file) { UploadAttachment(file) {
let newArr = []; let newArr = [];
newArr.push(file.file); newArr.push(file.file);
let fileName = file.file.name;
var path = "/Upload/WebSite/"; var path = "/Upload/WebSite/";
this.UploadSelfFileT(path, newArr, x => { this.UploadSelfFileT(path, newArr, x => {
var str = x.data.FilePath; var str = x.data.FilePath;
var imgUrl = this.domainManager().ViittoFileUrl + str; var imgUrl = this.domainManager().ViittoFileUrl + str;
this.plugData.DownLoadList[this.checkIndex].LinkUrl = imgUrl; this.plugData.DownLoadList[this.checkIndex].LinkUrl = imgUrl;
this.plugData.DownLoadList[this.checkIndex].LinkTitle=fileName; this.plugData.DownLoadList[this.checkIndex].LinkTitle = fileName;
}); });
}, },
//上传图片 //上传图片
UploadAttachment2(file){ UploadAttachment2(file) {
let newArr = []; let newArr = [];
newArr.push(file.file); newArr.push(file.file);
let fileName = file.file.name;
var path = "/Upload/WebSite/"; var path = "/Upload/WebSite/";
this.UploadSelfFileT(path, newArr, x => { this.UploadSelfFileT(path, newArr, x => {
var str = x.data.FilePath; var str = x.data.FilePath;
var imgUrl = this.domainManager().ViittoFileUrl + str; var imgUrl = this.domainManager().ViittoFileUrl + str;
this.plugData.ImageUrl = imgUrl; this.plugData.ImageUrl = imgUrl;
}); });
} }
}, },
mounted() { mounted() {
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
.paragraphLink .webSliderDiv>div { .paragraphLink .webSliderDiv>div {
height: 100%; height: 100%;
} }
</style> </style>
<template> <template>
<div class="paragraphLink"> <div class="paragraphLink">
...@@ -126,7 +127,6 @@ ...@@ -126,7 +127,6 @@
this.plugData.ImageUrl = imgUrl; this.plugData.ImageUrl = imgUrl;
}); });
}, },
//获取选择行程数据 //获取选择行程数据
getChooseTripData() { getChooseTripData() {
var tempArray = this.$refs.chooseTrip.getChooseData(); var tempArray = this.$refs.chooseTrip.getChooseData();
...@@ -145,9 +145,11 @@ ...@@ -145,9 +145,11 @@
TCID: item.TCID, TCID: item.TCID,
Title: item.Title, Title: item.Title,
DayNum: item.DayNum, DayNum: item.DayNum,
Price: item.B2BPrice, Price: item.B2CPrice,
}; };
this.plugData.ImageUrl = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.ImageUrl = obj.imgUrl;
}
this.plugData.TripTitle = obj.Title; this.plugData.TripTitle = obj.Title;
this.plugData.LinkUrl = LinkUrl; this.plugData.LinkUrl = LinkUrl;
this.$refs.chooseTrip.clearData(); this.$refs.chooseTrip.clearData();
...@@ -159,4 +161,5 @@ ...@@ -159,4 +161,5 @@
}, },
}; };
</script>
\ No newline at end of file </script>
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
border-radius: 50%; border-radius: 50%;
overflow: hidden; overflow: hidden;
} }
</style> </style>
<template> <template>
<div class="pictureDialog"> <div class="pictureDialog">
...@@ -139,7 +140,7 @@ ...@@ -139,7 +140,7 @@
<el-col :span="24"> <el-col :span="24">
<el-form-item :label="$t('objFill.xingchengmc')+' '+(index+1)"> <el-form-item :label="$t('objFill.xingchengmc')+' '+(index+1)">
<el-input type="text" v-model="item.TripTitle"> <el-input type="text" v-model="item.TripTitle">
<el-button slot="append" @click="isShowTripDailog=true,checkIndex=index"> <el-button slot="append" @click="isShowTripDailog=true,checkIndex=index">
{{$t('objFill.v101.xuanzhexingc')}}</el-button> {{$t('objFill.v101.xuanzhexingc')}}</el-button>
</el-input> </el-input>
</el-form-item> </el-form-item>
...@@ -296,13 +297,18 @@ ...@@ -296,13 +297,18 @@
}; };
if (this.plugData.Type == 1 || this.plugData.Type == 2 || this.plugData.Type == 3 || this.plugData if (this.plugData.Type == 1 || this.plugData.Type == 2 || this.plugData.Type == 3 || this.plugData
.Type == 4 || this.plugData.Type == 5 || this.plugData.Type == 6) { .Type == 4 || this.plugData.Type == 5 || this.plugData.Type == 6) {
this.plugData.Details[this.checkIndex].ImageUrl = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.Details[this.checkIndex].ImageUrl = obj.imgUrl;
}
this.plugData.Details[this.checkIndex].Price = obj.Price; this.plugData.Details[this.checkIndex].Price = obj.Price;
this.plugData.Details[this.checkIndex].TripTitle = obj.Title; this.plugData.Details[this.checkIndex].TripTitle = obj.Title;
this.plugData.Details[this.checkIndex].DayNum = obj.DayNum; this.plugData.Details[this.checkIndex].DayNum = obj.DayNum;
this.plugData.Details[this.checkIndex].LinkUrl = obj.LinkUrl; this.plugData.Details[this.checkIndex].LinkUrl = obj.LinkUrl;
} else { } else {
this.plugData.Details[this.checkIndex].ImageUrl = obj.imgUrl; if (obj.imgUrl && obj.imgUrl != '') {
this.plugData.Details[this.checkIndex].ImageUrl = obj.imgUrl;
}
this.plugData.Details[this.checkIndex].Price2 = obj.Price; this.plugData.Details[this.checkIndex].Price2 = obj.Price;
this.plugData.Details[this.checkIndex].TripTitle2 = obj.Title; this.plugData.Details[this.checkIndex].TripTitle2 = obj.Title;
this.plugData.Details[this.checkIndex].DayNum2 = obj.DayNum; this.plugData.Details[this.checkIndex].DayNum2 = obj.DayNum;
...@@ -316,4 +322,5 @@ ...@@ -316,4 +322,5 @@
}, },
mounted() {}, mounted() {},
}; };
</script>
\ No newline at end of file </script>
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
......
...@@ -95,7 +95,6 @@ ...@@ -95,7 +95,6 @@
UploadAttachment(file) { UploadAttachment(file) {
let newArr = []; let newArr = [];
newArr.push(file.file); newArr.push(file.file);
let fileName = file.file.name;
var path = "/Upload/WebSite/"; var path = "/Upload/WebSite/";
this.UploadSelfFileT(path, newArr, x => { this.UploadSelfFileT(path, newArr, x => {
var str = x.data.FilePath; var str = x.data.FilePath;
......
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }
</style> </style>
<template> <template>
<div class="searchsdialog"> <div class="searchsdialog">
...@@ -83,7 +84,7 @@ ...@@ -83,7 +84,7 @@
</el-row> </el-row>
</template> </template>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -130,10 +131,14 @@ ...@@ -130,10 +131,14 @@
this.isShowMenuDialog = false; this.isShowMenuDialog = false;
if (chooseMenuObj) { if (chooseMenuObj) {
this.clickItem.LinkUrl = chooseMenuObj.MenuUrl; this.clickItem.LinkUrl = chooseMenuObj.MenuUrl;
if (chooseMenuObj.ImgUrl && chooseMenuObj.ImgUrl != '') {
this.clickItem.ImageUrl = chooseMenuObj.ImgUrl;
}
} }
this.$refs.chooseMenu.initMenuCheck(); this.$refs.chooseMenu.initMenuCheck();
}, },
}, },
mounted() {}, mounted() {},
}; };
</script>
\ No newline at end of file </script>
...@@ -204,7 +204,6 @@ ...@@ -204,7 +204,6 @@
UploadAttachment(file) { UploadAttachment(file) {
let newArr = []; let newArr = [];
newArr.push(file.file); newArr.push(file.file);
let fileName = file.file.name;
var path = "/Upload/WebSite/"; var path = "/Upload/WebSite/";
this.UploadSelfFileT(path, newArr, x => { this.UploadSelfFileT(path, newArr, x => {
var str = x.data.FilePath; var str = x.data.FilePath;
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
color: #fff; color: #fff;
} }
</style> </style>
<template> <template>
<div class="WebSite_slider"> <div class="WebSite_slider">
...@@ -89,7 +90,7 @@ ...@@ -89,7 +90,7 @@
</tbody> </tbody>
</table> </table>
</el-form> </el-form>
<el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="500px" append-to-body> <el-dialog :title="$t('objFill.qingxzcd')" :visible.sync="isShowMenuDialog" width="1000px" append-to-body>
<!-- 行程选中 --> <!-- 行程选中 -->
<chooseMenu ref="chooseMenu"></chooseMenu> <chooseMenu ref="chooseMenu"></chooseMenu>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -139,10 +140,14 @@ ...@@ -139,10 +140,14 @@
this.isShowMenuDialog = false; this.isShowMenuDialog = false;
if (chooseMenuObj) { if (chooseMenuObj) {
this.clickItem.LinkUrl = chooseMenuObj.MenuUrl; this.clickItem.LinkUrl = chooseMenuObj.MenuUrl;
if (chooseMenuObj.ImgUrl && chooseMenuObj.ImgUrl != '') {
this.clickItem.LinkImg = chooseMenuObj.ImgUrl;
}
} }
this.$refs.chooseMenu.initMenuCheck(); this.$refs.chooseMenu.initMenuCheck();
}, },
}, },
mounted() {} mounted() {}
}; };
</script>
\ No newline at end of file </script>
...@@ -801,7 +801,6 @@ export default { ...@@ -801,7 +801,6 @@ export default {
} }
this.supplierList.push(Obj) this.supplierList.push(Obj)
}) })
console.log(dataList,'====')
if(this.addMsg.ObjIdStr&&this.supplierList&&this.supplierList.length>0){ if(this.addMsg.ObjIdStr&&this.supplierList&&this.supplierList.length>0){
this.addMsg.ObjID = Number(this.supplierList[0].ID) this.addMsg.ObjID = Number(this.supplierList[0].ID)
} }
......
<template> <template>
<el-dialog custom-class='PingFangSC' :title="$t('objFill.v101.header.kaipiaotips')" :visible.sync="AirTicketVisible" center <el-dialog custom-class='PingFangSC' :title="$t('objFill.v101.header.kaipiaotips')" :visible.sync="AirTicketVisible"
:before-close="closeChangeMachie" width="1100px"> center :before-close="closeChangeMachie" width="1100px">
<div v-if="AirTicketListObj && AirTicketListObj.Data&&AirTicketListObj.Data.length>0" style="margin-top: 10px;"> <div v-if="AirTicketListObj && AirTicketListObj.Data&&AirTicketListObj.Data.length>0" style="margin-top: 10px;">
<p style="font-size: 18px;font-weight: bold;background: #d1d1d1;padding: 5px 10px;display:flex;"> <p style="font-size: 18px;font-weight: bold;background: #d1d1d1;padding: 5px 10px;display:flex;">
<span style="width: 70%; display: block;">{{$t('objFill.v101.header.weikaipiaoList')}}</span> <span style="width: 70%; display: block;">{{$t('objFill.v101.header.weikaipiaoList')}}</span>
<span style="color:red;font-size:12px;display:block;text-align:right;text-decoration: underline;margin-top:5px; cursor: pointer; <span style="color:red;font-size:12px;display:block;text-align:right;text-decoration: underline;margin-top:5px; cursor: pointer;
transition: background-color 0.3s; " @click="goTicketManager()">快去处理吧,未处理条数:{{AirTicketListObj.count}}</span> transition: background-color 0.3s; " @click="goTicketManager()">快去处理吧,未处理条数:{{AirTicketListObj.count}}</span>
</p> </p>
<el-table :data="AirTicketListObj.Data" tooltip-effect="dark" style="width: 100%"> <el-table :data="AirTicketListObj.Data" tooltip-effect="dark" style="width: 100%">
<el-table-column label="编号" width="100">> <el-table-column label="编号" width="100">>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.ID}} {{scope.row.ID}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="团期"> <el-table-column label="团期">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="TCID_cont PingFangSC"> <div class="TCID_cont PingFangSC">
<span v-show="scope.row.PriceList==null ||scope.row.PriceList.length==0">{{$t('pub.noMsg')}}</span> <span v-show="scope.row.PriceList==null ||scope.row.PriceList.length==0">{{$t('pub.noMsg')}}</span>
<p class="Ticket_TCID" v-for="(subItem,subIndex) in scope.row.PriceList" :key="subIndex"> <p class="Ticket_TCID" v-for="(subItem,subIndex) in scope.row.PriceList" :key="subIndex">
({{subItem.TCID}}){{subItem.TCNUM}}{{subItem.OutBranchName}} ({{subItem.TCID}}){{subItem.TCNUM}}{{subItem.OutBranchName}}
</p> </p>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('visa.v_hangban')" width=""> <el-table-column :label="$t('visa.v_hangban')" width="">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="FlightDivDetailsTM"> <div class="FlightDivDetailsTM">
<div class="_flightList" v-for="(subItem,subIndex) in scope.row.flightList" :key="subIndex"> <div class="_flightList" v-for="(subItem,subIndex) in scope.row.flightList" :key="subIndex">
<span class="FlightNumber">{{subItem.Flight_number}}</span> <span class="FlightNumber">{{subItem.Flight_number}}</span>
<span>{{subItem.FlightDate}} {{subItem.Departure_time}}</span> <span>{{subItem.FlightDate}} {{subItem.Departure_time}}</span>
<span>({{subItem.DIATA}}){{subItem.DepartureName}}</span> <span>({{subItem.DIATA}}){{subItem.DepartureName}}</span>
<span v-if="subItem.StopoverName">-</span> <span v-if="subItem.StopoverName">-</span>
<span v-if="subItem.StopoverName">({{subItem.StopoverIATA}}){{subItem.StopoverName}}</span> <span v-if="subItem.StopoverName">({{subItem.StopoverIATA}}){{subItem.StopoverName}}</span>
<span v-if="subItem.ArrivalCityName">-</span> <span v-if="subItem.ArrivalCityName">-</span>
<span v-if="subItem.ArrivalCityName">({{subItem.AIATA}}){{subItem.ArrivalCityName}}</span> <span v-if="subItem.ArrivalCityName">({{subItem.AIATA}}){{subItem.ArrivalCityName}}</span>
</div> </div>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column prop="EnterName" width="100" :label="$t('visaT.sale')"></el-table-column> --> <!-- <el-table-column prop="EnterName" width="100" :label="$t('visaT.sale')"></el-table-column> -->
<el-table-column prop="TicketNum" width="110" :label="$t('Airticket.Air_reservation')"></el-table-column> <el-table-column prop="TicketNum" width="110" :label="$t('Airticket.Air_reservation')"></el-table-column>
<el-table-column prop="UnionCount" width="80" :label="$t('salesModule.Union')"></el-table-column> <el-table-column prop="UnionCount" width="80" :label="$t('salesModule.Union')"></el-table-column>
<el-table-column prop="OrderTotalNum" width="80" :label="$t('leader.leader_registraNum')"></el-table-column> <el-table-column prop="OrderTotalNum" width="80" :label="$t('leader.leader_registraNum')"></el-table-column>
</el-table> </el-table>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
export default { export default {
props:["AirTicketListObj"], props: ["AirTicketListObj"],
data() { data() {
return { return {
AirTicketVisible: true AirTicketVisible: true
...@@ -61,18 +61,18 @@ ...@@ -61,18 +61,18 @@
}, },
methods: { methods: {
closeChangeMachie(done) { closeChangeMachie(done) {
console.log("我进来了");
this.$emit('AirTicketVisible') this.$emit('AirTicketVisible')
}, },
//跳转机票列表 //跳转机票列表
goTicketManager() { goTicketManager() {
this.$router.push({ this.$router.push({
path: "/TicketManager", path: "/TicketManager",
query: { query: {
blank: 'y' blank: 'y'
} }
}); });
}, },
} }
} }
</script> </script>
This diff is collapsed.
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
} else { } else {
msg.pUrl = "/html/ImpressionOpinionSurvey/busSign.html" msg.pUrl = "/html/ImpressionOpinionSurvey/busSign.html"
} }
console.log("createPriceImg", msg)
this.$http({ this.$http({
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
......
...@@ -6,9 +6,11 @@ ...@@ -6,9 +6,11 @@
<template> <template>
<div> <div>
<input type="button" :value="$t('objFill.v101.shoujihaoyz')" style="width:95%;height:200px;" @click="changeLoginType(1)" /> <input type="button" :value="$t('objFill.v101.shoujihaoyz')" style="width:95%;height:200px;"
@click="changeLoginType(1)" />
<br /> <br />
<input type="button" :value="$t('objFill.v101.huzhaohyz')" style="width:95%;height:200px;" @click="changeLoginType(2)" /> <input type="button" :value="$t('objFill.v101.huzhaohyz')" style="width:95%;height:200px;"
@click="changeLoginType(2)" />
</div> </div>
</template> </template>
...@@ -52,7 +54,6 @@ ...@@ -52,7 +54,6 @@
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
var tempData = res.data.data; var tempData = res.data.data;
console.log(tempData);
if (tempData && tempData.length > 0) { if (tempData && tempData.length > 0) {
this.qMsg.GuestId = tempData[0].Id; this.qMsg.GuestId = tempData[0].Id;
this.qMsg.SurName = tempData[0].SurName; this.qMsg.SurName = tempData[0].SurName;
......
...@@ -2525,7 +2525,6 @@ ...@@ -2525,7 +2525,6 @@
this.addMsg.SonControlID = oldValue.SonControlID; this.addMsg.SonControlID = oldValue.SonControlID;
this.SingleDMCPrice = oldValue.SingleDMCPrice; this.SingleDMCPrice = oldValue.SingleDMCPrice;
this.SingleAirticketMoney = oldValue.AirticketMoney; this.SingleAirticketMoney = oldValue.AirticketMoney;
console.log("SingleAirticketMoney", this.SingleAirticketMoney);
this.SingleDMCPricex = oldValue.SingleDMCPrice; this.SingleDMCPricex = oldValue.SingleDMCPrice;
this.priceObj = JSON.parse(JSON.stringify(oldValue)); this.priceObj = JSON.parse(JSON.stringify(oldValue));
if (this.pagesTitle == "当地游产品") { if (this.pagesTitle == "当地游产品") {
......
...@@ -122,9 +122,7 @@ export default { ...@@ -122,9 +122,7 @@ export default {
let locationName = window.location.hostname; let locationName = window.location.hostname;
let isOnline = 0; //0-本地测试,1-线上 let isOnline = 0; //0-本地测试,1-线上
let ocrUrl = "http://192.168.5.46:8888"; let ocrUrl = "http://192.168.5.46:8888";
domainUrl = "http://192.168.5.56"; domainUrl = "http://192.168.5.214";
domainUrl = "http://192.168.5.39:8083";
// domainUrl = "http://reborn.oytour.com"
let crmLocalFileStreamDownLoadUrl = ""; let crmLocalFileStreamDownLoadUrl = "";
crmLocalFileStreamDownLoadUrl = locationName.indexOf('oytour') !== -1 ? "http://crm.oytour.com" : "http://testcrm.oytour.com"; crmLocalFileStreamDownLoadUrl = locationName.indexOf('oytour') !== -1 ? "http://crm.oytour.com" : "http://testcrm.oytour.com";
let javaUrldo = ""; let javaUrldo = "";
...@@ -684,8 +682,6 @@ export default { ...@@ -684,8 +682,6 @@ export default {
var res = { var res = {
data: data data: data
} }
let str = `CheckUserAuth_authCode:` + authCode;
console.log(str, data);
successCall(res); successCall(res);
}, },
//供应商版请求接口方法 //供应商版请求接口方法
...@@ -1045,7 +1041,6 @@ export default { ...@@ -1045,7 +1041,6 @@ export default {
aliurl += '/' + objectKey aliurl += '/' + objectKey
} }
} }
console.log("aliurl", aliurl);
var resultJson = { var resultJson = {
data: "", data: "",
message: "", message: "",
...@@ -1158,7 +1153,6 @@ export default { ...@@ -1158,7 +1153,6 @@ export default {
}, },
//Blob文件上传 //Blob文件上传
Vue.prototype.uploadSelfBlob = function (path, files, paramsObj, successCall) { Vue.prototype.uploadSelfBlob = function (path, files, paramsObj, successCall) {
console.log("paramsObj", paramsObj);
let that = this; let that = this;
var uploadUrl = that.domainManager().UploadUrl + "/Upload/UploadBlob?fileType=1&fileLimit=5&&filePath=" + path; var uploadUrl = that.domainManager().UploadUrl + "/Upload/UploadBlob?fileType=1&fileLimit=5&&filePath=" + path;
var formData = new FormData(); var formData = new FormData();
......
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