hwq 3 years ago
parent
commit
428cfacfaf
3 changed files with 26 additions and 4 deletions
  1. 2 2
      manifest.json
  2. 2 2
      pages.json
  3. 22 0
      pages/transaction/transactionDetail.vue

+ 2 - 2
manifest.json

@@ -1,5 +1,5 @@
 {
-    "name" : "基础项目",
+    "name" : "合約",
     "appid" : "__UNI__F0EBD91",
     "description" : "",
     "versionName" : "1.0.0",
@@ -64,7 +64,7 @@
         }
     },
     "h5" : {
-        "title" : "商城",
+        "title" : "合約",
         "domain" : "",
         "router" : {
             "base" : "/index/",

+ 2 - 2
pages.json

@@ -3,7 +3,7 @@
 			"path": "pages/index/index",
 			"style": {
 				"enablePullDownRefresh": true,
-				"navigationBarTitleText": "首",
+				"navigationBarTitleText": "首",
 				"navigationStyle": "custom"
 			}
 		},
@@ -118,7 +118,7 @@
 				"navigationBarTitleText": ""
 			}
 		}
-		
+
 	],
 	"globalStyle": {
 		"navigationBarTextStyle": "black",

+ 22 - 0
pages/transaction/transactionDetail.vue

@@ -0,0 +1,22 @@
+<template>
+	<view class="content"></view>
+</template>
+
+<script>
+export default {
+	data() {
+		return {};
+	},
+	onLoad() {},
+	onShow() {},
+	methods: {}
+};
+</script>
+
+<style lang="scss">
+page,
+.content {
+	min-height: 100%;
+	height: auto;
+}
+</style>