Commit 34396f53 authored by zhengke's avatar zhengke

ss

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