From 9ab4955166b7b1370fc2a49b152353241ca9e64a Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 16 十月 2023 09:22:23 +0800
Subject: [PATCH] 小程序

---
 minipro_standard/pages/changePassword/changePassword.vue |  128 ------------------------------------------
 1 files changed, 0 insertions(+), 128 deletions(-)

diff --git a/minipro_standard/pages/changePassword/changePassword.vue b/minipro_standard/pages/changePassword/changePassword.vue
index a975dd8..e69de29 100644
--- a/minipro_standard/pages/changePassword/changePassword.vue
+++ b/minipro_standard/pages/changePassword/changePassword.vue
@@ -1,128 +0,0 @@
-<template>
-	<view class="password">
-		<view class="password_tip">
-			<image src="@/static/password_ic_tip@2x.png" alt="" />
-			<text>瀵嗙爜鐢�6-20涓嫳鏂囧瓧姣嶃�佹暟瀛楁垨绗﹀彿缁勬垚</text>
-		</view>
-		<view class="password_list">
-			<view class="password_list_item">
-				<text>鍘熷瘑鐮�</text>
-				<view class="password_list_item_box">
-					<input type="password" v-model="form.originalPassword" maxlength="20" placeholder="璇疯緭鍏ュ師瀵嗙爜">
-				</view>
-			</view>
-			<view class="password_list_item">
-				<text>鏂板瘑鐮�</text>
-				<view class="password_list_item_box">
-					<input type="password" v-model="form.newPassword" maxlength="20" placeholder="璇疯緭鍏ユ柊瀵嗙爜">
-				</view>
-			</view>
-			<view class="password_list_item">
-				<text>纭瀵嗙爜</text>
-				<view class="password_list_item_box">
-					<input type="password" v-model="form.confirmPassword" maxlength="20" placeholder="鍐嶆杈撳叆鏂板瘑鐮�">
-				</view>
-			</view>
-		</view>
-		<view class="password_footer">
-			<button v-preventReClick class="password_footer_submit">
-				<text>瀹屾垚</text>
-			</button>
-		</view>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				form: {
-					originalPassword: '',
-					newPassword: '',
-					confirmPassword: ''
-				}
-			};
-		}
-	}
-</script>
-
-<style lang="scss" scoped>
-	.password {
-	    position: absolute;
-	    width: 100%;
-	    height: 100%;
-	    background: white;
-	    .password_tip {
-	        height: 72rpx;
-	        display: flex;
-	        align-items: center;
-	        background: #F7F7F7;
-	        padding: 0 30rpx;
-	        image {
-	            width: 24rpx;
-	            height: 24rpx;
-	            margin-right: 10rpx;
-	        }
-	        text {
-	            font-size: 24rpx;
-	            font-weight: 400;
-	            color: #666666;
-	        }
-	    }
-	    .password_list {
-	        padding: 0 30rpx;
-	        .password_list_item {
-	            display: flex;
-	            align-items: center;
-	            height: 90rpx;
-	            border-bottom: 1rpx solid #E5E5E5;
-	            text {
-	                width: 150rpx;
-	                flex-shrink: 0;
-	                font-size: 30rpx;
-	                font-weight: 400;
-	                color: #222222;
-	            }
-	            .password_list_item_box {
-	                display: flex;
-	                justify-content: space-between;
-	                flex: 1;
-	                input {
-	                    border: none;
-	                    font-size: 30rpx;
-	                }
-	                input::-webkit-input-placeholder {
-	                    font-size: 28rpx;
-	                    font-weight: 400;
-	                    color: #B2B2B2;
-	                }
-	                p {
-	                    font-size: 26rpx;
-	                    font-weight: 400;
-	                    color: #4275FC;
-	                }
-	            }
-	        }
-	    }
-	    .password_footer {
-	        margin-top: 80rpx;
-	        padding: 0 30rpx;
-	        .password_footer_submit {
-	            width: 100%;
-	            height: 88rpx;
-	            border: none;
-	            background: #4275FC;
-	            box-shadow: 0 0 12rpx 0 rgba(0, 0, 0, 0.08);
-	            border-radius: 8rpx;
-	            display: flex;
-	            align-items: center;
-	            justify-content: center;
-	            text {
-	                font-size: 30rpx;
-	                font-weight: 500;
-	                color: #FFFFFF;
-	            }
-	        }
-	    }
-	}
-</style>

--
Gitblit v1.9.3