This commit is contained in:
parent
6ea0a1f400
commit
350d0fbaad
|
@ -558,8 +558,8 @@ export const addTheme= (data) => {
|
|||
return req('post', baseurl + "/plan/theme",data)
|
||||
}
|
||||
//编辑落地页模板
|
||||
export const putTheme= (data) => {
|
||||
return req('put', baseurl + "/plan/plan_theme",data)
|
||||
export const putTheme= (id,data) => {
|
||||
return req('put', baseurl + "/plan/plan_theme/"+id,data)
|
||||
}
|
||||
//我的模板列表查询
|
||||
export const getTheme= (data) => {
|
||||
|
|
|
@ -112,7 +112,7 @@ export default class acclist extends React.Component{
|
|||
total:0,
|
||||
page:1,
|
||||
limit:10,
|
||||
tabList:[{title:"全部"},{title:"进行中"},{title:"暂停中"},{title:"未开始"},{title:"已完结"},{title:"已作废"}],
|
||||
tabList:[{title:"全部",index:0},{title:"未开始",index:3},{title:"进行中",index:1},{title:"暂停中",index:2},{title:"已完结",index:4},{title:"已作废",index:5}],
|
||||
combinedValue:[],
|
||||
DateTime:'',//数据更新时间
|
||||
key_word:'',
|
||||
|
@ -170,7 +170,8 @@ export default class acclist extends React.Component{
|
|||
sessionStorage.setItem('breaknav',JSON.stringify(activerou));
|
||||
}
|
||||
tabFn(index){
|
||||
this.setState({tabIndex:index,key_word:''})
|
||||
|
||||
this.setState({tabIndex: index ,key_word:''})
|
||||
this.setState({page:1,limit:10})
|
||||
setTimeout(() => {
|
||||
this.getCodeListFn({},index);
|
||||
|
@ -281,17 +282,15 @@ export default class acclist extends React.Component{
|
|||
}
|
||||
if(menu){
|
||||
// 1:进行中 2:暂停中 4:已完结 5:已作废
|
||||
data.status = menu;
|
||||
console.log()
|
||||
data.status = this.state.tabList[menu].index;
|
||||
if(menu == 0)
|
||||
{
|
||||
data.status = null
|
||||
}
|
||||
|
||||
console.log(666,menu)
|
||||
if(menu == 6)
|
||||
{
|
||||
data.status = -1;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Notify,Switch ,RadioGroup,RadioButton,Swiper,Dropdown,DropdownPosition,
|
|||
import Ipt from "../../../components/input/main"
|
||||
import Form from "../../../components/form/main"
|
||||
import FormItem from "../../../components/form-item/main"
|
||||
import {uploadImg,handelResponse,addTheme,putMyTheme} from "../../../assets/api.js"
|
||||
import {uploadImg,handelResponse,addTheme,putMyTheme,putTheme} from "../../../assets/api.js"
|
||||
import PreviewItem from "../template/preview.js"
|
||||
export default class edittemplate extends React.Component{
|
||||
constructor(props){
|
||||
|
@ -116,8 +116,21 @@ export default class edittemplate extends React.Component{
|
|||
formdata.link = this.state.model.link
|
||||
formdata.edit= this.state.model.edit
|
||||
formdata.href= this.state.model.href
|
||||
|
||||
|
||||
putTheme(this.state.model.id,formdata).then((res)=>{
|
||||
handelResponse(res,(req,msg)=>{
|
||||
Notify.success("保存成功")
|
||||
|
||||
this.props.history.push('/home/exchangepage');
|
||||
return
|
||||
},(err)=>{
|
||||
Notify.error(err)
|
||||
})
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
else{
|
||||
|
||||
|
||||
|
||||
|
@ -132,7 +145,7 @@ export default class edittemplate extends React.Component{
|
|||
handelResponse(res,(req,msg)=>{
|
||||
Notify.success("保存成功")
|
||||
|
||||
this.props.history.push('/home/plan-list/');
|
||||
this.props.history.push('/home/exchangepage');
|
||||
},(err)=>{
|
||||
Notify.error(err)
|
||||
})
|
||||
|
@ -149,7 +162,7 @@ export default class edittemplate extends React.Component{
|
|||
handelResponse(res,(req,msg)=>{
|
||||
Notify.success("保存成功")
|
||||
setTimeout(() => {
|
||||
let link = window.location.href.replace(window.location.hash,"#/home/myexchangetemplate");
|
||||
let link = window.location.href.replace(window.location.hash,"/home/exchangepage");
|
||||
window.open(link, "_blank")
|
||||
}, 2000);
|
||||
|
||||
|
@ -161,7 +174,7 @@ export default class edittemplate extends React.Component{
|
|||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ export default class acclist extends React.Component {
|
|||
tabList: [{
|
||||
title: "全部"
|
||||
}, {
|
||||
title: "未进行"
|
||||
title: "未开始"
|
||||
}, {
|
||||
title: "进行中"
|
||||
}, {
|
||||
|
|
Loading…
Reference in New Issue