mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-10-30 09:48:43 +08:00
20 lines
232 B
Vue
20 lines
232 B
Vue
|
|
<template>
|
||
|
|
<view class="container">
|
||
|
|
搜索页面
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
title: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onLoad() {},
|
||
|
|
methods: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped></style>
|