Commit 5fd991d2 authored by 黄奎's avatar 黄奎

新增说明

parent 85e73afe
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
<div class="TFBTline"></div> <div class="TFBTline"></div>
</div> </div>
<div class="TFchildContent clearfix"> <div class="TFchildContent clearfix">
<!--九宫格-->
<div class="TFLeft" v-if="FeatureData.FeatureType==FeatureTypeState.nineGrid"> <div class="TFLeft" v-if="FeatureData.FeatureType==FeatureTypeState.nineGrid">
<span>{{$t('sm.xiaoguoyldzxg')}}</span> <span>{{$t('sm.xiaoguoyldzxg')}}</span>
<div class="nineGrid clearfix"> <div class="nineGrid clearfix">
...@@ -51,6 +52,7 @@ ...@@ -51,6 +52,7 @@
</div> </div>
</div> </div>
</div> </div>
<!--幻灯片-->
<div class="TFLeft" v-if="FeatureData.FeatureType==FeatureTypeState.slideType"> <div class="TFLeft" v-if="FeatureData.FeatureType==FeatureTypeState.slideType">
<span>{{$t('sm.xiaoguoyldzxg')}}</span> <span>{{$t('sm.xiaoguoyldzxg')}}</span>
<div class="TFIMGContent"> <div class="TFIMGContent">
...@@ -64,6 +66,7 @@ ...@@ -64,6 +66,7 @@
</div> </div>
</div> </div>
</div> </div>
<!--自定义 开始-->
<div v-if="FeatureData.FeatureType==FeatureTypeState.userDefined"> <div v-if="FeatureData.FeatureType==FeatureTypeState.userDefined">
<span class="userDeSpan">{{$t('sm.xiaoguoyldzxg')}}</span> <span class="userDeSpan">{{$t('sm.xiaoguoyldzxg')}}</span>
<div class="userDefined"> <div class="userDefined">
...@@ -91,13 +94,17 @@ ...@@ -91,13 +94,17 @@
</div> </div>
</div> </div>
</div> </div>
<!--自定义 结束-->
<!--行程特色第一版-->
<div v-if="FeatureData.FeatureType===FeatureTypeState.travelSpecial"> <div v-if="FeatureData.FeatureType===FeatureTypeState.travelSpecial">
<new-feature ref='newFeature' :data='FeatureData'></new-feature> <new-feature ref='newFeature' :data='FeatureData'></new-feature>
</div> </div>
<!--行程特色第二版(黄、粉、蓝)-->
<div <div
v-if="(FeatureData.FeatureType===FeatureTypeState.travelSpecial2 || FeatureData.FeatureType===6 || FeatureData.FeatureType===7) && FeatureDataFlag"> v-if="(FeatureData.FeatureType===FeatureTypeState.travelSpecial2 || FeatureData.FeatureType===6 || FeatureData.FeatureType===7) && FeatureDataFlag">
<newFeature2 ref='newFeature2' :FeatureData='FeatureData'></newFeature2> <newFeature2 ref='newFeature2' :FeatureData='FeatureData'></newFeature2>
</div> </div>
<!--行程特色第三版 -->
<UpgradedVersion v-if="FeatureData.FeatureType==8"></UpgradedVersion> <UpgradedVersion v-if="FeatureData.FeatureType==8"></UpgradedVersion>
</div> </div>
</div> </div>
...@@ -125,8 +132,6 @@ ...@@ -125,8 +132,6 @@
import { import {
setTimeout setTimeout
} from 'timers'; } from 'timers';
export default { export default {
components: { components: {
vEditDiv, vEditDiv,
...@@ -213,7 +218,6 @@ ...@@ -213,7 +218,6 @@
imgUrl: Travelslider, imgUrl: Travelslider,
TypeState: 8 TypeState: 8
} }
], //tab数组 ], //tab数组
templateColorArray: [{ templateColorArray: [{
id: 1, id: 1,
...@@ -295,16 +299,6 @@ ...@@ -295,16 +299,6 @@
}); });
}, },
getHtml: function (postData, SaveType, TeamType) { getHtml: function (postData, SaveType, TeamType) {
//HK 2019-10-14 新增开始
// if (this.$refs.newFeature2 != undefined) {
// //检查是否有更新
// var IsRefresh = this.$refs.newFeature2.getIsRefresh();
// if (IsRefresh) {
// //有更新重新初始化行程特色内容
// this.$refs.newFeature2.UpDateInfo();
// }
// }
//HK 2019-10-14 新增结束
var FeatureData = { var FeatureData = {
B2BRemark: postData.B2BRemark, B2BRemark: postData.B2BRemark,
ConfigId: postData.ConfigId, ConfigId: postData.ConfigId,
...@@ -391,7 +385,7 @@ ...@@ -391,7 +385,7 @@
//OP开团和地接开团 //OP开团和地接开团
if (TeamType == 0) { if (TeamType == 0) {
path = "TravelControlList"; path = "TravelControlList";
} else if (TeamType == 3){ } else if (TeamType == 3) {
path = "TravelControlList2"; path = "TravelControlList2";
} else if (TeamType == 1) { } else if (TeamType == 1) {
path = "TravelControlListSale"; path = "TravelControlListSale";
...@@ -457,7 +451,6 @@ ...@@ -457,7 +451,6 @@
}); });
this.FeatureData.FeatureType = state; this.FeatureData.FeatureType = state;
}); });
// this.$message.warning('尊敬的用户,行程特色"1"暂时无法直接切换为行程特色"2"!')
} else { } else {
this.TypeArray.forEach(x => { this.TypeArray.forEach(x => {
if (x.TypeState == item.TypeState) { if (x.TypeState == item.TypeState) {
...@@ -486,7 +479,6 @@ ...@@ -486,7 +479,6 @@
let newArr = []; let newArr = [];
newArr.push(file.file); newArr.push(file.file);
let fileName = file.file.name; let fileName = file.file.name;
let that = this; let that = this;
let path = "/Upload/DMC/"; let path = "/Upload/DMC/";
this.UploadSelfFileT(path, newArr, x => { this.UploadSelfFileT(path, newArr, x => {
...@@ -574,7 +566,6 @@ ...@@ -574,7 +566,6 @@
} }
} }
}; };
</script> </script>
<style> <style>
......
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