backLogin

This commit is contained in:
shijing 2022-11-02 16:53:16 +08:00
parent 7204416ef2
commit d4dabf8cbe
2 changed files with 16 additions and 3 deletions

View File

@ -2,8 +2,8 @@
"name" : "曲阳金隅EHS", "name" : "曲阳金隅EHS",
"appid" : "__UNI__B00D419", "appid" : "__UNI__B00D419",
"description" : "曲阳金隅EHS", "description" : "曲阳金隅EHS",
"versionName" : "1.01.09", "versionName" : "1.01.11",
"versionCode" : 10109, "versionCode" : 101011,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -29,6 +29,7 @@
</view> </view>
<view class="btn"> <view class="btn">
<button type="default" class="save-btn" @click="saveInfo">保存</button> <button type="default" class="save-btn" @click="saveInfo">保存</button>
<button plain="true" class="back-btn" @click="backLogin">返回登陆页</button>
</view> </view>
</view> </view>
</template> </template>
@ -130,7 +131,11 @@
}) })
} }
}, },
backLogin(){
uni.reLaunch({
url:'/pages/login/login_'
})
},
} }
} }
</script> </script>
@ -207,4 +212,12 @@
color: #f3fbff; color: #f3fbff;
margin-top: 21rpx; margin-top: 21rpx;
} }
.back-btn{
width: 400rpx;
height: 80rpx;
border-radius: 40rpx;
font-size: 30rpx;
line-height: 80rpx;
margin-top: 21rpx;
}
</style> </style>