46 lines
674 B
Vue
46 lines
674 B
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar :is-back="false" title="店铺管理" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' height='45'></u-navbar>
|
|
<view class="searc_box">
|
|
<view class="search">
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
bgc: {
|
|
backgroundColor: "#fff",
|
|
},
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page{
|
|
background: #F7FAFE;
|
|
}
|
|
.page{
|
|
.searc_box{
|
|
padding: 36rpx;
|
|
width: 750rpx;
|
|
.search{
|
|
width: 100%;
|
|
height: 68rpx;
|
|
border: 2rpx solid #4297F3;
|
|
border-radius: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|