日计划管理

This commit is contained in:
lSun 2024-12-30 21:35:07 +08:00
parent 861713a756
commit 5574960376
2 changed files with 1093 additions and 0 deletions

View File

@ -0,0 +1,339 @@
<template>
<view class="container">
<u-navbar class="u-navbar" title="日计划制定" placeholder @leftClick="leftClick" leftIconColor="#fff"
bgColor="#00337A" :titleStyle="{ color: '#FFF', fontSize: '32rpx' }" />
<!-- Project Header -->
<view class="project-header">
<text class="project-title">{{proName}}</text>
<!-- <view class="completion-rates">
<text>作业计划完成率70%</text>
<text>月作业计划完成率70%</text>
</view> -->
</view>
<!-- Total Plan Input -->
<view class="total-plan">
<text>计划作业人数</text>
<text>{{totalPlan}}</text>
</view>
<!-- Project Table -->
<view class="table-container">
<view class="table-header">
<text class="col-index">序号</text>
<text class="col-name">项目名称</text>
<text class="col-desc">项目描述</text>
<text class="col-completion">本日计划完成量</text>
</view>
<view class="table-body">
<view v-for="(item, index) in tableData" :key="index" class="table-row">
<text class="col-index">{{ index + 1 }}</text>
<text class="col-name">{{ item.taskName }}</text>
<view class="col-desc">
<text>{{ item.taskContent }}</text>
</view>
<view class="col-completion">
<input type="number" v-model="item.completeNumDay" class="completion-input" />
</view>
<input type="hidden" name="dayContentId" :value="item.dayContentId" class="hidden-input">
</view>
</view>
</view>
<!-- Save Button -->
<view class="save-button-container">
<button type="primary" @click="saveData">保存</button>
</view>
</view>
</template>
<script>
import config from '@/config'
export default {
onLoad(options) {
this.dayId = decodeURIComponent(options.dayId);
this.proName = decodeURIComponent(options.proName);
this.id = decodeURIComponent(options.id);
this.getListTable()
},
data() {
return {
dayId:'',
proName:'',
id:'',
proId: '',
currentDate: '',
proName: '',
totalPlan: '',
tableData: [],
needPersonNum: ''
}
},
methods: {
getListTable() {
let param = {
dayId: this.dayId,
id: this.id
}
uni.request({
url: config.lpBmwUrl + '/bmw/workPlanDay/getPlanDetailByIdEdit',
method: 'post',
data: JSON.stringify(param),
header: {
'content-type': 'application/json',
'Authorization': uni.getStorageSync('realNameToken')
},
success: res => {
console.log('日计划制定', res)
if (res.data.code == 200) {
this.needPersonNum = res.data.data.needPersonNum;
this.tableData = res.data.data.contentList;
this.totalPlan = res.data.data.planWorkNum;
} else {
uni.$u.toast(res.data.msg);
}
},
fail: err => {
console.log(err)
}
})
},
saveData() {
const planWorkNum = Number(this.totalPlan) || 0;
const needPersonNum = Number(this.needPersonNum) || 0;
if (planWorkNum > needPersonNum) {
uni.showToast({
icon: 'none',
title: '计划作业人数不能大于预估投入人员数'
});
return;
}
let isValid = true;
let errorMessage = '';
this.tableData.forEach((item, index) => {
const totalNum = item.totalNum;
console.log("totalNum",totalNum)
const completeNumAllDay = Number(item.completeNumDay) || 0;
console.log("completeNumAllDay",completeNumAllDay)
const completeNumDay = item.completeNumDay;
console.log("completeNumDay",completeNumDay)
if (completeNumDay + completeNumAllDay > totalNum) {
isValid = false;
errorMessage += `${index + 1} 行: 本日计划完成量 + 本月已定计划量 不能大于 本月计划量\n`;
}
});
if (!isValid) {
uni.showModal({
title: '验证错误',
content: errorMessage,
showCancel: false
});
return;
}
//
const members = this.tableData.map(item => ({
dayContentId: item.dayContentId,
completeNumDay: item.completeNumDay
}));
const allData = {
contentList: members
};
console.log("allData:", allData);
//
this.uploadData(allData);
},
uploadData(data) {
//
if (this.totalPlan === null || this.totalPlan <= 0) {
uni.showToast({
icon: 'none',
title: '请填写有效的计划作业人数'
});
return;
}
//
const incompleteTasks = this.tableData.filter(item => item.completeNumDay == null || item.completeNumDay < 0);
if (incompleteTasks.length > 0) {
uni.showToast({
icon: 'none',
title: '请确保所有任务都有有效的本日计划完成量'
});
return;
}
console.log("data",data)
uni.request({
url: config.lpBmwUrl + '/bmw/workPlanDay/edit',
method: 'post',
data: JSON.stringify(data),
header: {
'content-type': 'application/json',
'Authorization': uni.getStorageSync('realNameToken')
},
success: res => {
console.log('日计划制定', res)
if (res.data.code == 200) {
//
uni.showToast({
icon: 'success',
title: '保存成功',
duration: 2000, //
success: () => {
setTimeout(() => {
this.leftClick(); //
}, 2000); // duration
}
});
} else {
uni.$u.toast(res.data.msg);
}
},
fail: err => {
console.log(err)
}
})
},
//
leftClick() {
console.log('返回')
uni.navigateBack({
delta: 1 //
});
}
}
}
</script>
<style>
.container {
padding: 30rpx;
background-color: #fff;
}
.project-header {
margin-bottom: 30rpx;
}
.project-title {
font-size: 32rpx;
font-weight: bold;
margin-bottom: 20rpx;
}
.completion-rates {
display: flex;
justify-content: space-between;
color: #666;
font-size: 28rpx;
}
.total-plan {
display: flex;
align-items: center;
margin-bottom: 30rpx;
font-size: 28rpx;
}
.total-input {
width: 200rpx;
height: 60rpx;
border: 1px solid #ddd;
padding: 0 20rpx;
margin-left: 20rpx;
}
.table-container {
border: 1px solid #ddd;
}
.table-header {
display: flex;
background-color: #f5f5f5;
padding: 20rpx;
font-size: 28rpx;
font-weight: bold;
border-bottom: 1px solid #ddd;
}
.table-body {
background-color: #fff;
}
.table-row {
display: flex;
padding: 20rpx;
font-size: 28rpx;
border-bottom: 1px solid #ddd;
align-items: center;
}
/* 隔行变色 */
.table-row:nth-child(even) {
background-color: #fafafa;
}
.table-row:last-child {
border-bottom: none;
}
.col-index {
width: 80rpx;
flex-shrink: 0;
}
.col-name {
width: 200rpx;
flex-shrink: 0;
}
.col-desc {
flex: 1;
display: flex;
flex-direction: column;
}
.col-completion {
width: 200rpx;
flex-shrink: 0;
box-sizing: border-box;
padding: 0 10rpx;
}
.completion-input {
width: 100%;
height: 60rpx;
border: 1px solid #ddd;
padding: 0 10rpx;
box-sizing: border-box;
font-size: 28rpx;
}
input {
background-color: #fff;
}
/* 确保隐藏输入字段 */
.hidden-input {
display: none;
}
</style>

View File

@ -0,0 +1,754 @@
<template>
<view class="page">
<u-navbar class="u-navbar" title="欠薪维权申诉填写" placeholder @leftClick="leftClick" leftIconColor="#fff" bgColor="#00337A" :titleStyle="{ color: '#FFF', fontSize: '32rpx' }"/>
<scroll-view class="content" scroll-y="true">
<view class="view-box" >
<view class="title-view">
基本信息
</view>
<u--form class="form-box" :model="formData" :rules="rules" ref="cForm">
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>欠薪单位</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='oweCompany' style="width:70%;height: 100%;">
<u--input v-model="formData.oweCompany" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>欠薪项目</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='oweProject' style="width:70%;height: 100%;">
<u--input v-model="formData.oweProject" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>欠薪金额</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='oweMoney' style="width:70%;height: 100%;">
<u--input v-model="formData.oweMoney" type="number" placeholder="请输入" maxlength="7"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>单位地址</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='address' style="width:70%;height: 100%;">
<u--input v-model="formData.address" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>申请人姓名</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='applayUser' style="width:70%;height: 100%;">
<u--input v-model="formData.applayUser" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>身份证号码</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='idCard' style="width:70%;height: 100%;">
<u--input v-model="formData.idCard" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
<view class="form-input-box">
<view style="width:25%;height: 100%;">
<text>电话号码</text> <text style="color: red;">*</text>
</view>
<u-form-item prop='phone' style="width:70%;height: 100%;">
<u--input v-model="formData.phone" type="text" placeholder="请输入" maxlength="40"
border="surround" clearable></u--input>
</u-form-item>
</view>
</u--form>
<view class="title-view">
欠薪时间 <text style="color: red;">*</text>
</view>
<view style="width: 90%;margin: 20rpx auto;padding-bottom: 20rpx;">
<uni-datetime-picker v-model="range" type="daterange" rangeSeparator="至" />
</view>
<view class="title-view">
有效依据
</view>
<view class="view-item" style="display: block;">
<view>合同照片 重要请务必上传<text style="color: red;">*</text></view>
<view class="img-box">
<view class="img-item upload-btn" @click="openPhotograph(1)">
<image class="img" src="@/static/realName/tianjia-img.png" mode=""></image>
</view>
<view class="img-item" v-if="contractImgUrl!=''">
<image class="img" :src="contractImgUrl" mode=""></image>
</view>
</view>
</view>
<view class="view-item" style="display: block;">
<view>考勤记录 重要请务必上传 <text style="color: red;">*</text></view>
<view class="img-box">
<view class="img-item upload-btn" @click="openPhotograph(2)">
<image class="img" src="@/static/realName/tianjia-img.png" mode=""></image>
</view>
<view class="img-item" v-if="attendanceImgUrl!=''">
<image class="img" :src="attendanceImgUrl" mode=""></image>
</view>
</view>
</view>
<view class="view-item" style="display: block;">
<view>工资信息 重要请务必上传<text style="color: red;">*</text></view>
<view class="img-box">
<view class="img-item upload-btn" @click="openPhotograph(3)">
<image class="img" src="@/static/realName/tianjia-img.png" mode=""></image>
</view>
<view class="img-item" v-if="wageImgUrl!=''">
<image class="img" :src="wageImgUrl" mode=""></image>
</view>
</view>
</view>
<view class="view-item" style="display: block;">
<view>其他依据</view>
<view class="img-box">
<view class="img-item upload-btn" @click="openPhotograph(4)">
<image class="img" src="@/static/realName/tianjia-img.png" mode=""></image>
</view>
<view class="img-item" v-if="otherImgUrl!=''">
<image class="img" :src="otherImgUrl" mode=""></image>
</view>
</view>
</view>
<view style="padding-bottom: 50rpx;">
<view class="sumbit-btn" @click="sumbit"> </view>
</view>
</view>
</scroll-view>
</view>
</template>
<script>
import config from '@/config';
import {
pathToBase64,
base64ToPath
} from 'image-tools';
export default {
data() {
return {
formData: {
"id": "", //uuid
"oweCompany": "", //
"oweProject": "", //
"address": "", //
"applayUser": "", //
"idCard": "", //
"phone": "", //
"oweMoney": "", //
"oweStartDay": "", //
"oweEndDay": "", //
"representationTime": "",
"addTime": "",
"uploadUserId": uni.getStorageSync('realNameUser').userId,
"currentDay": "",
"isActive": "1",
"replyStatus": "0",
"replyContent": "",
},
range: [],
rules: {
'oweCompany': {
type: 'string',
required: true,
message: '请填写欠薪单位',
trigger: ['blur', 'change']
},
'oweProject': {
type: 'string',
required: true,
message: '请填写欠薪项目',
trigger: ['blur', 'change']
},
'address': {
type: 'string',
required: true,
message: '请填写单位地址',
trigger: ['blur', 'change']
},
'applayUser': {
type: 'string',
required: true,
message: '请填写申请人姓名',
trigger: ['blur', 'change']
},
'idCard': {
type: 'string',
required: true,
message: '请填写身份证号码',
trigger: ['blur', 'change']
},
'phone': {
type: 'string',
required: true,
message: '请填写电话号码',
trigger: ['blur', 'change']
},
'oweMoney': {
type: 'string',
required: true,
message: '请填写欠薪金额',
trigger: ['blur', 'change']
},
},
safeguardingId: '',
contractPath: '',
attendancePath: '',
wagePath: '',
otherPath: '',
contractImgUrl: '',
attendanceImgUrl: '',
wageImgUrl: '',
otherImgUrl: '',
listData: []
}
},
onLoad() {
this.formData.id = this.uuid()
this.safeguardingId = this.formData.id
},
onShow() {},
methods: {
//
sumbit() {
this.$refs.cForm.validate().then(res => {
// this.formData.id=this.uuid()
this.formData.representationTime = this.timeFormat(null, 'yyyy-mm-dd hh:MM:ss');
this.formData.addTime = this.timeFormat(null, 'yyyy-mm-dd hh:MM:ss');
this.formData.currentDay = this.timeFormat(null, 'yyyy-mm-dd');
var pattern = /^1[3-9]\d{9}$/;
if (!this.verifyidNumber(this.formData.idCard)) {
uni.$u.toast('请填写正确身份证号');
} else if (!pattern.test(this.formData.phone)) {
uni.$u.toast('请填写正确手机号码');
}
// else if (this.range.length == 0) {
// uni.$u.toast('');
// }
else if (this.contractPath == '') {
uni.$u.toast('请上传合同照片图片');
} else if (this.attendancePath == '') {
uni.$u.toast('请上传考勤记录图片');
} else if (this.wagePath == '') {
uni.$u.toast('请上传工资信息图片');
} else {
// this.formData.oweStartDay = this.range[0]
// this.formData.oweEndDay = this.range[1]
this.formData.oweStartDay = '2024-12-23'
this.formData.oweEndDay = '2024-12-25'
console.log(this.formData)
uni.request({
url: config.lpAppUrl + '/safeguardingInfo/uploadSafeguardingInfo',
method: 'post',
data: this.formData,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
Authorization: uni.getStorageSync('realNameToken')
},
success: res => {
console.log(res)
res = res.data;
if (res.code == 200) {
uni.showToast({
title: res.data,
icon: 'none'
})
this.formData = {
"id": "", //uuid
"oweCompany": "", //
"oweProject": "", //
"address": "", //
"applayUser": "", //
"idCard": "", //
"phone": "", //
"oweMoney": "", //
"oweStartDay": "", //
"oweEndDay": "", //
"representationTime": "",
"addTime": "",
"uploadUserId": uni.getStorageSync('realNameUser').userId,
"currentDay": "",
"isActive": "1",
"replyStatus": "0",
"replyContent": "",
}
this.range = []
this.uploadPhoto(this.contractPath, 1)
this.uploadPhoto(this.attendancePath, 2)
this.uploadPhoto(this.wagePath, 3)
if (this.otherPath != '') {
this.uploadPhoto(this.otherPath, 4)
}
uni.navigateTo({
url: `/pages/realName/workbench/safeguarding/index`
})
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
},
fail: err => {
console.log(err)
}
})
}
}).catch(errors => {
console.log(errors)
uni.$u.toast('填写数据存在问题')
})
},
//
openPhotograph(type) {
uni.chooseImage({
count: 1,
sizeType: ['compressed'],
sourceType: ['camera'],
success: res => {
console.log('?? ~ res-拍照:', res)
this.imgToBase64(res.tempFilePaths[0]).then(base64 => {
if (type == 1) {
this.contractImgUrl = base64;
this.contractPath = res.tempFilePaths[0];
}
if (type == 2) {
this.attendanceImgUrl = base64;
this.attendancePath = res.tempFilePaths[0];
}
if (type == 3) {
this.wageImgUrl = base64;
this.wagePath = res.tempFilePaths[0];
}
if (type == 4) {
this.otherImgUrl = base64;
this.otherPath = res.tempFilePaths[0];
}
})
},
fail: err => {
console.log('?? ~ err:', err)
}
})
},
//
uploadPhoto(path, type) {
uni.uploadFile({
url: config.lpFileUrl + `file/upload`, //
fileType: "image", //ZFB,
filePath: path, //
name: "imgFile",
formData: {
photoType: 'safeguarding',
},
success: (uploadFileRes) => {
console.log(uploadFileRes)
if (uploadFileRes.statusCode == 200) {
this.uploadSafeguardingPhoto(JSON.parse(uploadFileRes.data).data.url, type)
} else {
uni.$u.toast('上传失败');
}
},
fail: err => {
uni.$u.toast('上传失败');
console.log(err)
}
});
},
//
uploadSafeguardingPhoto(path, type) {
let obj = {
"id": this.uuid(),
"safeguardingId": this.safeguardingId,
"path": path,
"type": type,
"uploadUserId": uni.getStorageSync('realNameUser').userId,
"addTime": this.timeFormat(null, 'yyyy-mm-dd hh:MM:ss'),
"currentDay": this.timeFormat(null, 'yyyy-mm-dd')
}
console.log(obj)
uni.request({
url: config.lpAppUrl + '/safeguardingInfo/uploadSafeguardingPhoto',
method: 'post',
data: obj,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
Authorization: uni.getStorageSync('realNameToken')
},
success: res => {
console.log(res)
res = res.data;
if (res.code == 200) {
if (type == 1) {
this.contractImgUrl = "";
this.contractPath = "";
}
if (type == 2) {
this.attendanceImgUrl = "";
this.attendancePath = "";
}
if (type == 3) {
this.wageImgUrl = "";
this.wagePath = "";
}
if (type == 4) {
this.otherImgUrl = "";
this.otherPath = "";
}
uni.showToast({
title: '图片已上传',
icon: 'none'
})
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
},
fail: err => {
console.log(err)
}
})
},
imgToBase64(data) {
return new Promise((resolve, reject) => {
pathToBase64(data)
.then(base64 => {
resolve(base64)
})
.catch(error => {
console.error(error)
reject(error)
})
})
},
//
verifyidNumber(idNumber) {
//
if (idNumber.length !== 18) {
return false;
}
// 17
if (!/^\d{17}$/.test(idNumber.substr(0, 17))) {
return false;
}
//
var weightFactor = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
var checkCodeList = ['1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'];
var checkSum = 0;
for (var i = 0; i < 17; i++) {
checkSum += parseInt(idNumber.charAt(i)) * weightFactor[i];
}
var checkCodeIndex = checkSum % 11;
if (idNumber.charAt(17).toUpperCase() !== checkCodeList[checkCodeIndex]) {
return false;
}
return true;
},
timeFormat(dateTime = null, formatStr = 'yyyy-mm-dd') {
let date
//
if (!dateTime) {
date = new Date()
}
// unix
else if (/^\d{10}$/.test(dateTime?.toString().trim())) {
date = new Date(dateTime * 1000)
}
// new Date
else if (typeof dateTime === 'string' && /^\d+$/.test(dateTime.trim())) {
date = new Date(Number(dateTime))
}
// Safari/Webkitnew Date/
// '2022-07-10 01:02:03' '2022-07-10T01:02:03'
else if (typeof dateTime === 'string' && dateTime.includes('-') && !dateTime.includes('T')) {
date = new Date(dateTime.replace(/-/g, '/'))
}
// RFC 2822
else {
date = new Date(dateTime)
}
const timeSource = {
'y': date.getFullYear().toString(), //
'm': (date.getMonth() + 1).toString().padStart(2, '0'), //
'd': date.getDate().toString().padStart(2, '0'), //
'h': date.getHours().toString().padStart(2, '0'), //
'M': date.getMinutes().toString().padStart(2, '0'), //
's': date.getSeconds().toString().padStart(2, '0') //
//
}
for (const key in timeSource) {
const [ret] = new RegExp(`${key}+`).exec(formatStr) || []
if (ret) {
//
const beginIndex = key === 'y' && ret.length === 2 ? 2 : 0
formatStr = formatStr.replace(ret, timeSource[key].slice(beginIndex))
}
}
return formatStr
},
uuid() {
var s = [];
var hexDigits = "0123456789abcdef";
for (var i = 0; i < 32; i++) {
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
}
s[14] = "4"; // bits 12-15 of the time_hi_and_version field to 0010
s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01
s[8] = s[13] = s[18] = s[23];
var uuid = s.join("");
return uuid;
},
//
leftClick() {
console.log('返回')
uni.navigateBack({
delta: 1 //
});
},
},
}
</script>
<style lang="scss">
/deep/.uni-date .uni-date-x {
background: #EFEFEF;
}
.page {
width: 100vw;
height: 100vh;
background-color: #EFEFEF;
box-sizing: border-box;
// padding: 0 20px;
.tab-box {
width: 100%;
margin: 20rpx auto;
display: flex;
justify-content: space-between;
.tab-item {
height: 70upx;
width: 45%;
font-size: 30upx;
text-align: center;
line-height: 70upx;
color: #666;
}
.active {
color: #00337A;
border-radius: 10upx 10upx 0 0;
font-weight: bold;
}
.activeLine {
background: #00337A;
border-radius: 10upx;
width: 100%;
height: 6upx;
}
}
.content {
width: 100%;
height: 87vh;
margin-top: 20rpx;
// padding-bottom: 80rpx;
background-color: #EFEFEF;
}
.view-box {
width: 100%;
height: auto;
margin: 20rpx auto;
border-radius: 10rpx;
padding-top: 20rpx;
// background-color: #FFF;
.title-view {
font-weight: 600;
margin-left: 20rpx;
border-bottom: 1rpx solid #EFEFEF;
}
.form-box {
width: 100%;
height: auto;
font-size: 26rpx;
.form-input-box {
padding: 0 20rpx;
display: flex;
align-items: center;
border-bottom: 1rpx solid #eee;
}
}
.view-item {
width: 94%;
margin: 0rpx auto;
padding: 10rpx;
display: flex;
border-bottom: 1rpx solid #EFEFEF;
font-size: 26rpx;
.label {
width: 160rpx;
color: #666;
margin-bottom: 10rpx;
}
.img-box {
width: 94%;
height: auto;
margin: 0rpx auto;
padding: 10rpx;
display: flex;
border-bottom: 1rpx solid #EFEFEF;
.img-item {
float: left;
width: 200upx;
height: 200upx;
border: 1px solid #ddd;
margin: 0 22rpx 20upx 0upx;
position: relative;
box-sizing: border-box;
background: #eee;
.img {
display: block;
width: 100%;
height: 100%;
}
.remove-btn {
position: absolute;
top: -18upx;
right: -18upx;
width: 44upx;
height: 44upx;
z-index: 2;
}
}
.upload-btn {
display: flex;
justify-content: center;
align-items: center;
.img {
width: 60upx;
height: 60upx;
margin: unset;
}
}
}
}
.sumbit-btn {
width: 94%;
height: 80rpx;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
background: #00337A;
color: #FFF;
border-radius: 10rpx;
}
}
.list-box {
width: 90%;
height: auto;
// border: 1px solid #000;
margin: 0rpx auto;
.list-item {
width: 100%;
height: auto;
background-color: #fff;
border-radius: 20rpx;
margin: 20rpx 0;
.content-box {
width: 94%;
height: auto;
margin: 20rpx;
// background-color: #F8F9FC;
padding: 10rpx 0;
.item-text {
width: 95%;
margin-left: 20rpx;
margin-top: 15rpx;
// display: flex;
align-items: center;
position: relative;
.label {
color: #3A3A3A;
font-weight: 500;
}
.info-right {
position: absolute;
top: 0rpx;
right: 40rpx;
}
.info {
color: #6F6F6F;
}
}
}
}
}
}
</style>