1、登录弹框的按钮样式调整

2、发布页面和招租详情页面的type数组的初始化定义
This commit is contained in:
wangzimeng 2025-08-07 14:58:44 +08:00
parent ea502ab219
commit 9682e4950c
3 changed files with 9 additions and 6 deletions

View File

@ -400,7 +400,7 @@
} }
} }
const typeList = ref({}) const typeList = ref([])
const typeShowList = ref([]) const typeShowList = ref([])
async function getTypeList() { async function getTypeList() {
const res = await sheep.$api.rent.listType({}); const res = await sheep.$api.rent.listType({});

View File

@ -414,7 +414,7 @@
} }
} }
const typeList = ref({}) const typeList = ref([])
const typeShowList = ref([]) const typeShowList = ref([])
async function getTypeList() { async function getTypeList() {
const res = await sheep.$api.rent.listType({}); const res = await sheep.$api.rent.listType({});

View File

@ -173,7 +173,7 @@
<button class="texbut" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber"> <button class="texbut" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
<!-- <image style="width: 100%;height: 136rpx;" src="https://jiangxiaoxian.0rui.cn/loginBtn.png"></image> --> <!-- <image style="width: 100%;height: 136rpx;" src="https://jiangxiaoxian.0rui.cn/loginBtn.png"></image> -->
授权登录 <!-- 授权登录 -->
</button> </button>
</view> </view>
</su-popup> </su-popup>
@ -693,16 +693,19 @@
.texbut { .texbut {
width: 507rpx; width: 507rpx;
height: 120rpx; height: 93rpx;
border-radius: 16rpx; border-radius: 16rpx;
background: #ffbd25; // background: #ffbd25;
background-image: url('https://jiangxiaoxian.0rui.cn/loginBtn.png');
background-size: 100%;
font-size: 34rpx; font-size: 34rpx;
color: #3d3d3d; color: #3d3d3d;
font-weight: bold; font-weight: bold;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin: 0 auto; margin-top: 30rpx;
// margin: 0 auto;
} }
} }