抖音小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
657 B

<template>
<view class="container">
<!-- <view>
<cover-image class="img" src="/static/logo.png"></cover-image>
</view> -->
<view>
<uni-search-bar class="uni-mt-10" radius="5" placeholder="请输入喜欢的艺术家代号吧~" clearButton="auto"
cancelButton="none" @confirm="search" />
</view>
4 years ago
<view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
search(res) {
uni.showToast({
title: '搜索:' + res.value,
icon: 'none'
})
},
}
}
</script>
<style>
.container {
padding: 20px;
font-size: 14px;
line-height: 24px;
}
</style>