master
parent
c4caed2067
commit
32dbb53fb1
|
|
@ -348,7 +348,7 @@
|
||||||
<reportbox @getAllReportList="getAllReportList"></reportbox>
|
<reportbox @getAllReportList="getAllReportList"></reportbox>
|
||||||
</div> -->
|
</div> -->
|
||||||
<!-- 任务下发 -->
|
<!-- 任务下发 -->
|
||||||
<div class="task" v-if="taskDeliveryShow">
|
<div class="task" v-if="taskDeliveryShow" v-drag>
|
||||||
<taskDelivery
|
<taskDelivery
|
||||||
@closeTask="closeTask"
|
@closeTask="closeTask"
|
||||||
:globalmap="globalmap"
|
:globalmap="globalmap"
|
||||||
|
|
@ -1623,7 +1623,7 @@ export default {
|
||||||
}
|
}
|
||||||
.task {
|
.task {
|
||||||
width: 540px;
|
width: 540px;
|
||||||
height: calc(100vh - 600px);
|
height:450px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
|
|
||||||
|
|
@ -11,14 +11,26 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="inputer">
|
<div class="inputer">
|
||||||
<span>任务详情:</span>
|
<span>任务详情:</span>
|
||||||
<el-input type="textarea" :rows="1" style="width:420px;" placeholder="请输入内容" v-model="content">
|
<el-input type="textarea" :rows="1" style="width:420px;" placeholder="请输入内容" v-model="content"></el-input>
|
||||||
</el-input>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="inputer">
|
<div class="inputer">
|
||||||
<span style="float:left;margin-left:12px;">接收人员:</span>
|
<span style="float:left;margin-left:12px;">接收人员:</span>
|
||||||
<div class="" style="float:left;width:420px;">
|
<div class="" style="float:left;width:420px;">
|
||||||
|
<!-- <el-select
|
||||||
|
v-model="checkedUsers"
|
||||||
|
multiple
|
||||||
|
filterable
|
||||||
|
allow-create
|
||||||
|
default-first-option
|
||||||
|
size="mini"
|
||||||
|
style="width:100%;max-height:50px;overflow-y: auto;"
|
||||||
|
placeholder="请选择任务接收人员">
|
||||||
|
</el-select> -->
|
||||||
|
|
||||||
|
<!-- <el-input size="mini" v-model="listQuery.name" placeholder="请输入搜索人员名称" ></el-input> -->
|
||||||
<el-table
|
<el-table
|
||||||
ref="multipleTable"
|
ref="multipleTable"
|
||||||
|
size="mini"
|
||||||
:data="list"
|
:data="list"
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
height="160px"
|
height="160px"
|
||||||
|
|
@ -26,7 +38,6 @@
|
||||||
@selection-change="handleSelectionChange">
|
@selection-change="handleSelectionChange">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
type="selection"
|
type="selection"
|
||||||
|
|
||||||
width="55">
|
width="55">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
|
@ -60,6 +71,12 @@
|
||||||
pathPointGraphicLayer: null,
|
pathPointGraphicLayer: null,
|
||||||
list:[],
|
list:[],
|
||||||
multipleSelection:[],
|
multipleSelection:[],
|
||||||
|
listQuery:{
|
||||||
|
pageSize:10000,
|
||||||
|
pageIndex:1,
|
||||||
|
name:null,
|
||||||
|
},
|
||||||
|
checkedUsers:[{label:"徐景良",value:"17861857725"},{label:"张斌",value:"17861857726"},],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
@ -76,6 +93,10 @@
|
||||||
methods: {
|
methods: {
|
||||||
handleSelectionChange(val) {
|
handleSelectionChange(val) {
|
||||||
this.multipleSelection = val;
|
this.multipleSelection = val;
|
||||||
|
this.checkedUsers = [];
|
||||||
|
this.multipleSelection.forEach((item,index)=>{
|
||||||
|
this.checkedUsers.push(item.name);
|
||||||
|
})
|
||||||
},
|
},
|
||||||
getUserList(){
|
getUserList(){
|
||||||
axios({
|
axios({
|
||||||
|
|
@ -83,7 +104,8 @@
|
||||||
url:BASE_URL+"/FireManagement/LoadFireClueUser",
|
url:BASE_URL+"/FireManagement/LoadFireClueUser",
|
||||||
headers:{
|
headers:{
|
||||||
"X-Token":localStorage.getItem("X-Token")
|
"X-Token":localStorage.getItem("X-Token")
|
||||||
}
|
},
|
||||||
|
data:this.listQuery
|
||||||
}).then(res=>{
|
}).then(res=>{
|
||||||
if(res.data.code == 200){
|
if(res.data.code == 200){
|
||||||
this.list = res.data.data;
|
this.list = res.data.data;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue