|
@@ -83,14 +83,27 @@
|
|
|
<span>{{ formatIndex(index+1) }}</span>
|
|
|
<div>
|
|
|
<div>
|
|
|
- <span>{{ item.routeType }}</span><span>{{ item.routeTime }}</span><span @click="historyPreview(item)">预览</span>
|
|
|
+ <div>
|
|
|
+ <span>{{ item.routeType }}</span>
|
|
|
+ <span>{{ item.routeTime }}</span>
|
|
|
+ </div>
|
|
|
+ <template v-if="historyCurrent===null || historyCurrent===index">
|
|
|
+ <span class="cl-btn" :class="{'btn-disabled': historyState===-1}" v-show="historyState<1" @click="history_play(item,index)">预览</span>
|
|
|
+ <span class="cl-btn" v-show="historyState===1||historyState===2" @click="history_stop">停止</span>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <span>售票数</span>
|
|
|
- <span>{{ item.saleNum }}</span>
|
|
|
- <i></i>
|
|
|
- <span>登船数</span>
|
|
|
- <span>{{ item.checkNum }}</span>
|
|
|
+ <div>
|
|
|
+ <span>售票数</span>
|
|
|
+ <span>{{ item.saleNum }}</span>
|
|
|
+ <i></i>
|
|
|
+ <span>登船数</span>
|
|
|
+ <span>{{ item.checkNum }}</span>
|
|
|
+ </div>
|
|
|
+ <template v-if="historyCurrent===index">
|
|
|
+ <span class="cl-btn" v-show="historyState===1" @click="history_pause">暂停</span>
|
|
|
+ <span class="cl-btn" v-show="historyState===2" @click="history_resume">继续</span>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</div>
|
|
|
</li>
|
|
@@ -113,7 +126,7 @@ export default {
|
|
|
import {
|
|
|
ueCallBoatGuiji, ueCallSetBoatDriveSpeed, ueCallBoatDrive, ueCallBoatCloseDrive, ueCallBoatStop, ueCallBoatContinue,
|
|
|
ueCallInitAll, ueCallFindJinghua, ueCallRunJinghua, ueCallRunOpJinghua, ueCallFindZhuanhang, ueCallRunZhuanhang, ueCallRunOpZhuanhang,
|
|
|
- ueCallChangeTime, ueCallChangeTrackType
|
|
|
+ ueCallChangeTrackType, ueCallHistoryRun, ueCallHistoryStop, ueCallHistoryAgain, ueCallHistoryClear
|
|
|
} from '@/utils/UIInteractions'
|
|
|
import { useDateFormat } from '@vueuse/core'
|
|
|
|
|
@@ -227,13 +240,38 @@ export default {
|
|
|
return index.toString().padStart(2, '0')
|
|
|
}
|
|
|
|
|
|
- function historyPreview(item) {
|
|
|
- ueCallChangeTime(+item.routeTime.slice(11,13))
|
|
|
- setTimeout(() => {
|
|
|
- currentTab.value = 'cbxx'
|
|
|
- toggleBottom('preview')
|
|
|
- }, 500);
|
|
|
+ const historyState = ref(0) /* 0--未开始/已结束; 1--播放中; 2--已暂停; -1--禁用状态 */
|
|
|
+ const historyCurrent = ref(null)
|
|
|
+
|
|
|
+ bus.on('ueRec_HistoryRun', (data) => {
|
|
|
+ if(data.isOk=='true') {
|
|
|
+ historyState.value=1
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ function history_play(item,index) {
|
|
|
+ if(previewState.value===-1) { return }
|
|
|
+ historyCurrent.value = index
|
|
|
+ historyState.value = -1
|
|
|
+ ueCallHistoryRun(item.routeTypeId, item.mmsi, item.routeTime.slice(0,10)+'%20'+item.routeTime.slice(11))
|
|
|
+ }
|
|
|
+
|
|
|
+ function history_pause() {
|
|
|
+ ueCallHistoryStop()
|
|
|
+ historyState.value = 2
|
|
|
}
|
|
|
+
|
|
|
+ function history_resume() {
|
|
|
+ ueCallHistoryAgain()
|
|
|
+ historyState.value = 1
|
|
|
+ }
|
|
|
+
|
|
|
+ function history_stop() {
|
|
|
+ ueCallHistoryClear()
|
|
|
+ historyState.value = 0
|
|
|
+ historyCurrent.value = null
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
watch(()=>props.boatInfo.mmsi, (val) => {
|
|
|
GetLshb(val).then(res => {
|
|
@@ -253,8 +291,10 @@ export default {
|
|
|
bus.off('ueRec_boatGuiji')
|
|
|
bus.off('ueRec_boatFockClear')
|
|
|
bus.off('ueRec_pujiangInit')
|
|
|
+ bus.off('ueRec_HistoryRun')
|
|
|
// ueCallInitAll()
|
|
|
ueCallBoatCloseDrive()
|
|
|
+ ueCallHistoryClear()
|
|
|
})
|
|
|
|
|
|
|
|
@@ -362,54 +402,67 @@ export default {
|
|
|
}
|
|
|
&>div {
|
|
|
flex: 1;
|
|
|
+ .cl-btn {
|
|
|
+ display: block;
|
|
|
+ width: 55px;
|
|
|
+ height: 20px;
|
|
|
+ font-size: 13px;
|
|
|
+ font-style: italic;
|
|
|
+ color: #FFFFFF;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: center;
|
|
|
+ background: url('@/assets/imgs/page_ssky/bg-btn-blue.png');
|
|
|
+ background-size: contain;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
&>div:first-child {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
- &>span:nth-child(1) {
|
|
|
- font-size: 14px;
|
|
|
- font-weight: bold;
|
|
|
- color: #FBFDFF;
|
|
|
- }
|
|
|
- &>span:nth-child(2) {
|
|
|
- font-size: 14px;
|
|
|
- font-family: Barlow;
|
|
|
- color: rgba($color: #FBFDFF, $alpha: 0.6);
|
|
|
- }
|
|
|
- &>span:nth-child(3) {
|
|
|
- display: block;
|
|
|
- width: 55px;
|
|
|
- height: 20px;
|
|
|
- font-size: 13px;
|
|
|
- font-style: italic;
|
|
|
- color: #FFFFFF;
|
|
|
- line-height: 20px;
|
|
|
- text-align: center;
|
|
|
- background: url('@/assets/imgs/page_ssky/bg-btn-blue.png');
|
|
|
- background-size: contain;
|
|
|
- cursor: pointer;
|
|
|
+ height: 20px;
|
|
|
+ &>div {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ &>span:nth-child(1) {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #FBFDFF;
|
|
|
+ }
|
|
|
+ &>span:nth-child(2) {
|
|
|
+ margin-left: 10px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Barlow;
|
|
|
+ color: rgba($color: #FBFDFF, $alpha: 0.6);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
&>div:last-child {
|
|
|
display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
align-items: center;
|
|
|
margin-top: 8px;
|
|
|
- &>span:nth-child(1), &>span:nth-child(4) {
|
|
|
- margin-right: 7px;
|
|
|
- font-size: 14px;
|
|
|
- color: #FBFDFF;
|
|
|
- }
|
|
|
- &>span:nth-child(2), &>span:nth-child(5) {
|
|
|
- font-size: 14px;
|
|
|
- font-family: Barlow;
|
|
|
- color: #FFEA00;
|
|
|
- }
|
|
|
- &>i:nth-child(3) {
|
|
|
- display: block;
|
|
|
- height: 12px;
|
|
|
- border-right: 1px dashed #ddd;
|
|
|
- margin: 0 6px 0 20px;
|
|
|
+ height: 20px;
|
|
|
+ &>div {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ &>span:nth-child(1), &>span:nth-child(4) {
|
|
|
+ margin-right: 7px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #FBFDFF;
|
|
|
+ }
|
|
|
+ &>span:nth-child(2), &>span:nth-child(5) {
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Barlow;
|
|
|
+ color: #FFEA00;
|
|
|
+ }
|
|
|
+ &>i:nth-child(3) {
|
|
|
+ display: block;
|
|
|
+ height: 12px;
|
|
|
+ border-right: 1px dashed #ddd;
|
|
|
+ margin: 0 6px 0 20px;
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -438,10 +491,6 @@ export default {
|
|
|
line-height: 30px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
- .btn-disabled {
|
|
|
- cursor: not-allowed;
|
|
|
- filter: brightness(0.7);
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
|