lhl преди 2 години
родител
ревизия
77a3758c75
променени са 4 файла, в които са добавени 87 реда и са изтрити 5 реда
  1. 12 0
      pages.json
  2. 33 0
      pages/transaction/transfer.vue
  3. 9 5
      pages/user/authrz.vue
  4. 33 0
      pages/user/coininfo.vue

+ 12 - 0
pages.json

@@ -45,6 +45,12 @@
 				"navigationBarTitleText": "提幣詳情"
 			}
 		},
+		{
+			"path": "pages/transaction/transfer",
+			"style": {
+				"navigationBarTitleText": "資金劃轉"
+			}
+		},
 		{
 			"path": "pages/heyue/heyue",
 			"style": {
@@ -99,6 +105,12 @@
 			"style": {
 				"navigationBarTitleText": ""
 			}
+		},
+		{
+			"path": "pages/user/coininfo",
+			"style": {
+				"navigationBarTitleText": ""
+			}
 		}
 		
 	],

+ 33 - 0
pages/transaction/transfer.vue

@@ -0,0 +1,33 @@
+<template>
+	<view class="content">
+
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+
+			}
+		},
+		onLoad() {
+
+		},
+		onShow() {
+
+		},
+		onReachBottom() {
+
+		},
+		onReady() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style lang="scss">
+</style>

+ 9 - 5
pages/user/authrz.vue

@@ -18,14 +18,14 @@
 				上傳身份證正面
 			</view>
 			<view class="up-img" @click="upcardzm()">
-				<image :src="cardzm" mode="heightFix" v-if="cardzm"></image>
+				<image :src="cardzmt" mode="heightFix" v-if="cardzm"></image>
 				<image src="../../static/img/flower.png" mode="heightFix" v-else></image>
 			</view>
 			<view class="up-tit">
 				上傳身份證背面
 			</view>
 			<view class="up-img"  @click="upcardfm()">
-				<image :src="cardfm" mode="heightFix" v-if="cardfm"></image>
+				<image :src="cardfmt" mode="heightFix" v-if="cardfm"></image>
 				<image src="../../static/img/flower.png" mode="heightFix" v-else></image>
 			</view>
 			<view class="up-btn" @click="upauthrz()">
@@ -45,7 +45,9 @@
 		data() {
 			return {
 				cardzm: '',
-				cardfm: ''
+				cardzmt: '',
+				cardfm: '',
+				cardfmt: '',
 			}
 		},
 		onLoad() {
@@ -66,7 +68,8 @@
 					filename: ''
 				}).then(data => {
 					console.log('data', data);
-					this.cardzm = data[0].src;
+					this.cardzm = data[0].img;
+					this.cardzmt = data[0].src;
 				});
 			},
 			upcardfm() {
@@ -74,7 +77,8 @@
 					filename: ''
 				}).then(data => {
 					console.log('data', data);
-					this.cardfm = data[0].src;
+					this.cardfm = data[0].img;
+					this.cardfmt = data[0].src;
 				});
 			},
 			upauthrz() {

+ 33 - 0
pages/user/coininfo.vue

@@ -0,0 +1,33 @@
+<template>
+	<view class="content">
+
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+
+			}
+		},
+		onLoad() {
+
+		},
+		onShow() {
+
+		},
+		onReachBottom() {
+
+		},
+		onReady() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style lang="scss">
+</style>