From 3c738f4fe2762bba8087e5a22fc0dc06560eab0e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 08 Aug 2024 10:01:17 +0800
Subject: [PATCH] 三色任务与自查任务
---
subPackage/workbench/views/bailReportDetail.vue | 49 ++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 40 insertions(+), 9 deletions(-)
diff --git a/subPackage/workbench/views/bailReportDetail.vue b/subPackage/workbench/views/bailReportDetail.vue
index 3d647cc..78243d4 100644
--- a/subPackage/workbench/views/bailReportDetail.vue
+++ b/subPackage/workbench/views/bailReportDetail.vue
@@ -1,12 +1,24 @@
<template>
<view class="container">
<view class="basic">
- <box-title title="基本信息" class="box-title"></box-title>
- <view class="info">
+ <!-- <box-title title="基本信息" class="box-title"></box-title> -->
+ <view class="info mt-20 bgc-ff">
<lineItem :dataInfo="basicData"></lineItem>
+
+ <view class="licence" v-if="locationImageUrls.length">
+ <!-- <box-title title="位置图片" class="box-title"></box-title> -->
+ <view class="f-30 mb-20">位置图片</view>
+ <view class="flex-wrap">
+ <view v-for="(i,k) in locationImageUrls" :key="k" class="mr-20 mt-20"
+ @click="previewImg(i,locationImageUrls)">
+ <u-image :src="i" width="80" height="80"></u-image>
+ </view>
+ </view>
+ </view>
+
</view>
</view>
- <view class="licence" v-if="locationImageUrls.length">
+ <!-- <view class="licence" v-if="locationImageUrls.length">
<box-title title="位置图片" class="box-title"></box-title>
<view class="flex-wrap">
<view v-for="(i,k) in locationImageUrls" :key="k" class="ml-20 mt-20"
@@ -14,10 +26,10 @@
<u-image :src="i" width="80" height="80"></u-image>
</view>
</view>
- </view>
+ </view> -->
- <view class="item mt-30">
+ <view class="item mt-20 bgc-ff">
<u-form labelPosition="left" :model="info" ref="form" labelWidth="100" :labelStyle="{fontSize:'28rpx'}">
<u-form-item label="审核结果" prop="confirmFlag" borderBottom>
<u-input v-model="confirmFlag" disabled disabledColor="#ffffff" border="none" placeholder="请输入"
@@ -41,7 +53,7 @@
</u-form>
</view>
- <view v-if="status == 2">
+ <view v-if="status == 2" class="section bgc-ff mt-20 mb-20">
<u-subsection :list="tabList" :current="tabIndex" button-color="#017BFC" @change="changeTab"></u-subsection>
<u-form labelPosition="left" :model="goOutInfo" ref="form" labelWidth="100"
:labelStyle="{fontSize:'28rpx'}">
@@ -83,7 +95,7 @@
</view>
</u-form>
<view class="upload bgc-ff">
- <view class="f-28 mb-20">位置图片</view>
+ <view class="f-30 mb-20">位置图片</view>
<view class="mt-20" v-if="tabIndex == 0">
<u-upload :fileList="startImageUrls" :previewFullImage="uploadConfig.previewFullImage"
:accept="uploadConfig.acceptImg" :multiple="uploadConfig.multiple"
@@ -459,6 +471,10 @@
</script>
<style lang="scss">
+ page {
+ background-color: #f5f5f5;
+ }
+
.container {
padding: 0 20rpx 130rpx;
@@ -505,11 +521,12 @@
/deep/ .u-form-item__body__left__content__label,
/deep/ .uni-input-placeholder {
font-size: 30rpx;
+ color: #000;
}
.upload {
- margin: 0 30rpx;
- padding: 30rpx;
+ // margin: 0 30rpx;
+ padding: 20rpx 0 0;
}
@@ -519,4 +536,18 @@
height: 140rpx;
border: 1px solid #EEEEEE;
}
+
+ .section {
+ padding: 20rpx;
+
+ }
+
+ .item,
+ .licence {
+ padding: 0 20rpx;
+ }
+
+ /deep/ .line-item-container .text .r {
+ color: #000 !important;
+ }
</style>
\ No newline at end of file
--
Gitblit v1.9.3