|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '账户余额', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.account-balance-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 AccountBalance = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('账户余额详情页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="account-balance-page"> |
||||||
|
<Text>账户余额</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default AccountBalance |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '用户协议', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.agreement-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 Agreement = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('协议页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="agreement-page"> |
||||||
|
<Text>用户协议</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default Agreement |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '编辑资料', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.edit-profile-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 EditProfile = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('编辑个人信息页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="edit-profile-page"> |
||||||
|
<Text>编辑个人信息</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default EditProfile |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '商品消费', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.goods-cons-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 GoodsCons = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('商品消费页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="goods-cons-page"> |
||||||
|
<Text>商品消费</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default GoodsCons |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '帮助中心', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.help-center-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 HelpCenter = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('帮助中心页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="help-center-page"> |
||||||
|
<Text>帮助中心</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default HelpCenter |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '订单记录', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.order-list-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 OrderList = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('订单记录页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="order-list-page"> |
||||||
|
<Text>订单记录</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default OrderList |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '存杆柜记录', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.pole-storage-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 PoleStorage = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('存杆柜记录页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="pole-storage-page"> |
||||||
|
<Text>存杆柜记录</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default PoleStorage |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
export default { |
||||||
|
navigationBarTitleText: '未结算账单', |
||||||
|
navigationBarBackgroundColor: '#FFFFFF', |
||||||
|
navigationBarTextStyle: 'black', |
||||||
|
} |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
.unsettled-orders-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 UnsettledOrders = () => { |
||||||
|
useLoad(() => { |
||||||
|
console.log('未结算账单页面加载') |
||||||
|
}) |
||||||
|
|
||||||
|
return ( |
||||||
|
<View className="unsettled-orders-page"> |
||||||
|
<Text>未结算账单</Text> |
||||||
|
</View> |
||||||
|
) |
||||||
|
} |
||||||
|
|
||||||
|
export default UnsettledOrders |
||||||