gjy 3 years ago
parent
commit
0e50841e1b
1 changed files with 31 additions and 1 deletions
  1. 31 1
      pages/mine/cargoowner/cargoowner.vue

+ 31 - 1
pages/mine/cargoowner/cargoowner.vue

@@ -17,7 +17,7 @@
 			<view v-if='enterprise.length>0'>
 				<view v-for='item in enterprise' class='wrap'>
 					<view class='flex flex-space-between'>
-						<view>{{item.companyName}}</view>
+						<view>{{item.company}}</view>
 						<view v-if='item.status=="已通过"' class='status passed'>{{item.status}}</view>
 						<view v-if='item.status=="审核中"' class='status aduit'>{{item.status}}</view>
 						<view v-if='item.status=="已驳回"' class='status reject'>{{item.status}}</view>
@@ -136,6 +136,9 @@
 	.content{
 		height:90vh;
 	}
+	.wrap{
+		position:relative;
+	}
 	.identity{
 		background: url('~@/static/mine/huozhurenzheng/bg.png') no-repeat;
 		background-size:100%;
@@ -171,4 +174,31 @@
 		background:url(../../../static/mine/huozhurenzheng/Mask@3x.png) no-repeat;
 		background-size:100%;
 	}
+	.wrap{
+		width:100%;
+		height:228rpx;
+		background:#fff;
+		border-radius:10rpx;
+		padding:24rpx;
+		box-sizing: border-box;
+		position:relative;
+	}
+	.status{
+		font-size:26rpx;
+		padding:5rpx 18rpx;
+		color:#fff;
+		border-radius:20rpx;
+	}
+	.status.passed{
+		background:#25E491;
+	}
+	.status.aduit{
+		background:#FE8031;
+	}
+	.status.reject{
+		background:#FC5A51;
+	}
+	.content{
+		margin-bottom:200rpx;
+	}
 </style>