This commit is contained in:
曹辉 2023-02-23 14:06:35 +08:00
parent 1d9b72c190
commit a3f73a2b86
7 changed files with 34 additions and 36 deletions

View File

@ -1,37 +1,19 @@
<template> <template>
<view class="app"> <view class="app">
<view class="cards"> <view class="item" @tap='gouser'>
<view class="item" style="background-color: #9E4DD0;" @tap='gouser'>
<image src="../../static/user.png" mode=""></image> <image src="../../static/user.png" mode=""></image>
<view class="title"> <view class="title">
个人信息 个人信息
</view> </view>
</view> </view>
<view class=" item" style="background-color: #E1AE3C ;" @tap='goorder'> <view class=" item" @tap='goorder'>
<image src="../../static/dingdan.png" mode=""></image> <image src="../../static/dingdan.png" mode=""></image>
<view class="title"> <view class="title">
我的订单 我的订单
</view> </view>
</view> </view>
<!-- <view class="item" style="background-color: #00C176 ;">
<image src="../../static/home.png" mode=""></image>
<view class="title" style="font-size: 42rpx;">
我的家庭
</view>
</view> -->
<view class="item">
</view>
<view class="item">
</view>
<view class="item">
</view>
<view class="item">
</view>
</view>
<u-toast ref="uToast" />
</view> </view>
</template> </template>
<script> <script>
import { import {
existPatientInfo existPatientInfo
@ -153,14 +135,29 @@
<style lang="scss"> <style lang="scss">
.app { .app {
.cards { padding: 0;
padding: 22px 0 20px 0;
.item { .item {
width: 94%;
margin: 20rpx auto 0;
background-color: #fff;
position: relative;
height: 100rpx;
border-radius: 5rpx;
.title { .title {
width: 80%; position: absolute;
top: 60%; left: 150rpx;
top: 50%;
transform: translateY(-50%);
font-size: 44rpx;
} }
image {
position: absolute;
left: 40rpx;
top: 50%;
transform: translateY(-50%);
width: 55rpx;
height: 55rpx;
} }
} }
} }

View File

@ -63,7 +63,7 @@
<view class="Consumablespackage">耗材包详情 <view class="Consumablespackage">耗材包详情
<text class="money">{{consumableTotalPrice}}</text> <text class="money">{{consumableTotalPrice}}</text>
<view class="detail"> <view class="detail">
<u-checkbox-group @change="checkboxGroupChange" wrap='true'> <u-checkbox-group @change="checkboxGroupChange" :wrap='true'>
<u-checkbox @change="checkboxChange(item)" v-model="item.radio" <u-checkbox @change="checkboxChange(item)" v-model="item.radio"
v-for="(item, index) in orderlist.itemConsumableList" :key="index" v-for="(item, index) in orderlist.itemConsumableList" :key="index"
:name="item.consumableDetail"> :name="item.consumableDetail">

View File

@ -115,6 +115,7 @@
} else { } else {
this.nurseItemClassifyInfoList = this.nurseItemClassifyInfolistlength.slice(0, 7) this.nurseItemClassifyInfoList = this.nurseItemClassifyInfolistlength.slice(0, 7)
} }
uni.hideLoading();
}, 1000) }, 1000)
}, },
// //

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB