bike/pages_adminSet/shgl.vue

190 lines
3.6 KiB
Vue
Raw Normal View History

2024-08-12 17:52:23 +08:00
<template>
<view class="page">
<u-navbar title="审核管理" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="" style="background: #FFFFFF;width: 750rpx;padding-bottom: 36rpx;">
<view class="top_box" style="margin-top: 20rpx;">
<view class="sear_ipt">
<input type="text" v-model="searchKeyword" placeholder="请输入SN码" class="input"
placeholder-style="color:#C7CDD3" @input="search()">
</view>
</view>
</view>
<view class="cont">
<view class="card">
<view class="top">
<view class="name">张某某</view>
<view class="phone">13523458945</view>
<view class="type">待处理</view>
</view>
<view class="txt">其他 车辆不好控制方向</view>
<view class="pic_cont">
<view class="img" v-for="item in 3" :key="item">
<image src="https://lxnapi.ccttiot.com/bike/img/static/ugvqmfB3QYujZ6SnfTia" mode=""></image>
</view>
</view>
<view class="info_cont">
<view class="sn">
SN:134531
</view>
<view class="time">
提交时间02-11 15:06:45
</view>
</view>
<view class="btn_cont">
<view class="btn1">
生成工单
</view>
<view class="btn2">
忽略
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
searchKeyword: '',
}
},
methods: {
search() {
// 搜索逻辑
}
}
}
</script>
<style lang="scss" scoped>
.page {
width: 750rpx;
}
.top_box {
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 28rpx 30rpx;
margin: 0 auto;
width: 672rpx;
height: 100rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx;
}
.cont {
width: 100%;
}
.card {
padding: 24rpx;
margin: 20rpx auto;
width: 672rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx;
.btn_cont{
display: flex;
flex-wrap: nowrap;
.btn1{
font-weight: 400;
font-size: 32rpx;
color: #FEFFFE;
padding: 6rpx 36rpx;
background: #64B6A8;
border-radius: 8rpx 8rpx 8rpx 8rpx;
}
.btn2{
font-weight: 400;
font-size: 32rpx;
color: #64B6A8;
padding: 6rpx 36rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
border: 2rpx solid #64B6A8;
}
}
.info_cont{
margin-top: 22rpx;
display: flex;
align-items: center;
flex-wrap: nowrap;
justify-content: space-between;
.sn{
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
.time{
font-weight: 400;
font-size: 24rpx;
color: #979797;
}
}
.txt {
margin-top: 24rpx;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
}
.pic_cont {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
.img {
margin-top: 10rpx;
background: #D8D8D8;
width: 256rpx;
height: 134rpx;
}
}
}
.top {
border-bottom: 1rpx solid #D8D8D8;
padding-bottom: 20rpx;
display: flex;
align-items: center;
.name {
width: 100rpx;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
}
.phone {
margin-left: 38rpx;
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
.type {
margin-left: auto;
display: flex;
align-items: center;
justify-content: center;
width: 130rpx;
height: 48rpx;
background: #FFEEEE;
border-radius: 8rpx;
font-weight: 400;
font-size: 28rpx;
color: #FF4444;
}
}
</style>