powerbank/pages/agentpages/shopguanli/myshop/index.vue

215 lines
5.0 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="top">
<u-search placeholder="搜索" input-align="center" v-model="keyword"></u-search>
</view>
<view class="list">
<view class="listitem" v-for="(item,index) in 10" :key="index">
<view class="toptit">
<u-icon name="calendar-fill"></u-icon>
<view class="tit">
星途自助台球棋 牌室
</view>
<view class="bd">
绑定设备
</view>
<view class="bd">
计费规则
</view>
<view class="yuan">
<text style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
<text style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
<text style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
</view>
</view>
<view class="rishou">
<view class="rishouwz">
<text>日收</text><text>月收</text><text>上月收</text><text>在线</text><text>离线</text>
</view>
<view class="rishouje">
<text>6</text><text>48</text><text>0</text><text>2</text><text>0</text>
</view>
</view>
<view class="gzlist">
<view class="jfgz">
<text>计费规则</text>3.00/小时前5分钟免费日封顶30.00
</view>
<view class="phone">
<text>联系电话</text>12312345678
</view>
<view class="phones">
<text>绑定人员</text>星途自助台球棋牌室21260
</view>
</view>
<view class="yunxing">
<text>已运营68天</text> <text>2024-02-03 15:22:52</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</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: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
.list{
overflow-y: scroll;
height: 100vh;
padding-bottom: 400rpx;
margin-top: 26rpx;
.listitem{
margin-bottom: 28rpx !important;
padding: 12rpx 38rpx;
box-sizing: border-box;
width: 680rpx;
height: 510rpx;
background: #FFFFFF;
border-radius: 38rpx 38rpx 38rpx 38rpx;
margin: auto;
.yunxing{
display: flex;
justify-content: space-between;
font-size: 24rpx;
color: #808080;
margin-top: 26rpx;
}
.phones{
margin-top: 16rpx;
font-size: 24rpx;
color: #1DBE7B;
border-bottom: 1px solid #ccc;
padding-bottom: 26rpx;
box-sizing: border-box;
text{
color: #808080;
}
}
.phone{
margin-top: 16rpx;
font-size: 24rpx;
color: #3D3D3D;
text{
color: #808080;
}
}
.gzlist{
margin-top: 30rpx;
.jfgz{
font-size: 24rpx;
color: #3D3D3D;
text{
color: #808080;
}
}
}
.rishou{
margin-top: 26rpx;
padding: 0 28rpx;
box-sizing: border-box;
.rishouwz{
display: flex;
justify-content: space-between;
text{
font-size: 24rpx;
color: #808080;
}
}
.rishouje{
display: flex;
justify-content: space-between;
margin-top: 10rpx;
text{
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
}
}
.toptit{
border-bottom: 1px solid #ccc;
display: flex;
justify-content: space-between;
padding-bottom: 12rpx;
box-sizing: border-box;
.tit{
width: 236rpx;
background: #DBFAED;
border-radius: 16rpx 16rpx 16rpx 16rpx;
font-weight: 600;
font-size: 30rpx;
color: #3D3D3D;
padding: 10rpx 12rpx;
box-sizing: border-box;
}
.bd{
margin-top: 28rpx;
height:100%;
font-size: 20rpx;
color: #FFFFFF;
padding: 4rpx 12rpx;
box-sizing: border-box;
background: #1DBE7B;
border-radius: 6rpx 6rpx 6rpx 6rpx;
}
.yuan{
margin-top: 20rpx;
}
}
}
}
.top{
width: 750rpx;
height: 136rpx;
background: #FFFFFF;
padding: 32rpx 36rpx;
box-sizing: border-box;
/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>