This commit is contained in:
TimSpan 2024-09-18 10:03:53 +08:00
parent 25c3e2a911
commit 640d76faa8
2 changed files with 41 additions and 11 deletions

View File

@ -5,8 +5,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.projectDetailsItem{ .projectDetailsItem{
height: 18%; margin: 10px 20px 10px 20px;
margin: 20px;
border-radius: 10px; border-radius: 10px;
background: #ffffff; background: #ffffff;
padding: 15px; padding: 15px;
@ -14,6 +13,10 @@
line-height: 65px; line-height: 65px;
color: #333333; color: #333333;
.projectDetailsIndex{ .projectDetailsIndex{
display: flex;
flex-wrap: wrap;
line-height: 44rpx;
margin-bottom: 20px;
.content{ .content{
color: #9b9b9f; color: #9b9b9f;
} }
@ -35,7 +38,16 @@
align-items: center; align-items: center;
flex-wrap: wrap; flex-wrap: wrap;
font-size: 24px; font-size: 24px;
margin-bottom: 15px margin-bottom: 15px;
.projectDetailsTableIndex{
display: flex;
justify-content: flex-end;
text-align: center;
view{
width: 70px;
margin-right: 20px;
}
}
} }
} }
} }
@ -48,6 +60,12 @@
right: 0; right: 0;
width: 100%; width: 100%;
} }
.nutPopup{
width: 300px;
height: 100px;
display: flex;
flex-wrap: wrap;
}
} }

View File

@ -1,11 +1,26 @@
<template> <template>
<view class="projectDetails"> <view class="projectDetails">
<view class="projectDetailsItem"> <view class="projectDetailsItem" style="line-height: 50rpx">
<view style="display: flex;justify-content: space-between"> <view>
<text style="font-size: 18px">{{ nameValue ? nameValue : '' }}{{ '-----' + detailsList?.name }}项目</text> <view style="display: flex;justify-content: space-between">
<!--<text>进行中</text>--> <text style="font-size: 18px">{{ nameValue ? nameValue : '' }}{{ '-----' + detailsList?.name }}项目</text>
<!-- <text>进行中</text>-->
</view>
<view>
<view style="float: left;width: 50%;" class="content">
经理名称:{{ detailsList?.projectManagerMiniProgramUserInfo.name }}
</view>
<view class="content">手机号:{{ detailsList?.projectManagerMiniProgramUserInfo.telephone }}</view>
</view>
</view> </view>
</view>
<view class="projectDetailsItem">
<view class="projectDetailsIndex"> <view class="projectDetailsIndex">
<nut-row>
<nut-col :span="24">
<view class="content">保安证件号{{ detailsList?.idNumber }}</view>
</nut-col>
</nut-row>
<nut-row> <nut-row>
<nut-col :span="12"> <nut-col :span="12">
<view class="content">工作人员数量:{{ detailsList?.staffTotal }}</view> <view class="content">工作人员数量:{{ detailsList?.staffTotal }}</view>
@ -23,10 +38,7 @@
</nut-col> </nut-col>
</nut-row> </nut-row>
<nut-row> <nut-row>
<nut-col :span="16"> <nut-col :span="4">
<view class="content">证件号{{ detailsList?.idNumber }}</view>
</nut-col>
<nut-col :span="8">
<view class="content">户数:{{ detailsList?.houseTotal }}</view> <view class="content">户数:{{ detailsList?.houseTotal }}</view>
</nut-col> </nut-col>
</nut-row> </nut-row>