Commit 34396f53 authored by zhengke's avatar zhengke

ss

parent 5a368c22
......@@ -542,8 +542,12 @@
countryList: "",
pickerOptions1: {
disabledDate: time => {
let endTime = new Date(this.msg.QEndDateStr);
return endTime.getTime() < time.getTime();
if (this.msg.QEndDateStr == null) {
return false;
} else {
let endTime = new Date(this.msg.QEndDateStr)
return endTime.getTime() < time.getTime()
}
}
},
pickerOptions2: {
......@@ -577,7 +581,6 @@
if (res.data.resultCode == 1) {
this.total = res.data.data.count;
this.dataList = res.data.data.pageData;
console.log(this.dataList,'dataListssssssssss');
} else {
this.Error(res.data.message);
}
......@@ -806,6 +809,10 @@
mounted() {
this.msg.QTCID = this.$route.query.id;
if(this.msg.QTCID!=undefined){
this.msg.QStartDateStr='';
this.msg.QEndDateStr='';
}
this.getCountryList();
this.GetTeamSaleStateList();
this.getList();
......
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