|
@@ -3,7 +3,6 @@
|
|
<div class="m-container">
|
|
<div class="m-container">
|
|
<h2>
|
|
<h2>
|
|
<div class="squrt"></div>乐团巡查
|
|
<div class="squrt"></div>乐团巡查
|
|
- <filter-search @reload="getList" :keys="['searchType']" />
|
|
|
|
</h2>
|
|
</h2>
|
|
<div class="m-core">
|
|
<div class="m-core">
|
|
<save-form :inline="true" ref="searchForm" @submit="search" @reset="onReSet" :model="searchForm">
|
|
<save-form :inline="true" ref="searchForm" @submit="search" @reset="onReSet" :model="searchForm">
|
|
@@ -250,6 +249,9 @@ export default {
|
|
if (query.organId) {
|
|
if (query.organId) {
|
|
this.searchForm.organId = query.organId
|
|
this.searchForm.organId = query.organId
|
|
}
|
|
}
|
|
|
|
+ if (query.conclusionStatus) {
|
|
|
|
+ this.searchForm.conclusionStatus = Number(query.conclusionStatus)
|
|
|
|
+ }
|
|
this.getList()
|
|
this.getList()
|
|
// 分部
|
|
// 分部
|
|
await this.$store.dispatch('setBranchs')
|
|
await this.$store.dispatch('setBranchs')
|
|
@@ -274,7 +276,6 @@ export default {
|
|
try {
|
|
try {
|
|
let { createTimer, ...rest } = this.searchForm
|
|
let { createTimer, ...rest } = this.searchForm
|
|
let params = {
|
|
let params = {
|
|
- searchType: this.$route.query.searchType,
|
|
|
|
...rest,
|
|
...rest,
|
|
page: this.pageInfo.page,
|
|
page: this.pageInfo.page,
|
|
rows: this.pageInfo.limit,
|
|
rows: this.pageInfo.limit,
|
|
@@ -290,7 +291,6 @@ export default {
|
|
this.tableStatus = true
|
|
this.tableStatus = true
|
|
},
|
|
},
|
|
onGPS(row) {
|
|
onGPS(row) {
|
|
- console.log(row)
|
|
|
|
this.activeRow = {
|
|
this.activeRow = {
|
|
schoolLongitudeLatitude: row.schoolGps,
|
|
schoolLongitudeLatitude: row.schoolGps,
|
|
signOutLongitudeLatitude: row.submitedGps,
|
|
signOutLongitudeLatitude: row.submitedGps,
|