12 changed files with 39 additions and 8 deletions
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '存杆柜记录', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.pole-storage-log-page { |
||||||
|
min-height: 100vh; |
||||||
|
background-color: #F2F3F5; |
||||||
|
padding: 30px; |
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
/** |
||||||
|
* 存杆柜记录 |
||||||
|
*/ |
||||||
|
import { View, Text } from '@tarojs/components' |
||||||
|
import { useLoad } from '@tarojs/taro' |
||||||
|
import './index.scss' |
||||||
|
|
||||||
|
const PoleStorageLog = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('存杆柜记录页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="pole-storage-log-page"> |
||||||
|
<Text>存杆柜记录</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default PoleStorageLog |
||||||
Loading…
Reference in new issue