This commit is contained in:
wangweidong 2026-04-15 16:03:39 +08:00
parent 6bbe0377ea
commit 13bfa311bf
3 changed files with 35 additions and 5 deletions

View File

@ -11,10 +11,10 @@
<input class="password" password type="text" v-model="form.password" maxlength="15" placeholder="请输入密码" /> <input class="password" password type="text" v-model="form.password" maxlength="15" placeholder="请输入密码" />
</view> </view>
<view class="input-father-gray" v-show="(!fullName) || (!canclick)"> <view class="input-father-gray" v-show="!canclick">
验证并登录 验证并登录
</view> </view>
<view class="input-father-blue" v-show="fullName&&canclick" @click="login()"> <view class="input-father-blue" v-show="canclick" @click="login()">
验证并登录 验证并登录
</view> </view>
<view class="under-container-title"> <view class="under-container-title">
@ -167,9 +167,9 @@
}) })
// //
const fullName = computed(() => { // const fullName = computed(() => {
return form.password && isLength11(form.username) // return form.password && isLength11(form.username)
}) // })
const showPopup = ref(false) const showPopup = ref(false)
function closebottom() { function closebottom() {
@ -217,6 +217,7 @@
const getImg = () => { const getImg = () => {
// if (/^\d{11}$/.test(form.username)) { // if (/^\d{11}$/.test(form.username)) {
isRel(form.username).then((res : any) => { isRel(form.username).then((res : any) => {
console.log(res)
if (res.result.code == `0`) { if (res.result.code == `0`) {
if(!res.result.orgList.length){ if(!res.result.orgList.length){
uni.showToast({ uni.showToast({

View File

@ -77,6 +77,7 @@
<u-loadmore :status="status" :loadText="{nomore:'暂无更多数据'}" v-if="InvoicingList.length>6" /> <u-loadmore :status="status" :loadText="{nomore:'暂无更多数据'}" v-if="InvoicingList.length>6" />
</view> </view>
</scroll-view> </scroll-view>
<view class="mengban"> </view>
</view> </view>
</template> </template>
@ -191,6 +192,15 @@
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
.mengban{
width: 100vw;
height: 100vh;
position: fixed;
background: RGBA(240, 240, 240, 0.64);
top: 0;
left: 0;
z-index: 99;
}
.crdcroll { .crdcroll {
width: 90vw; width: 90vw;
height: calc(100vh - 4vw); height: calc(100vh - 4vw);

View File

@ -0,0 +1,19 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="less">
</style>