44 lines
1.1 KiB
Vue
44 lines
1.1 KiB
Vue
<template>
|
|
<view>
|
|
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">登录</block></cu-custom>
|
|
<view class="padding-lr">
|
|
<view class="padding-xs flex align-center" style="padding-top: 20%;">
|
|
<view class="flex-sub text-center">
|
|
<view class="text-xsl padding">
|
|
<text class=" cuIcon-roundclosefill text-red"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="padding-xs flex align-center">
|
|
<view class="flex-sub text-center">
|
|
<view class="text-xl padding text-center">
|
|
<text class="text-black text-bold" style="font-size: 20px;">账号/密码错误</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="padding flex flex-direction" style="padding-top: 40%;">
|
|
<button class="cu-btn bg-cyan margin-tb-sm lg" @click="buttonClick">返回登录</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
buttonClick() {
|
|
uni.navigateTo({
|
|
url: "/pages/plugin/login"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|