|
@@ -14,7 +14,7 @@
|
|
|
</div>
|
|
|
<div v-if="showSelect" class="select_body">
|
|
|
<ul>
|
|
|
- <li v-for="item in selectBodyShow" @click="selectOneBody(item)"><i></i><p>{{selectValue==1? item.companyName : item.shipName}}</p></li>
|
|
|
+ <li v-for="item in selectBodyShow" @click="selectOneBody(item)"><i></i><p>{{selectValue==1? item.unitName : item.BOATNAME}}</p></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -33,6 +33,9 @@
|
|
|
import {GetSelectInfo} from "@/apis/other"
|
|
|
import bus from '@/utils/bus'
|
|
|
|
|
|
+ import {locationUnit} from "@/utils/map/OperationSupervision";
|
|
|
+ import {GetHpjShip} from "@/apis/ship";
|
|
|
+
|
|
|
const selectType=ref([{key:'1',name:"企业"},{key:'2',name:"船舶"}])
|
|
|
const showSelect = ref(false)
|
|
|
let selectValue=ref('1')
|
|
@@ -53,10 +56,10 @@
|
|
|
|
|
|
if(inputValue.value!=null || inputValue.value!='') {
|
|
|
if (selectValue.value === '1') {
|
|
|
- selectBodyShow.value = selectBody.value.filter(i => i.companyName!=null?i.companyName.includes(inputValue.value):null)
|
|
|
+ selectBodyShow.value = selectBody.value.filter(i => i.unitName!=null?i.unitName.includes(inputValue.value):null)
|
|
|
} else {
|
|
|
console.log('类型为2')
|
|
|
- selectBodyShow.value = selectBody.value.filter(i => i.shipName!=null?i.shipName.includes(inputValue.value):null)
|
|
|
+ selectBodyShow.value = selectBody.value.filter(i => i.BOATNAME!=null?i.BOATNAME.includes(inputValue.value):null)
|
|
|
}
|
|
|
}else {
|
|
|
selectBodyShow.value=selectBody.value
|
|
@@ -74,27 +77,45 @@
|
|
|
|
|
|
|
|
|
function getSelectBody(type) {
|
|
|
- GetSelectInfo(type).then(res=>{
|
|
|
- if (res.data!=null && res.data!=undefined && res.data!='')
|
|
|
- {
|
|
|
- selectBody.value= res.data.Rows
|
|
|
- selectBodyShow.value=res.data.Rows
|
|
|
- // totalForVido.value= res.data.TotalRowCount
|
|
|
- }
|
|
|
- })
|
|
|
+ if(type==1)
|
|
|
+ {
|
|
|
+ GetSelectInfo(type).then(res=>{
|
|
|
+ if (res.data!=null && res.data!=undefined && res.data!='')
|
|
|
+ {
|
|
|
+ selectBody.value= res.data.Rows
|
|
|
+ selectBodyShow.value=res.data.Rows
|
|
|
+ // totalForVido.value= res.data.TotalRowCount
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else {
|
|
|
+ GetHpjShip().then(res=>{
|
|
|
+ selectBody.value= res.Result.data
|
|
|
+ selectBodyShow.value=res.Result.data
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
function selectOneBody(item) {
|
|
|
console.log(selectValue.value)
|
|
|
if (selectValue.value=='1')
|
|
|
{
|
|
|
- inputValue.value=item.companyName
|
|
|
+ inputValue.value=item.unitName
|
|
|
inputKey.value=item.certNumber
|
|
|
+ let data={
|
|
|
+ name:item.unitName,
|
|
|
+ certNumber:item.certNumber,
|
|
|
+ mapx:item.shape.x,
|
|
|
+ mapy:item.shape.y
|
|
|
+
|
|
|
+ }
|
|
|
+ locationUnit(null,false)
|
|
|
+ locationUnit(data,true)
|
|
|
}else {
|
|
|
|
|
|
- inputValue.value=item.shipName
|
|
|
- inputKey.value=item.mmsi
|
|
|
- bus.emit('ueRec_BoatClick',{'mmsi':item.mmsi})
|
|
|
+ inputValue.value=item.BOATNAME
|
|
|
+ inputKey.value=item.DEVICEID
|
|
|
+ bus.emit('ueRec_BoatClick',{'mmsi':item.DEVICEID})
|
|
|
}
|
|
|
|
|
|
}
|