Browse Source

上传

master
前端-胡立永 9 months ago
parent
commit
581315342a
5 changed files with 12 additions and 14 deletions
  1. +5
    -7
      pages_order/auth/wxLogin.vue
  2. +5
    -5
      pages_order/components/product/submitUnitSelect.vue
  3. +2
    -2
      pages_order/product/productDetail.vue
  4. BIN
      static/logo.jpg
  5. BIN
      static/logo.png

+ 5
- 7
pages_order/auth/wxLogin.vue View File

@ -1,7 +1,7 @@
<template> <template>
<view class="login"> <view class="login">
<view class="logo"> <view class="logo">
<image src="/static/logo.png" mode="aspectFill"></image>
<image src="/static/logo.jpg" mode="aspectFill"></image>
</view> </view>
<view class="title"> <view class="title">
欢迎使用布周道 欢迎使用布周道
@ -93,18 +93,16 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 80vh;
height: 100vh;
flex-direction: column; flex-direction: column;
position: relative; position: relative;
background-color: #fff;
.logo{ .logo{
height: 140rpx; height: 140rpx;
width: 140rpx; width: 140rpx;
background-color: #ddd;
border-radius: 30rpx;
image{ image{
width: 100%; width: 100%;
height: 100%; height: 100%;
border-radius: 30rpx;
} }
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }
@ -155,8 +153,8 @@
} }
.config{ .config{
position: absolute;
bottom: 0;
// position: absolute;
margin-top: 100rpx;
font-size: 22rpx; font-size: 22rpx;
text-align: center; text-align: center;
line-height: 40rpx; line-height: 40rpx;


+ 5
- 5
pages_order/components/product/submitUnitSelect.vue View File

@ -21,12 +21,12 @@
<view class="submit-unit" <view class="submit-unit"
style="margin-top: 20rpx;"> style="margin-top: 20rpx;">
<view class="title"> <view class="title">
您有物品
您有{{ detail.categoryName }}
</view> </view>
<view class="list"> <view class="list">
<view :class="{act : typeIndex == index}" v-for="(item, index) in type" <view :class="{act : typeIndex == index}" v-for="(item, index) in type"
@click="typeIndex = index" :key="index"> @click="typeIndex = index" :key="index">
{{ item }}
{{ item }}{{ detail.categoryName }}
</view> </view>
</view> </view>
</view> </view>
@ -35,7 +35,7 @@
<view v-if="typeIndex == 0"> <view v-if="typeIndex == 0">
<view class="submit-info"> <view class="submit-info">
<view class="title"> <view class="title">
物品租赁
{{ detail.categoryName }}租赁
</view> </view>
<view class="box"> <view class="box">
<image class="image" :src="unit.pic" mode=""></image> <image class="image" :src="unit.pic" mode=""></image>
@ -121,7 +121,7 @@
</view> </view>
<addLeaseForm ref="addLeaseForm" v-if="typeIndex == 1"/>
<addLeaseForm :categoryId="detail.categoryId" ref="addLeaseForm" v-if="typeIndex == 1"/>
<!-- 提交按钮 --> <!-- 提交按钮 -->
<view class="submit"> <view class="submit">
@ -190,7 +190,7 @@
}, },
couponText : '请选择', couponText : '请选择',
typeIndex : 0, typeIndex : 0,
type : ['没有物品', '我有物品'],
type : ['没有', '我有'],
} }
}, },
methods: { methods: {


+ 2
- 2
pages_order/product/productDetail.vue View File

@ -37,10 +37,10 @@
</view> </view>
<view class="info-unit"> <view class="info-unit">
<uv-cell title="您有物品吗?" isLink
<uv-cell :title="`您有${detail.categoryName}吗?`" isLink
@click="$refs.submitUnitSelect.open('bottom')"> @click="$refs.submitUnitSelect.open('bottom')">
<template #icon> <template #icon>
<text class="text">物品</text>
<text class="text">{{ detail.categoryName }}</text>
</template> </template>
</uv-cell> </uv-cell>


BIN
static/logo.jpg View File

Before After
Width: 634  |  Height: 635  |  Size: 55 KiB

BIN
static/logo.png View File

Before After
Width: 132  |  Height: 132  |  Size: 41 KiB

Loading…
Cancel
Save