Browse Source

排版优化

shish 8 months ago
parent
commit
074b031873
1 changed files with 24 additions and 2 deletions
  1. 24 2
      ghsApp/src/admin/shop/renew.vue

+ 24 - 2
ghsApp/src/admin/shop/renew.vue

@@ -4,9 +4,27 @@
 			<view style="margin-top:24upx;">当前系统到期时间:{{ currentDeadline }}</view>
 			<view style="margin-top:24upx;">续期一年到期时间:<text style="color:#3385FF;">{{ newDeadline }}</text></view>
 			<view style="margin-top:40upx;text-align:center;">
-				<button class="admin-button-com big default" @click="closeRenew()" style="width:200upx;">稍后</button>
         		<button class="admin-button-com big blue" @click="startRenew()" style="margin-left:80upx;width:200upx;">续期一年</button>
 			</view>
+            <view style="margin-top:40upx;">仓库版系统 2200元</view>
+			<view style="margin-top:40upx;text-align:center;">
+        		<button class="admin-button-com big blue" @click="startRenew()" style="margin-left:80upx;width:200upx;">购买</button>
+			</view>
+            <view style="margin-top:40upx;">门店版(单屏收银机)系统 4800元</view>
+			<view style="margin-top:40upx;text-align:center;">
+        		<button class="admin-button-com big blue" @click="startRenew()" style="margin-left:80upx;width:200upx;">购买</button>
+			</view>
+            <view style="margin-top:40upx;">门店版(双屏收银机)系统 5500元</view>
+			<view style="margin-top:40upx;text-align:center;">
+        		<button class="admin-button-com big blue" @click="startRenew()" style="margin-left:80upx;width:200upx;">购买</button>
+			</view>
+            <view style="margin-top:40upx;">
+                其他版本系统 
+                <input type="text" style="width:200upx;display: inline-block;border:2upx solid #CCCCCC;" placeholder="请输入金额" v-model="qt" @focus="qt=''" />
+            </view>
+			<view style="margin-top:40upx;text-align:center;">
+        		<button class="admin-button-com big blue" @click="startRenew()" style="margin-left:80upx;width:200upx;">购买</button>
+			</view>
         </view>
     </view>
 </template>
@@ -20,7 +38,8 @@ export default {
 			currentDeadline:'',
 			newDeadline:'',
             hasRenew:0,
-            renewType:0
+            renewType:0,
+            qt:''
         }
     },
     computed: {
@@ -99,6 +118,9 @@ export default {
 		},
 		getError(){
 
+        },
+        closeRenew(){
+            uni.navigateBack()
         }
     }
 };