This commit is contained in:
parent
6bbe0377ea
commit
13bfa311bf
|
|
@ -11,10 +11,10 @@
|
|||
<input class="password" password type="text" v-model="form.password" maxlength="15" placeholder="请输入密码" />
|
||||
</view>
|
||||
|
||||
<view class="input-father-gray" v-show="(!fullName) || (!canclick)">
|
||||
<view class="input-father-gray" v-show="!canclick">
|
||||
验证并登录
|
||||
</view>
|
||||
<view class="input-father-blue" v-show="fullName&&canclick" @click="login()">
|
||||
<view class="input-father-blue" v-show="canclick" @click="login()">
|
||||
验证并登录
|
||||
</view>
|
||||
<view class="under-container-title">
|
||||
|
|
@ -167,9 +167,9 @@
|
|||
})
|
||||
|
||||
// 计算属性
|
||||
const fullName = computed(() => {
|
||||
return form.password && isLength11(form.username)
|
||||
})
|
||||
// const fullName = computed(() => {
|
||||
// return form.password && isLength11(form.username)
|
||||
// })
|
||||
|
||||
const showPopup = ref(false)
|
||||
function closebottom() {
|
||||
|
|
@ -217,6 +217,7 @@
|
|||
const getImg = () => {
|
||||
// if (/^\d{11}$/.test(form.username)) {
|
||||
isRel(form.username).then((res : any) => {
|
||||
console.log(res)
|
||||
if (res.result.code == `0`) {
|
||||
if(!res.result.orgList.length){
|
||||
uni.showToast({
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@
|
|||
<u-loadmore :status="status" :loadText="{nomore:'暂无更多数据'}" v-if="InvoicingList.length>6" />
|
||||
</view>
|
||||
</scroll-view>
|
||||
<view class="mengban"> </view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
|
@ -191,6 +192,15 @@
|
|||
</script>
|
||||
|
||||
<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 {
|
||||
width: 90vw;
|
||||
height: calc(100vh - 4vw);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
|
||||
</style>
|
||||
Loading…
Reference in New Issue