deming/pageB/components/sdetails/navs.vue

33 lines
605 B
Vue
Raw Normal View History

2020-06-15 00:49:26 +00:00
<template>
<view class="nav">
2020-06-29 09:24:57 +00:00
<text>{{ value }}</text>
<image src="/static/image/common/1.png"></image>
2020-06-15 00:49:26 +00:00
</view>
</template>
<script>
export default {
2020-06-29 09:24:57 +00:00
name:"navs",
props: {
value: String
}
2020-06-15 00:49:26 +00:00
}
</script>
<style lang="scss" scoped>
.nav{
width: 100%;
height: 100rpx;
display: flex;
padding: 30rpx;
align-items: center;
justify-content: space-between;
font-size: 30rpx;
// margin-bottom: 2rpx;
border-bottom: 2rpx solid #ececec;
color:#333;
background-color: #fff;
>image{
width: 13rpx;
height: 25rpx;
}
}
</style>