hejie пре 3 година
родитељ
комит
617f2e09bd
5 измењених фајлова са 29 додато и 2 уклоњено
  1. 6 0
      src/pages.json
  2. 15 0
      src/pages/my/assistant.vue
  3. 4 0
      src/pages/my/index.vue
  4. 4 2
      src/pages/tea-list/index.vue
  5. BIN
      src/static/my/assistant.png

+ 6 - 0
src/pages.json

@@ -264,6 +264,12 @@
 			"style": {
 				"navigationBarTitleText": "资讯列表"
 			}
+		},
+		{
+			"path": "pages/my/assistant",
+			"style": {
+				"navigationBarTitleText": "开票助手"
+			}
 		}
 	],
 	"subPackages": [{

+ 15 - 0
src/pages/my/assistant.vue

@@ -0,0 +1,15 @@
+<template>
+  <view>
+    <span>aaaaa</span>
+  </view>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 4 - 0
src/pages/my/index.vue

@@ -222,6 +222,10 @@
 						<image class="fun_img" src="/static/my/green.png" mode=""></image>
 						<view class="fun_text">新手教程</view>
 					</navigator>
+					<navigator class="fun_list flex_c flex_ac" url="/pages/my/assistant" hover-class="none">
+						<image class="fun_img" src="/static/my/assistant.png" mode=""></image>
+						<view class="fun_text">开票助手</view>
+					</navigator>
 					<view class="fun_list flex_c flex_ac">
 						<button open-type="contact" style="background: #fff; border: 0; line-height: 1; padding: 0">
 							<image class="fun_img" src="/static/my/service.png" mode=""></image>

+ 4 - 2
src/pages/tea-list/index.vue

@@ -6,8 +6,10 @@
       :key="index"
     >
       <image class="head_img" :src="item.head_pic" mode=""></image>
-      <view class="tea_info flex_grow flex_c">
-        <view class="tea_name">{{ item.nickname }}</view>
+      <view class="tea_info">
+        <view class="tea_name  flex_r flex_ac">{{ item.nickname }} 
+          <view class="balance" :style="{'margin-left': '10rpx'}">{{item.level}}</view>
+        </view>
         <view class="balance flex_r flex_ac"
           >{{ item.mobile }}
           <view class="copyBalance" @tap="copyText(item.mobile)"

BIN
src/static/my/assistant.png