|
@@ -11,6 +11,7 @@
|
|
|
v-model.trim="searchForm.organId"
|
|
|
filterable
|
|
|
clearable
|
|
|
+ @change="onBranchChange"
|
|
|
placeholder="请选择分部">
|
|
|
<el-option v-for="(item,index) in selects.branchs"
|
|
|
:key="index"
|
|
@@ -18,44 +19,53 @@
|
|
|
:value="item.id"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop='organId'>
|
|
|
+ <el-form-item prop='cooperationOrganId'>
|
|
|
<el-select class='multiple'
|
|
|
- v-model.trim="searchForm.organId"
|
|
|
+ v-model.trim="searchForm.cooperationOrganId"
|
|
|
filterable
|
|
|
clearable
|
|
|
- placeholder="请选择乐团主管">
|
|
|
- <el-option v-for="(item,index) in selects.branchs"
|
|
|
+ placeholder="请选择合作单位">
|
|
|
+ <el-option v-for="(item,index) in cooperationList"
|
|
|
:key="index"
|
|
|
:label="item.name"
|
|
|
:value="item.id"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop='organId'>
|
|
|
+ <el-form-item prop='userId'>
|
|
|
<el-select class='multiple'
|
|
|
- v-model.trim="searchForm.organId"
|
|
|
+ v-model.trim="searchForm.userId"
|
|
|
filterable
|
|
|
clearable
|
|
|
- placeholder="请选择合作单位">
|
|
|
- <el-option v-for="(item,index) in selects.branchs"
|
|
|
+ placeholder="请选择乐团主管">
|
|
|
+ <el-option v-for="(item,index) in educationList"
|
|
|
:key="index"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"></el-option>
|
|
|
+ :label="item.userName"
|
|
|
+ :value="item.userId"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop='organId'>
|
|
|
+ <el-form-item prop='musicGroupId'>
|
|
|
<el-select class='multiple'
|
|
|
- v-model.trim="searchForm.organId"
|
|
|
+ v-model.trim="searchForm.musicGroupId"
|
|
|
filterable
|
|
|
clearable
|
|
|
placeholder="请选择乐团">
|
|
|
- <el-option v-for="(item,index) in selects.branchs"
|
|
|
+ <el-option v-for="(item,index) in musicGroupList"
|
|
|
:key="index"
|
|
|
:label="item.name"
|
|
|
:value="item.id"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop='organId'>
|
|
|
- <el-date-picker v-model.trim="searchForm.creatTimer"
|
|
|
+ <el-form-item prop='conclusionStatus'>
|
|
|
+ <el-select class='multiple'
|
|
|
+ v-model.trim="searchForm.conclusionStatus"
|
|
|
+ clearable
|
|
|
+ placeholder="巡查项目是否异常">
|
|
|
+ <el-option label="是" :value="1"></el-option>
|
|
|
+ <el-option label="否" :value="0"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop='createTimer'>
|
|
|
+ <el-date-picker v-model.trim="searchForm.createTimer"
|
|
|
type="daterange"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
range-separator="至"
|
|
@@ -74,57 +84,76 @@
|
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}"
|
|
|
:data="tableList">
|
|
|
<el-table-column align="center"
|
|
|
- prop="userId"
|
|
|
+ prop="id"
|
|
|
+ width="120px"
|
|
|
+ label="巡查编号">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center"
|
|
|
label="所属分部">
|
|
|
<template slot-scope="scope">
|
|
|
- <copy-text>{{scope.row.userId}}</copy-text>
|
|
|
+ {{ scope.row.organName }}(<copy-text>{{scope.row.organId}}</copy-text>)
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
- prop="username"
|
|
|
+ prop="cooperationName"
|
|
|
label="合作单位"></el-table-column>
|
|
|
- <el-table-column align="center" width="200px"
|
|
|
- prop="idCardNo"
|
|
|
- label="巡查乐团"></el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
- prop="age"
|
|
|
+ prop="musicGroupName"
|
|
|
+ label="巡查乐团">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.musicGroupName }}(<copy-text>{{scope.row.musicGroupId}}</copy-text>)
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center"
|
|
|
label="乐团主管">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.age }}岁
|
|
|
+ {{ scope.row.realName }}(<copy-text>{{ scope.row.userId }}</copy-text>)
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
label="巡查项目异常">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.gender ? '男' : '女' }}
|
|
|
+ {{ scope.row.conclusionStatus ? '异常' : '正常' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
prop="subject"
|
|
|
- label="巡查时间"></el-table-column>
|
|
|
+ label="巡查时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ dayjs(scope.row.planStart).format('YYYY-MM-DD HH:mm') }}~
|
|
|
+ {{ dayjs(scope.row.planEnd).format('HH:mm') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
- prop="chapter"
|
|
|
+ prop="submitedTime"
|
|
|
label="提交时间"></el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
- prop="score"
|
|
|
- label="提交状态"></el-table-column>
|
|
|
+ prop="status"
|
|
|
+ label="提交状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.status | statusFormat }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
- prop="prizeLevel"
|
|
|
label="处理方式">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <overflow-text width="100%" :text="scope.row.memo"></overflow-text>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
+ width="250px"
|
|
|
label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
- <auth auths="/musicInspection">
|
|
|
- <el-button type="text" @click="tableStatus = true">查看</el-button>
|
|
|
+ <auth auths="inspectionItemPlanConclusion/getPlanConclusion">
|
|
|
+ <el-button type="text" @click="onLook(scope.row)">查看</el-button>
|
|
|
</auth>
|
|
|
- <auth auths="/musicInspection">
|
|
|
- <el-button type="text" >GPS定位</el-button>
|
|
|
+ <auth auths="inspectionItemPlanConclusion/GPS-INFO">
|
|
|
+ <el-button type="text" @click="onGPS(scope.row)">GPS定位</el-button>
|
|
|
</auth>
|
|
|
- <auth auths="/musicInspection">
|
|
|
- <el-button type="text" >下载</el-button>
|
|
|
+ <auth auths="inspectionItemPlanConclusion/exportPlanConclusion">
|
|
|
+ <el-button type="text" @click="onExport(scope.row)">下载</el-button>
|
|
|
</auth>
|
|
|
- <auth auths="/musicInspection">
|
|
|
+ <auth auths="inspectionItemPlan/updateMemo" v-if="scope.row.status != 1">
|
|
|
<el-button type="text" @click="handleClick(scope.row)">处理方式</el-button>
|
|
|
</auth>
|
|
|
</template>
|
|
@@ -140,7 +169,12 @@
|
|
|
</div>
|
|
|
|
|
|
<el-dialog title="乐团巡查表" :visible.sync="tableStatus" width="1200px">
|
|
|
- <look-detail v-if="tableStatus" />
|
|
|
+ <look-detail v-if="tableStatus" :detail="planDetail" />
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <el-dialog :visible.sync="gpsVisible" width="1000px" append-to-body>
|
|
|
+ <gpsLoction v-if="gpsVisible"
|
|
|
+ :activeRow='activeRow' />
|
|
|
</el-dialog>
|
|
|
|
|
|
<el-dialog title="处理方式" :visible.sync="handleStatus"
|
|
@@ -150,10 +184,10 @@
|
|
|
label-position="top"
|
|
|
ref="ruleForm">
|
|
|
<el-form-item label="处理方式"
|
|
|
- prop="comment"
|
|
|
+ prop="memo"
|
|
|
:rules="[{ required: true, message: '请输入处理方式', trigger: 'blur' }]">
|
|
|
<el-input type="textarea"
|
|
|
- v-model.trim="handleForm.comment"></el-input>
|
|
|
+ v-model.trim="handleForm.memo"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -169,17 +203,32 @@
|
|
|
import pagination from "@/components/Pagination/index";
|
|
|
import cleanDeep from 'clean-deep'
|
|
|
import LookDetail from './modals/lookDetail'
|
|
|
+import dayjs from 'dayjs'
|
|
|
+import { inspectionItemPlan, inspectionItemPlanUpdate, updateMemo } from './api'
|
|
|
+import { findEducationUsers } from '@/api/buildTeam'
|
|
|
+import { queryByOrganId } from '@/api/systemManage'
|
|
|
+import { getTeamList } from '@/api/teamServer'
|
|
|
+import { getTimes } from "@/utils";
|
|
|
+import { Export } from '@/utils/downLoadFile'
|
|
|
+import gpsLoction from "../teamDetail/componentCourse/gpsLocation";
|
|
|
export default {
|
|
|
- components: { pagination, LookDetail },
|
|
|
+ components: { pagination, LookDetail, gpsLoction },
|
|
|
data () {
|
|
|
return {
|
|
|
+ educationList: [],
|
|
|
+ cooperationList: [],
|
|
|
+ musicGroupList: [],
|
|
|
+ activeRow: null,
|
|
|
+ planDetail: null,
|
|
|
searchForm: {
|
|
|
organId: null,
|
|
|
- creatTimer: []
|
|
|
+ userId: null,
|
|
|
+ musicGroupId: null,
|
|
|
+ conclusionStatus: null,
|
|
|
+ cooperationOrganId: null,
|
|
|
+ createTimer: []
|
|
|
},
|
|
|
- tableList: [{
|
|
|
- id: 0
|
|
|
- }],
|
|
|
+ tableList: [],
|
|
|
pageInfo: {
|
|
|
// 分页规则
|
|
|
limit: 10, // 限制显示条数
|
|
@@ -190,38 +239,119 @@ export default {
|
|
|
handleStatus: false,
|
|
|
handleForm: {
|
|
|
id: null,
|
|
|
- comment: null,
|
|
|
+ memo: null,
|
|
|
},
|
|
|
- tableStatus: false
|
|
|
+ tableStatus: false,
|
|
|
+ gpsVisible: false,
|
|
|
};
|
|
|
},
|
|
|
async mounted () {
|
|
|
this.getList()
|
|
|
+ // 分部
|
|
|
await this.$store.dispatch('setBranchs')
|
|
|
+
|
|
|
+ // 获取乐团主管
|
|
|
+ await findEducationUsers().then(res => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.educationList = res.data
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ // 乐团列表 {只查询进行中的乐团}
|
|
|
+ await getTeamList({ musicGroupStatus: 'PROGRESS', rows: 9999 }).then(res => {
|
|
|
+ if(res.code == 200) {
|
|
|
+ this.musicGroupList = res.data.rows
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
methods: {
|
|
|
- getList() {
|
|
|
-
|
|
|
+ dayjs,
|
|
|
+ async getList() {
|
|
|
+ try {
|
|
|
+ let { createTimer, ...rest } = this.searchForm
|
|
|
+ let params = {
|
|
|
+ ...rest,
|
|
|
+ page: this.pageInfo.page,
|
|
|
+ rows: this.pageInfo.limit,
|
|
|
+ ...getTimes(createTimer, ["startTime", "endTime"]),
|
|
|
+ }
|
|
|
+ const res = await inspectionItemPlan(params)
|
|
|
+ console.log(res)
|
|
|
+ this.tableList = res.data.rows
|
|
|
+ this.pageInfo.total = res.data.total
|
|
|
+ } catch(err) {}
|
|
|
+ },
|
|
|
+ onLook(row) {
|
|
|
+ this.planDetail = row
|
|
|
+ this.tableStatus = true
|
|
|
+ },
|
|
|
+ onGPS(row) {
|
|
|
+ console.log(row)
|
|
|
+ this.activeRow = {
|
|
|
+ schoolLongitudeLatitude: row.schoolGps,
|
|
|
+ signOutLongitudeLatitude: row.submitedGps,
|
|
|
+ }
|
|
|
+ this.gpsVisible = true
|
|
|
+ },
|
|
|
+ async onExport(row) {
|
|
|
+ await Export(this, {
|
|
|
+ url: '/api-web/inspectionItemPlanConclusion/exportPlanConclusion',
|
|
|
+ fileName: '巡查结果.xlsx',
|
|
|
+ method: 'get',
|
|
|
+ params: {
|
|
|
+ planId: row.id
|
|
|
+ }
|
|
|
+ }, '您确定导出巡查结果?')
|
|
|
+ },
|
|
|
+ async onBranchChange(value) {
|
|
|
+ if(!value) {
|
|
|
+ this.cooperationList = []
|
|
|
+ this.searchForm.cooperationOrganId = null
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 合作单位
|
|
|
+ await queryByOrganId({ organId: value }).then(res => {
|
|
|
+ if(res.code == 200) {
|
|
|
+ this.cooperationList = res.data
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
search() {
|
|
|
-
|
|
|
+ this.pageInfo.page = 1
|
|
|
+ this.getList()
|
|
|
},
|
|
|
onReSet() {
|
|
|
-
|
|
|
+ this.$refs['searchForm'].resetFields()
|
|
|
+ this.pageInfo.page = 1
|
|
|
+ this.getList()
|
|
|
},
|
|
|
handleClick(row) {
|
|
|
+ this.handleForm.id = row.id
|
|
|
+ this.handleForm.memo = row.memo
|
|
|
this.handleStatus = true
|
|
|
},
|
|
|
onHandleSubmit(formName) {
|
|
|
- this.$refs[formName].validate(valid => {
|
|
|
+ this.$refs[formName].validate(async (valid) => {
|
|
|
if(valid) {
|
|
|
-
|
|
|
+ console.log(this.handleForm)
|
|
|
+ try {
|
|
|
+ await updateMemo(this.handleForm)
|
|
|
+ this.$message.success('处理成功')
|
|
|
+ this.getList()
|
|
|
+ this.handleStatus = false
|
|
|
+ } catch(err) {}
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
handleClose(formName) {
|
|
|
this.$refs[formName].resetFields()
|
|
|
}
|
|
|
+ },
|
|
|
+ filters: {
|
|
|
+ statusFormat(value) {
|
|
|
+ let template = ['未提交', '正常', '异常']
|
|
|
+ return template[value]
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|