|
|
|
@ -98,7 +98,11 @@
|
|
|
|
|
row.latitude = a[1]; |
|
|
|
|
row.warehouseAddress = a[2]; |
|
|
|
|
} |
|
|
|
|
console.log(">>>>>>",this.from); |
|
|
|
|
if (this.form.daterange){ |
|
|
|
|
let date =this.form.daterange |
|
|
|
|
row.startDate = date[0]; |
|
|
|
|
row.endDate = date[1]; |
|
|
|
|
} |
|
|
|
|
add(row).then(() => { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
@ -113,6 +117,11 @@
|
|
|
|
|
}, |
|
|
|
|
rowUpdate(row, index, done, loading) { |
|
|
|
|
console.log(">>>this.form",this.form); |
|
|
|
|
if (this.form.daterange){ |
|
|
|
|
let date =this.form.daterange |
|
|
|
|
row.startDate = date[0]; |
|
|
|
|
row.endDate = date[1]; |
|
|
|
|
} |
|
|
|
|
let a =[]; |
|
|
|
|
if (!!this.form.address){ |
|
|
|
|
a = this.form.address; |
|
|
|
@ -121,7 +130,6 @@
|
|
|
|
|
row.warehouseAddress = a[2]; |
|
|
|
|
} |
|
|
|
|
console.log(">>>row",row); |
|
|
|
|
|
|
|
|
|
update(row).then(() => { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
@ -243,7 +251,7 @@
|
|
|
|
|
}, |
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
this.loading = true; |
|
|
|
|
|
|
|
|
|
console.log("this.query>>>",this.query); |
|
|
|
|
const { |
|
|
|
|
name, |
|
|
|
|
linkman, |
|
|
|
@ -255,7 +263,8 @@
|
|
|
|
|
fireGrade, |
|
|
|
|
warehouseStructure, |
|
|
|
|
powerCondition, |
|
|
|
|
grade |
|
|
|
|
grade, |
|
|
|
|
daterange |
|
|
|
|
} = this.query; |
|
|
|
|
|
|
|
|
|
let values = { |
|
|
|
@ -269,10 +278,13 @@
|
|
|
|
|
fireRatingNot:fireRatingNot, |
|
|
|
|
warehouseStructure:warehouseStructure, |
|
|
|
|
powerCondition:powerCondition, |
|
|
|
|
grade:grade |
|
|
|
|
|
|
|
|
|
grade:grade, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
if (this.query.daterange){ |
|
|
|
|
values.startDate = this.query.daterange[0] |
|
|
|
|
values.endDate = this.query.daterange[1] |
|
|
|
|
} |
|
|
|
|
console.log("values>>>>>>>",values); |
|
|
|
|
getList(page.currentPage, page.pageSize, values).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
|
this.page.total = data.total; |
|
|
|
@ -286,10 +298,10 @@
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style> |
|
|
|
|
/* .avue-input-map__content-box {*/ |
|
|
|
|
/* position: relative;*/ |
|
|
|
|
/* z-index: -1;*/ |
|
|
|
|
/* }*/ |
|
|
|
|
.avue-input-map__content-box { |
|
|
|
|
position: relative; |
|
|
|
|
z-index: -1; |
|
|
|
|
} |
|
|
|
|
/*.amap-ui-poi-picker-search-results-container, .amap-ui-poi-picker-sugg-container {*/ |
|
|
|
|
/* position: absolute;*/ |
|
|
|
|
/* -webkit-box-sizing: border-box;*/ |
|
|
|
|