| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <view :class="['page']">
- <view class="device-header">
- <view class="device-header_name">
- <text>洗车机编号:{{ state.device.deviceName }}</text>
- </view>
- <view class="device-header_fun">
- <uv-tags plain size="mini" type="info" :text="f" v-for="(f,i) in state.device.functions.split('\\|')" :key="i"></uv-tags>
- </view>
- <view class="device-header_fun">
- <uv-tags plain size="mini" type="primary" :text="state.device.state"></uv-tags>
- </view>
- </view>
- <view class="device-body">
- <view class="device-body_ops" @click="debounceStartStopDevice">
- <text v-if="state.device.state==='idle'">启动设备</text>
- <text v-else>停止设备</text>
- </view>
- <!-- <view class="device-body_ops-time">{{ state.time }}</view>-->
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import {onHide, onLoad, onShow} from "@dcloudio/uni-app";
- import {reactive, ref} from "vue";
- import {debounce} from "@/utils/common";
- import {get, post} from "@/utils/https";
- const initState = () => ({
- device: {
- functions:[],
- deviceName:'',
- state:''
- },
- time: "00:00:00",
- start: new Date()
- })
- const state = reactive(initState())
- onHide(() => {
- Object.assign(state, initState());
- })
- onLoad((options:any) => {
- console.log("device onLoad>>>>", options)
- let id = options?.shortId;
- if (!id) {
- let query = decodeURIComponent(options.q);
- let scanTime = options.scancode_time;
- console.log(query,scanTime)
- if(query){
- id = query.split("#")[1]
- }else{
- return;
- }
- }
- state.device = getApp<any>().globalData.last.device;
- loadDeviceDetail(id);
- });
- const loadDeviceDetail = (id: number) => {
- get(`/wash-device/queryDevice/${id}`).then((res: any) => {
- state.device = res;
- }).catch(e => {
- console.error(e)
- })
- // countTime();
- }
- const handleNavigateBack = () => {
- uni.navigateBack();
- }
- const debounceStartStopDevice = debounce(()=>{
- handleClickDevice();
- },600)
- const handleClickDevice = () => {
- if(state.device?.state==='idle'){
- uni.showLoading({
- title: "启动中",
- mask: true,
- });
- post(`/wash-device/startDevice/${state.device.shortId}`).then((res:any)=>{
- uni.hideLoading();
- uni.showToast({
- title:'设备启动成功'
- })
- })
- }else{
- uni.showLoading({
- title: "停止中",
- mask: true,
- });
- post(`/wash-device/stopDevice/${state.device.shortId}`).then((res:any)=>{
- uni.hideLoading()
- })
- }
- }
- const countTime = () => {
- setInterval(() => {
- let delta = new Date().getTime() - state.start.getTime();
- delta = delta / 1000;
- let hour = (delta / 3600).toFixed(0);
- let min = ((delta % 3600) / 60).toFixed(0);
- let second = ((delta % 3600) % 60).toFixed(0);
- state.time = [
- Number(hour) > 9 ? hour : `0${hour}`,
- Number(min) > 9 ? min : `0${min}`,
- Number(second) > 9 ? second : `0${second}`
- ].join(":")
- }, 1000)
- }
- </script>
- <style lang="scss" scoped>
- .page {
- height: 100vh;
- width: 100%;
- background-color: #f6f7fa;
- }
- .device-header {
- padding: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- &_name {
- font-weight: 500;
- margin: 15rpx 0;
- }
- &_fun {
- font-size: 13px;
- color: #7a7a7a;
- margin: 10rpx 0;
- }
- }
- .device-body {
- flex-grow: 1;
- margin-top: 60rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- align-content: center;
- &_ops {
- display: flex;
- justify-content: center;
- align-items: center;
- align-content: center;
- width: 300rpx;
- height: 300rpx;
- border-radius: 50%;
- background-color: $uni-color-primary;
- color: white;
- font-size: 28px;
- font-weight: 500;
- }
- }
- </style>
|