26 lines
443 B
Vue
26 lines
443 B
Vue
<template>
|
|
<view class="searchChexing">{{chexing}}</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "searchChexing",
|
|
props:{
|
|
chexing:{
|
|
type:String
|
|
}
|
|
}
|
|
};
|
|
// chexing : tab切换栏下面的那行字
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.searchChexing {
|
|
height: 77upx;
|
|
color: #333333;
|
|
font-size: 24upx;
|
|
line-height: 77upx;
|
|
text-indent: 27upx;
|
|
border-top: 3upx solid #EEEEEE;
|
|
}
|
|
</style> |