Browse Source

上传

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


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

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


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

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