wechat
ihzero 2023-09-10 10:23:59 +08:00
parent 169e2016ea
commit 2655d89b0c
4 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<template>
<div></div>
</template>

View File

@ -129,6 +129,15 @@
}
}
,{
"path" : "pages/index/insect-monitors",
"style" :
{
"navigationBarTitleText": "昆虫性诱监测",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",

View File

@ -45,6 +45,10 @@
label:'水质监控',
url:'/pages/index/water-quality'
},
{
label:'昆虫性诱监测',
url:'/pages/index/insect-monitors'
},
],
},
{

View File

@ -0,0 +1,32 @@
<template>
<div>
<SearchForm :schemas="searchFormSchema"></SearchForm>
</div>
</template>
<script>
import SearchForm from '@/components/search-form'
export default {
components: {
SearchForm,
},
data() {
return {
searchFormSchema: [
{
field: 'base',
label: '基地',
components: 'ApiSelect',
componentProps: {
api: async () => {
// const { data } = await getAgriculturalBasic()
return {}
},
labelField: 'name',
valueField: 'id',
},
},
],
}
},
}
</script>