|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<view class="container">
|
|
|
- 消息
|
|
|
+ <u-search placeholder="请输入搜索内容" v-model="searchForm.keyword"></u-search>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -8,6 +8,10 @@
|
|
|
import { ref } from 'vue'
|
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|
|
|
|
|
+ const searchForm = ref({
|
|
|
+ keyword: ''
|
|
|
+ })
|
|
|
+
|
|
|
onLoad(() => {
|
|
|
uni.setTabBarBadge({ //显示数字
|
|
|
index: 1, //tabbar下标
|
|
@@ -17,9 +21,10 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
- .containerx {
|
|
|
+ .container {
|
|
|
height: 100vh;
|
|
|
width: 100vw;
|
|
|
background-color: #f7f7f7;
|
|
|
+ padding: 0 20px;
|
|
|
}
|
|
|
</style>
|