This commit is contained in:
Sliverber 2024-05-09 18:00:26 +08:00
parent 1e8cdd30ca
commit 21df16f0c0
5 changed files with 101 additions and 4 deletions

View File

@ -68,6 +68,14 @@
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path" : "order/device_detail",
"style" :
{
"navigationBarTitleText" : "",
"enablePullDownRefresh" : false
}
}
// ... A

View File

@ -1,7 +1,7 @@
<template>
<view class="page">
<u-navbar title="地图" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
<u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar>
<view class="slider">
<view class="tit">
@ -32,6 +32,62 @@
1
</view>
</view>
<view class="cont">
<view class="text">
用户行驶中
</view>
<view class="text">
1
</view>
</view>
<view class="cont" style="width: 140rpx;">
<view class="text">
用户临时锁定
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
已禁用
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
已离线
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
待租
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
用户预约中
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
调度设备
</view>
<view class="text">
1
</view>
</view>
</view>
<tab-bar :indexs='1' style=""></tab-bar>
</view>
@ -277,11 +333,19 @@
width: 750rpx;
.decice_cont{
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 22rpx 28rpx;
.cont:nth-child(5n) {
margin-right: 0;
}
.cont{
width: 120rpx;
margin-top: 18rpx;
margin-right: 10rpx;
// display: flex;
width: 130rpx;
.text{
width: 100%;
text-align: center;
font-weight: 500;
font-size: 24rpx;
@ -289,6 +353,9 @@
color: #3D3D3D;
}
}
.act1{
color: #4C97E7;
}
}
.btn_box{
width: 100%;

View File

@ -1,6 +1,6 @@
<template>
<view class="page">
<u-navbar :is-back="false" title="订单" :border-bottom="false" :background="bgc" title-color='#2E4975'
<u-navbar :is-back="false" title="订单" :border-bottom="false" :background="bgc" title-color='#2E4975'
title-size='36' height='36'></u-navbar>
<view class="top_box">
<view class="left_text">

View File

@ -1,6 +1,6 @@
<template>
<view class="page">
<u-navbar title="工作台" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
<u-navbar :is-back='false' title="工作台" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar>
<view class="cont_box">

View File

@ -0,0 +1,22 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>