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.
25 lines
562 B
25 lines
562 B
import React, { useEffect, useState } from 'react';
|
|
import Taro from '@tarojs/taro';
|
|
import { View } from '@tarojs/components';
|
|
import { useIndustry } from '@/actions/business';
|
|
import './index.scss';
|
|
|
|
|
|
const Index = () => {
|
|
|
|
function toPatrol() {
|
|
Taro.navigateTo({
|
|
url: '/packages/patrol/index'
|
|
})
|
|
}
|
|
|
|
return (
|
|
<View className='page'>
|
|
<View className='fill'>
|
|
<View className='title'>巡 查 养 护</View>
|
|
<View className='btn' onClick={toPatrol}>填报</View>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
export default Index;
|
|
|