Просмотр исходного кода

feat:添加积分订单和订单详情界面结构

xyh 5 месяцев назад
Родитель
Сommit
4792fb6874
3 измененных файлов с 50 добавлено и 0 удалено
  1. 24 0
      src/pages.json
  2. 13 0
      src/points/order/orderDetails.vue
  3. 13 0
      src/points/order/orderList.vue

+ 24 - 0
src/pages.json

@@ -486,6 +486,30 @@
 							"titleNView": false
 						}
 					}
+				},
+				{
+					"path": "order/orderList",
+					"style": {
+						"navigationBarTitleText": "积分订单",
+						"navigationBarBackgroundColor": "#2cb8d4",
+						"navigationBarTextStyle": "white",
+						"app-plus": {
+							"softinputNavBar": "none",
+							"titleNView": false
+						}
+					}
+				},
+				{
+					"path": "order/orderDetails",
+					"style": {
+						"navigationBarTitleText": "订单详情",
+						"navigationBarBackgroundColor": "#2cb8d4",
+						"navigationBarTextStyle": "white",
+						"app-plus": {
+							"softinputNavBar": "none",
+							"titleNView": false
+						}
+					}
 				}
 			]
 		}

+ 13 - 0
src/points/order/orderDetails.vue

@@ -0,0 +1,13 @@
+<script>
+export default {
+  name: "orderDetails"
+}
+</script>
+
+<template>
+
+</template>
+
+<style scoped lang="scss">
+
+</style>

+ 13 - 0
src/points/order/orderList.vue

@@ -0,0 +1,13 @@
+<script>
+export default {
+  name: "orderList"
+}
+</script>
+
+<template>
+
+</template>
+
+<style scoped lang="scss">
+
+</style>