|
@@ -0,0 +1,16 @@
|
|
|
|
|
+import { Component } from 'react'
|
|
|
|
|
+import { View, Text } from '@tarojs/components'
|
|
|
|
|
+import Search from "../../components/search/index"
|
|
|
|
|
+import Findcircle from "../../components/findcircle/index"
|
|
|
|
|
+import './index.less'
|
|
|
|
|
+
|
|
|
|
|
+const Index= ()=> {
|
|
|
|
|
+
|
|
|
|
|
+return (
|
|
|
|
|
+ <View className='cantfind'>
|
|
|
|
|
+ <View className="cantfindicon"></View>
|
|
|
|
|
+ <Text>暂无此溯源码</Text>
|
|
|
|
|
+ </View>
|
|
|
|
|
+ )
|
|
|
|
|
+}
|
|
|
|
|
+export default Index
|