Files
QCN_rider/.svn/pristine/04/04539d51832126892d0d9ba205c9d9e3b74801e8.svn-base
2026-02-12 12:19:20 +08:00

63 lines
1.3 KiB
Plaintext

<template>
<view style="margin: 20rpx 100rpx;">
<up-form labelPosition="left" labelWidth='90' :model="password" ref="form1">
<up-form-item label="姓名" prop="userInfo.name" :borderBottom="true" ref="item1">
<up-input clearable='true' placeholder="请输入联系人姓名"
border="none"></up-input>
</up-form-item>
<up-form-item label="手机号" prop="userInfo.name" :borderBottom="true" ref="item1">
<up-input clearable='true' placeholder="请输入手机号"
border="none"></up-input>
</up-form-item>
</up-form>
<view class="" style="margin-top: 20rpx;">
<button @click="save()" :disabled='!password.password || !password.code ' class="logout-btn">确认</button>
</view>
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
import { ref } from "vue";
import { Service } from "../../Service/Service";
let password = ref({
password: '',
code: ''
})
onLoad(() => {
});
onShow(() => {
});
const save = () => {
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.logout-btn {
background-color: var(--nav-banbacor);
color: #fff;
font-weight: 500;
border-radius: 10rpx;
height: 80rpx;
line-height: 80rpx;
font-size: 30rpx;
margin: 0;
}
.logout-btn:active {
background-color: #f7f7f7;
color: #000;
}
</style>