소스 검색

增加二手模块

zhengjinyi 4 년 전
부모
커밋
9fca1f8040
5개의 변경된 파일66개의 추가작업 그리고 0개의 파일을 삭제
  1. 30 0
      pages.json
  2. 9 0
      second/pages/form/form.vue
  3. 9 0
      second/pages/form/introduce.vue
  4. 9 0
      second/pages/product/product-details.vue
  5. 9 0
      second/pages/product/product-list.vue

+ 30 - 0
pages.json

@@ -470,6 +470,36 @@
 					}
 				}
 			]	
+		},{
+			"root": "second",
+			"pages": [
+				{
+					"path": "pages/form/introduce",
+					"style": {
+						"navigationBarTitleText": "二手市场介绍",
+						"enablePullDownRefresh":true
+					}
+				},{
+					"path": "pages/form/form",
+					"style": {
+						"navigationBarTitleText": "发布商品"
+					}
+				},
+				{
+					"path": "pages/product/product-list",
+					"style": {
+						"navigationBarTitleText": "二手商品",
+						"enablePullDownRefresh":true
+					}
+				},
+				{
+					"path": "pages/product/product-details",
+					"style": {
+						"navigationBarTitleText": "二手商品详情",
+						"enablePullDownRefresh":true
+					}
+				}
+			]	
 		},
 		{
 			"root": "supplier",

+ 9 - 0
second/pages/form/form.vue

@@ -0,0 +1,9 @@
+<template>
+	<text>发布二手商品</text>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 9 - 0
second/pages/form/introduce.vue

@@ -0,0 +1,9 @@
+<template>
+	<text>二手市场介绍</text>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 9 - 0
second/pages/product/product-details.vue

@@ -0,0 +1,9 @@
+<template>
+	<text>二手详情</text>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 9 - 0
second/pages/product/product-list.vue

@@ -0,0 +1,9 @@
+<template>
+	<text>二手列表</text>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>