feat: add guide route and message page and empty person page
This commit is contained in:
4
src/pages/orderCheck/index.config.ts
Normal file
4
src/pages/orderCheck/index.config.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: '订单确认',
|
||||
navigationBarBackgroundColor: '#FAFAFA'
|
||||
})
|
||||
1
src/pages/orderCheck/index.scss
Normal file
1
src/pages/orderCheck/index.scss
Normal file
@@ -0,0 +1 @@
|
||||
@use '~@/scss/images.scss' as img;
|
||||
12
src/pages/orderCheck/index.tsx
Normal file
12
src/pages/orderCheck/index.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react'
|
||||
import { View, Text } from '@tarojs/components'
|
||||
|
||||
const OrderCheck = () => {
|
||||
return (
|
||||
<View>
|
||||
<Text>OrderCheck</Text>
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
||||
export default OrderCheck
|
||||
Reference in New Issue
Block a user