预览效果白名单测试
This commit is contained in:
parent
e15133de9a
commit
932d817187
|
@ -86,8 +86,11 @@ getLandingdata(val){
|
|||
|
||||
componentWillMount(e){
|
||||
let href=window.location.href;
|
||||
let strindex = href.lastIndexOf("\=");
|
||||
let typePage = href.substr(strindex + 1, href.length);
|
||||
let strindex = href.lastIndexOf("\=");
|
||||
let typePage =null;
|
||||
if(strindex>-1){
|
||||
typePage = href.substr(strindex + 1, href.length);
|
||||
}
|
||||
sessionStorage.removeItem('editorConfig');
|
||||
let myInfoData = JSON.parse(sessionStorage.getItem("pageInfo"))
|
||||
let mouldType=sessionStorage.getItem('mouldType');
|
||||
|
@ -95,10 +98,11 @@ getLandingdata(val){
|
|||
let pageChange=sessionStorage.getItem('pageChange');
|
||||
if(myInfoData)
|
||||
{
|
||||
this.setState({showType:myInfoData.page});
|
||||
let newEditor=_.clone(myInfoData);
|
||||
if(typePage){
|
||||
this.setState({showType:Number(typePage)});
|
||||
}else{
|
||||
this.setState({showType:Number(myInfoData.page)});
|
||||
}
|
||||
let exchangeList=newEditor.exchange;
|
||||
exchangeList['land'].title=newEditor.title;
|
||||
|
@ -109,7 +113,11 @@ getLandingdata(val){
|
|||
newEditor.exchangeList=exchangeList;
|
||||
newEditor.whiteList=whiteList;
|
||||
if(mouldType==0){
|
||||
this.setState({model:newEditor.exchangeList.land,product_list:newEditor.exchangeList.product_list,product_detail:newEditor.exchangeList.product_detail});
|
||||
if(this.state.showType==1){
|
||||
this.setState({model:newEditor.whiteList.land,product_list:newEditor.whiteList.product_list,product_detail:newEditor.whiteList.product_detail});
|
||||
}else{
|
||||
this.setState({model:newEditor.exchangeList.land,product_list:newEditor.exchangeList.product_list,product_detail:newEditor.exchangeList.product_detail});
|
||||
}
|
||||
}else{
|
||||
if(this.state.showType==1){
|
||||
this.setState({model:newEditor.whiteList.land,product_list:newEditor.whiteList.product_list,product_detail:newEditor.whiteList.product_detail});
|
||||
|
|
|
@ -292,7 +292,12 @@ export default class mytemplate extends React.Component{
|
|||
// let link = window.location.href.replace(window.location.hash,"#/home/edittemplate");
|
||||
// window.open(link, "_blank")
|
||||
sessionStorage.setItem('mouldType',1);
|
||||
window.location.href='/#/edittemplate';
|
||||
// window.location.href='/#/edittemplate';
|
||||
if(type){
|
||||
window.location.href= "/#/edittemplate?type="+type;
|
||||
}else{
|
||||
window.location.href= "/#/edittemplate?type="+row.page;
|
||||
}
|
||||
sessionStorage.setItem('pageChange',1);
|
||||
}
|
||||
|
||||
|
@ -479,8 +484,8 @@ export default class mytemplate extends React.Component{
|
|||
<section class="screen-size-selector"><div className={this.state.activeHeight==667?'size active':'size'} onClick={()=>this.handleSize(375,667)}>主流机型<span>375x667</span></div><div className={this.state.activeHeight==750?'size active':'size'} onClick={()=>this.handleSize(375,750)}>全面屏<span>375x750</span></div><div className={this.state.activeHeight==812?'size active':'size'} onClick={()=>this.handleSize(375,812)}>刘海屏<span>375x812</span></div><div className={this.state.activeHeight==500?'size active':'size'} onClick={()=>this.handleSize(375,500)}>小屏手机<span>375x500</span></div></section>
|
||||
<p>落地页类型:</p>
|
||||
<RadioGroup onChange={(e)=>{this.onTypeChange(e)} } value={this.state.showType} >
|
||||
<RadioButton value={3} >兑换码</RadioButton>
|
||||
<RadioButton value={1} >白名单</RadioButton>
|
||||
<RadioButton value={3} disabled={this.state.sourceIndex==1}>兑换码</RadioButton>
|
||||
<RadioButton value={1} disabled={this.state.sourceIndex==1}>白名单</RadioButton>
|
||||
<RadioButton disabled={true} value={2}>立减金</RadioButton>
|
||||
</RadioGroup>
|
||||
|
||||
|
|
|
@ -2672,6 +2672,6 @@ div.previewclose {
|
|||
|
||||
.left-choice .zent-radio-button--checked[data-zv="9.11.0"]{
|
||||
background: rgba(41, 107, 239, 0.08)!important;
|
||||
border: 1px solid #2096f5;
|
||||
color: #296bef;
|
||||
border: 1px solid #2096f5!important;
|
||||
color: #296bef!important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue