powerbank/pages/agentpages/devicemanagement/repairapplication/index.vue

85 lines
1.7 KiB
Vue
Raw Normal View History

2024-05-11 10:57:53 +08:00
<template>
<view class="page">
<u-navbar title="维修申报记录" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='38'></u-navbar>
<view class="box">
<view class="nav">
<view class="top">
<u-search placeholder="搜索" input-align="center" v-model="keyword"></u-search>
<view class="yc" @click="btnyc">维修申报</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
btnyc(){
uni.navigateTo({
url:'/pages/agentpages/devicemanagement/repairapplication/shenbao/index'
})
}
}
}
</script>
<style lang="scss">
page {
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
}
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
.box{
width: 750rpx;
height: 1624rpx;
background: #F4F5F7;
.nav{
width: 750rpx;
height: 130rpx;
background: #FFFFFF;
padding: 32rpx 36rpx;
box-sizing: border-box;
.top{
.yc{
width: 178rpx;
height: 68rpx;
background: #1DBE7B;
border-radius: 20rpx;
color: #FFFFFF;
line-height: 68rpx;
text-align: center;
margin-left: 28rpx;
}
display: flex;
justify-content: space-between;
/deep/ .u-content{
border: 1px solid #ccc;
border-radius: 50rpx 0 0 50rpx !important;
}
/deep/ .u-action{
border-radius: 0 50rpx 50rpx 0 !important;
width: 112rpx;
height: 65rpx;
line-height: 65rpx;
border: 2rpx solid #ccc;
margin-left: 0;
color: #3D3D3D;
background-color: #f2f2f2;
}
}
}
}
}
</style>