You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
import {getSchemeDataToSpecial} from "@/api/SpecialAnalize"
|
|
import {delSchemeDataSpecial} from "@/api/SpecialAnalize"
|
|
export default {
|
|
getNowData() {
|
|
getSchemeDataToSpecial(this.form).then(res => {
|
|
this.myThemeArr = res.data;
|
|
})
|
|
},
|
|
//回退
|
|
goBack() {
|
|
this.setHeaderType(3);
|
|
this.$router.go(-1);
|
|
},
|
|
handlerChangeTheme(n) {
|
|
if(n == 1) {
|
|
this.form.sType = 'former';
|
|
}
|
|
if(n == 0) {
|
|
this.form.sType = 'now';
|
|
};
|
|
this.getNowData();
|
|
},
|
|
//新增按钮
|
|
handlerAdd() {
|
|
this.$router.push('/specialAnalizeChoose')
|
|
},
|
|
//编辑修改
|
|
handlerEdit(guids) {
|
|
this.$router.push({path: '/specialAnalizeChoose', query: {sSpecialGuid: guids}});
|
|
},
|
|
//删除
|
|
handlerDel(guids) {
|
|
let obj = {
|
|
token: this.getToken,
|
|
sGuids: guids
|
|
}
|
|
delSchemeDataSpecial(obj).then(() => {
|
|
this.getNowData();
|
|
})
|
|
},
|
|
//前往详情页
|
|
toThemeData(guids,name) {
|
|
this.$router.push({
|
|
path: '/specialAnalizeBoard',
|
|
query: {sSpecialGuid: guids, name: name}
|
|
})
|
|
},
|
|
//日期
|
|
calendarPriceRangeChange(date) {
|
|
|
|
},
|
|
handlerChangeTime(val) {
|
|
|
|
},
|
|
disabledDate(current) {
|
|
return false;
|
|
},
|
|
} |