2025-11-04 15:16:22 +08:00
|
|
|
|
<template>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view class="page" style="background-image: url('../../../packageRc/static/pageBg.png');">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="input-outer-part"
|
2025-11-05 21:16:07 +08:00
|
|
|
|
style="padding: 24rpx 32rpx 0;max-height: unset;">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="search-line">
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<input style="width: 100%;" placeholder="请输入群众姓名进行搜索" v-model="queryParams.searchValue" border="none" />
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<img src="https://rc.jinan.gov.cn/qcwjyH5/static/images/person/search.png" class="search-icon" @click="search()" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="inner"
|
|
|
|
|
|
style="width: calc(100% + 64rpx);margin-left: -32rpx;height: 122rpx;position: relative;z-index: 2;">
|
|
|
|
|
|
<PopupList :checkData="checkData" @searchCheck="search" ref="PopupList" @popupSearch="popupSearch" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view v-if="total" style="position: relative;padding-bottom: 16px;color: #000;">
|
|
|
|
|
|
<text>共 {{ total }} 条</text>
|
|
|
|
|
|
</view>
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<scroll-view :scroll-y="true" style="height: calc(100vh - 342rpx);position: relative;z-index: 1;"
|
2025-11-04 15:16:22 +08:00
|
|
|
|
@scrolltolower="getBottomList">
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<uni-swipe-action>
|
|
|
|
|
|
<uni-swipe-action-item @click="clickDelete(item)" v-for="(item, index) in tableData" :key="index"
|
|
|
|
|
|
style="margin-bottom: 24rpx;border-radius: 16rpx;" :right-options="options1">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="job-item">
|
|
|
|
|
|
<view class="top-container" @click="goNeedsDetail(item)">
|
|
|
|
|
|
<view class="title-line">
|
|
|
|
|
|
<view class="title">{{ item.personName }}</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- <view class="status-card" v-if="item.currentStatus == 3">已完成服务</view>
|
|
|
|
|
|
<view class="status-card in" v-else-if="item.untreatedCount <= 7">7天以内</view>
|
|
|
|
|
|
<view class="status-card out"
|
|
|
|
|
|
v-else-if="item.untreatedCount > 7&&item.untreatedCount <= 14">大于7天</view>
|
|
|
|
|
|
<view class="status-card far" v-else>已超期</view> -->
|
|
|
|
|
|
<view class="info"><text>状态:</text><text
|
|
|
|
|
|
:class="item.currentStatus == 1 ? 'not' : item.currentStatus == 2 ? 'ing' : item.currentStatus == 3 ? 'finish' : '' ">
|
|
|
|
|
|
{{ getDictLabel(item.currentStatus, currentStatusList) }}
|
|
|
|
|
|
</text></view>
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<view class="info" v-if="queryParams.demandType == 1">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<text>需求工种:</text>{{ item.jobWorkTypeName }}
|
|
|
|
|
|
</view>
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<view class="info" v-if="queryParams.demandType == 3">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<text>需求名称:</text>{{ item.serviceRequirementTitle }}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="info"
|
2025-11-06 12:16:28 +08:00
|
|
|
|
v-if="queryParams.demandType == 2||queryParams.demandType == 4||queryParams.demandType == 5">
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<text>需求名称:</text>{{ item.demandTitle }}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!--
|
|
|
|
|
|
item.currentStatus = 1 待处理、2 处理中、 3 已完成
|
2025-11-06 12:16:28 +08:00
|
|
|
|
queryParams.demandType 1 求职需求 2 援助需求、 3 创业需求、 4 培训需求 5其他需求 展示办结按钮
|
2025-11-04 15:16:22 +08:00
|
|
|
|
|
|
|
|
|
|
item.currentStatus = 1待处理 、 item.currentStatus = 2 处理中
|
2025-11-06 12:16:28 +08:00
|
|
|
|
求职需求列表(queryParams.demandType = 1) 展示 推荐、办理
|
|
|
|
|
|
培训需求列表(queryParams.demandType = 4) 展示 培训、办理
|
2025-11-04 15:16:22 +08:00
|
|
|
|
援助、创业、其他列表 展示办理
|
|
|
|
|
|
item.currentStatus = 3 已完成
|
|
|
|
|
|
统一展示 服务追溯
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
<view class="item_btn df_flex df_align_center df_justify_center">
|
|
|
|
|
|
<!-- 需求已处理完成的 展示服务追溯 -->
|
|
|
|
|
|
<view v-if="item.currentStatus == 3" class="df_flex_1">
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="服务追溯"
|
|
|
|
|
|
@click="serviceTraceButton(item)" :customStyle="{border: 'none'}">服务追溯</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 需求处于待处理、处理中 -->
|
|
|
|
|
|
<view v-else class="df_flex_1">
|
|
|
|
|
|
<!-- 求职需求 -->
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<view v-if="queryParams.demandType == 1" class="df_flex">
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="推荐"
|
2025-11-04 15:16:22 +08:00
|
|
|
|
:customStyle="{border: 'none'}"
|
2025-11-05 21:16:07 +08:00
|
|
|
|
@click="requirementTraining(item, 1)">推荐</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="line"></view>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="办理"
|
|
|
|
|
|
:customStyle="{border: 'none'}" @click="requirementHandling(item)">办理</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 培训需求 -->
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<view v-else-if="queryParams.demandType == 4" class="df_flex">
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="培训"
|
2025-11-04 15:16:22 +08:00
|
|
|
|
:customStyle="{border: 'none'}"
|
2025-11-05 21:16:07 +08:00
|
|
|
|
@click="requirementTraining(item, 4)">培训</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="line"></view>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="办理"
|
|
|
|
|
|
:customStyle="{border: 'none'}" @click="requirementHandling(item)">办理</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 其他需求 -->
|
|
|
|
|
|
<view v-else>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view type="primary" :plain="true" color="#BF5818" text="办理"
|
|
|
|
|
|
:customStyle="{border: 'none'}" @click="requirementHandling(item)">办理</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
</uni-swipe-action-item>
|
|
|
|
|
|
</uni-swipe-action>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view style="padding-bottom: 24rpx;">
|
|
|
|
|
|
<img v-if="!total&&!loading" src="https://rc.jinan.gov.cn/qcwjyH5/static/images/person/empty.png"
|
|
|
|
|
|
style="width: 100%;display: block;margin: 0 auto;" />
|
|
|
|
|
|
<view v-if="loading"><u-loading-icon></u-loading-icon>
|
|
|
|
|
|
<view style="text-align: center;color: #8E8E8E;font-size: 24rpx;">加载中~</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view v-else-if="showMorePage" style="text-align: center;color: #1A62CE;font-size: 24rpx;">加载更多
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view style="text-align: center;color: #8E8E8E;font-size: 24rpx;" v-else>没有更多数据了~</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</scroll-view>
|
|
|
|
|
|
</view>
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<DealDone ref="dealDone" @finished="search();"/>
|
|
|
|
|
|
<!-- <uni-popup ref="openDeal" background-color="#fff" type="bottom">
|
|
|
|
|
|
<view style="padding: 32rpx;padding-bottom: 0">
|
|
|
|
|
|
<uni-forms class="self-form" labelPosition="top" :model="formData" :rules="rules" ref="uForm"
|
|
|
|
|
|
labelWidth="300">
|
|
|
|
|
|
<uni-forms-item label="实际解决时间" prop="actualSolveDate" required>
|
|
|
|
|
|
<picker style="width: 100%;" mode="date" :value="formData.actualSolveDate" start="1900-01-01" end="2100-12-31" @change="onDateChange">
|
|
|
|
|
|
<view class="date-picker-wrapper" :class="{ noValue: !formData.actualSolveDate }">
|
|
|
|
|
|
<view v-if="formData.actualSolveDate" class="date-value">{{ formData.actualSolveDate }}</view>
|
|
|
|
|
|
<view v-else>请选择</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</picker>
|
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
|
|
|
|
|
|
|
<uni-forms-item label="附件" prop="fileUrl" >
|
|
|
|
|
|
<ImageUpload :fileList="fileList" @update="changeFile" :maxCount="6" />
|
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
|
|
|
|
|
|
|
<uni-forms-item label="解决说明" prop="solveDesc" required>
|
|
|
|
|
|
<textarea style="border: 1px solid #e4e4e4;width: 100%;border-radius: 8rpx;padding: 24rpx;box-sizing: border-box;" v-model="formData.solveDesc" placeholder="请输入"></textarea>
|
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
|
</uni-forms>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="button-area" style="box-shadow: unset;border-top: 1px solid #e4e4e4;padding-bottom: 0;">
|
2025-11-05 21:16:07 +08:00
|
|
|
|
<view class="btn" @click="closeopenDeal">取消</view>
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="btn reset" @click="formData.actualSolveDate = '';formData.solveDesc = ''">重置</view>
|
|
|
|
|
|
<view class="btn save" @click="finishJobRecommend">办结</view>
|
|
|
|
|
|
</view>
|
2025-11-06 12:16:28 +08:00
|
|
|
|
</uni-popup> -->
|
2025-11-04 15:16:22 +08:00
|
|
|
|
<view class="addNeeds" @click="goAddNeeds()">
|
|
|
|
|
|
<img src="https://rc.jinan.gov.cn/qcwjyH5/static/images/person/addNeeds.png" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- <u-datetime-picker style="position: relative;z-index: 100;" :show="showTime" v-model="hopeSolveDate"
|
|
|
|
|
|
mode="datetime" @confirm="confirmDate" closeOnClickOverlay @close="showTime=false"
|
|
|
|
|
|
@cancel="showTime=false"></u-datetime-picker> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-11-06 12:16:28 +08:00
|
|
|
|
<!-- <u-datetime-picker
|
2025-11-04 15:16:22 +08:00
|
|
|
|
style="position: relative;z-index: 100;"
|
|
|
|
|
|
:show="showTime"
|
|
|
|
|
|
v-model="hopeSolveDate"
|
|
|
|
|
|
mode="datetime"
|
|
|
|
|
|
closeOnClickOverlay
|
|
|
|
|
|
@confirm="confirmDate"
|
|
|
|
|
|
@cancel="showTime=false"
|
|
|
|
|
|
@close="showTime=false"
|
2025-11-06 12:16:28 +08:00
|
|
|
|
></u-datetime-picker> -->
|
2025-11-04 15:16:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 社区端 - 显示隐藏退出组件 -->
|
|
|
|
|
|
<exitPopup />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
2025-11-05 21:16:07 +08:00
|
|
|
|
import PopupList from "/packageRc/components/PopupLists.vue";
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import ImageUpload from '/packageRc/components/ImageUpload'
|
|
|
|
|
|
import {
|
|
|
|
|
|
requirementCompletion
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/company'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import {
|
|
|
|
|
|
listJobService,
|
|
|
|
|
|
delJobService
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/needs/jobService'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import {
|
|
|
|
|
|
listAssistService,
|
|
|
|
|
|
delAssistService,
|
|
|
|
|
|
finishAssistService
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/needs/assistService'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import {
|
|
|
|
|
|
listEntrepreneurshipService,
|
|
|
|
|
|
delEntrepreneurshipService,
|
|
|
|
|
|
finishEntrepreneurshipService
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/needs/entrepreneurshipService'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import {
|
|
|
|
|
|
listTrainService,
|
|
|
|
|
|
delTrainService
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/needs/trainService'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
import {
|
|
|
|
|
|
listOtherService,
|
|
|
|
|
|
delOtherService,
|
|
|
|
|
|
finishOtherService
|
2025-11-07 18:38:01 +08:00
|
|
|
|
} from '@/packageRc/apiRc/needs/otherService'
|
2025-11-06 12:16:28 +08:00
|
|
|
|
import DealDone from './dealDone.vue'
|
2025-11-04 15:16:22 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
components: {
|
|
|
|
|
|
PopupList,
|
2025-11-06 12:16:28 +08:00
|
|
|
|
ImageUpload,
|
|
|
|
|
|
DealDone,
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
checkData: [],
|
|
|
|
|
|
options1: [{
|
|
|
|
|
|
text: '删除'
|
|
|
|
|
|
}],
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
2025-11-06 12:16:28 +08:00
|
|
|
|
demandType: 1
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
showMorePage: true,
|
|
|
|
|
|
tableData: [],
|
|
|
|
|
|
person: {},
|
|
|
|
|
|
loading: false,
|
|
|
|
|
|
openDeal: false,
|
|
|
|
|
|
showTime: false,
|
|
|
|
|
|
formData: {
|
|
|
|
|
|
actualSolveDate: '',
|
|
|
|
|
|
solveDesc: ''
|
|
|
|
|
|
},
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
actualSolveDate: [{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请选择实际解决时间',
|
|
|
|
|
|
trigger: ['blur', 'change'],
|
|
|
|
|
|
}, ],
|
|
|
|
|
|
solveDesc: [{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请填写解决说明',
|
|
|
|
|
|
trigger: ['blur', 'change'],
|
|
|
|
|
|
}, ],
|
|
|
|
|
|
},
|
|
|
|
|
|
hopeSolveDate: Number(new Date()),
|
|
|
|
|
|
currentStatusList: [],
|
|
|
|
|
|
fileList: [],
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad({
|
|
|
|
|
|
dictValue
|
|
|
|
|
|
}) {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
this.queryParams.demandType = dictValue || 1
|
2025-11-04 15:16:22 +08:00
|
|
|
|
this.getCheckData()
|
|
|
|
|
|
},
|
|
|
|
|
|
onShow() {
|
|
|
|
|
|
this.search();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// 日期选择变化处理
|
|
|
|
|
|
onDateChange(e) {
|
|
|
|
|
|
this.formData.actualSolveDate = e.detail.value;
|
|
|
|
|
|
},
|
2025-11-05 21:16:07 +08:00
|
|
|
|
closeopenDeal() {
|
|
|
|
|
|
this.$refs.openDeal.close()
|
|
|
|
|
|
},
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// 新增需求
|
|
|
|
|
|
goAddNeeds() {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.navigateTo(`/packageRc/pages/needs/needDetail?activeType=${this.queryParams.demandType}&showTab=1`)
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
confirmDate(e) {
|
|
|
|
|
|
this.showTime = false;
|
|
|
|
|
|
// 获取选中的日期
|
|
|
|
|
|
const date = e.value;
|
|
|
|
|
|
// 使用 uView 的 uTime 方法格式化日期,包含时分秒
|
|
|
|
|
|
const formattedDateTime = uni.$u.timeFormat(date, 'yyyy-mm-dd hh:MM:ss');
|
|
|
|
|
|
// 设置表单数据
|
|
|
|
|
|
this.formData.actualSolveDate = formattedDateTime;
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 需求推荐/培训
|
|
|
|
|
|
requirementTraining(item, index) {
|
|
|
|
|
|
if (index == 1) {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: `/packageRc/pages/service/serviceDetail?personName=${item.personName}&personId=${item.personId}&jobDemandInfoId=${item.id}&jobWorkType=${item.jobWorkType}&type=3&showTab=1`
|
|
|
|
|
|
})
|
2025-11-04 15:16:22 +08:00
|
|
|
|
} else {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: `/packageRc/pages/service/serviceDetail?personName=${item.personName}&personId=${item.personId}&skillTrainingId=${item.id}&personStatus=${item.personStatus}&type=4&showTab=1`
|
|
|
|
|
|
})
|
2025-11-04 15:16:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
clickDelete(item) {
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
2025-11-06 12:16:28 +08:00
|
|
|
|
if (this.queryParams.demandType == 1) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
delJobService(item.id).then((res) => {
|
|
|
|
|
|
this.deleteFinish(res)
|
|
|
|
|
|
});
|
2025-11-06 12:16:28 +08:00
|
|
|
|
} else if (this.queryParams.demandType == 2) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
delAssistService(item.id).then((res) => {
|
|
|
|
|
|
this.deleteFinish(res)
|
|
|
|
|
|
});
|
2025-11-06 12:16:28 +08:00
|
|
|
|
} else if (this.queryParams.demandType == 3) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
delEntrepreneurshipService(item.id).then((res) => {
|
|
|
|
|
|
this.deleteFinish(res)
|
|
|
|
|
|
});
|
2025-11-06 12:16:28 +08:00
|
|
|
|
} else if (this.queryParams.demandType == 4) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
delTrainService(item.id).then((res) => {
|
|
|
|
|
|
this.deleteFinish(res)
|
|
|
|
|
|
});
|
2025-11-06 12:16:28 +08:00
|
|
|
|
} else if (this.queryParams.demandType == 5) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
delOtherService(item.id).then((res) => {
|
|
|
|
|
|
this.deleteFinish(res)
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
deleteFinish() {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '删除成功'
|
|
|
|
|
|
})
|
|
|
|
|
|
this.search()
|
|
|
|
|
|
},
|
|
|
|
|
|
goNeedsDetail(item) {
|
|
|
|
|
|
uni.navigateTo({
|
2025-11-06 12:16:28 +08:00
|
|
|
|
url: `/packageRc/pages/needs/needDetail?id=${item.id}&type=${this.queryParams.demandType}&showTab=1`
|
2025-11-04 15:16:22 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
getDictLabel(value, list) {
|
|
|
|
|
|
if (list) {
|
|
|
|
|
|
let arr = list.filter(ele => ele.dictValue == value)
|
|
|
|
|
|
if (arr.length) {
|
|
|
|
|
|
return arr[0].dictLabel
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return '--'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
async getCheckData() {
|
|
|
|
|
|
let workExperienceYears
|
2025-11-05 21:16:07 +08:00
|
|
|
|
await this.$getDict('qcjy_gznx').then(res => {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
workExperienceYears = res.data
|
|
|
|
|
|
})
|
2025-11-05 21:16:07 +08:00
|
|
|
|
await this.$getDict('qcjy_xqlc').then(res => {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
this.currentStatusList = res.data;
|
|
|
|
|
|
console.log(res.data)
|
|
|
|
|
|
})
|
|
|
|
|
|
this.checkData = [
|
2025-11-06 12:16:28 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: "需求类型",
|
|
|
|
|
|
type: "demandType",
|
|
|
|
|
|
data: [{dictLabel: '求职需求', dictValue: '1'},{dictLabel: '创业需求', dictValue: '3'},{dictLabel: '培训需求', dictValue: '4'},{dictLabel: '其他需求', dictValue: '5'}],
|
|
|
|
|
|
activeIndex: 0,
|
|
|
|
|
|
},
|
2025-11-04 15:16:22 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: "需求状态",
|
|
|
|
|
|
type: "currentStatus",
|
|
|
|
|
|
data: [{
|
|
|
|
|
|
dictLabel: '全部',
|
|
|
|
|
|
dictValue: ''
|
|
|
|
|
|
}].concat(this.currentStatusList),
|
|
|
|
|
|
activeIndex: 0,
|
|
|
|
|
|
},
|
|
|
|
|
|
// {
|
|
|
|
|
|
// name: "工作经验",
|
|
|
|
|
|
// type: "workExperienceYears",
|
|
|
|
|
|
// data: [{dictLabel: '全部', dictValue: ''}].concat(workExperienceYears),
|
|
|
|
|
|
// activeIndex: 0,
|
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
},
|
|
|
|
|
|
popupSearch(queryParams) {
|
|
|
|
|
|
queryParams.forEach((item, index) => {
|
|
|
|
|
|
if (item.data[item.activeIndex].dictLabel == "全部") {
|
|
|
|
|
|
this.queryParams[item.type] = "";
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.queryParams[item.type] = item.data[item.activeIndex].dictValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
this.search()
|
|
|
|
|
|
},
|
|
|
|
|
|
search() {
|
|
|
|
|
|
this.showMorePage = true;
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.queryParams.pageSize = 10;
|
|
|
|
|
|
this.tableData = [];
|
|
|
|
|
|
this.total = 0;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 服务追溯
|
|
|
|
|
|
serviceTraceButton(item) {
|
|
|
|
|
|
// 定义需求类型与对应的字符串映射
|
|
|
|
|
|
const demandTypeMap = {
|
|
|
|
|
|
1: 'job', // 求职需求
|
|
|
|
|
|
2: 'assist', // 援助需求
|
|
|
|
|
|
3: 'entrepreneurship', // 创业需求
|
|
|
|
|
|
4: 'train', // 培训需求
|
|
|
|
|
|
5: 'other' // 其他需求
|
|
|
|
|
|
};
|
|
|
|
|
|
// 获取当前的需求类型字符串
|
2025-11-06 12:16:28 +08:00
|
|
|
|
const demandType = demandTypeMap[this.queryParams.demandType] || 'other';
|
|
|
|
|
|
uni.navigateTo({url: `/packageRc/pages/service/serviceTraceability?id=${item.id}&demandType=${demandType}`});
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// 使用映射后的字符串构建URL并导航
|
|
|
|
|
|
},
|
|
|
|
|
|
// 触底加载
|
|
|
|
|
|
getBottomList() {
|
|
|
|
|
|
if (
|
|
|
|
|
|
this.queryParams.pageNum * this.queryParams.pageSize >=
|
|
|
|
|
|
this.total
|
|
|
|
|
|
) {
|
|
|
|
|
|
this.showMorePage = false;
|
|
|
|
|
|
} else if (
|
|
|
|
|
|
this.queryParams.pageNum * this.queryParams.pageSize <
|
|
|
|
|
|
this.total
|
|
|
|
|
|
) {
|
|
|
|
|
|
this.queryParams.pageNum++;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
if (
|
|
|
|
|
|
this.queryParams.pageNum * this.queryParams.pageSize >=
|
|
|
|
|
|
this.total
|
|
|
|
|
|
) {
|
|
|
|
|
|
this.showMorePage = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 获取列表
|
|
|
|
|
|
async getList() {
|
|
|
|
|
|
this.loading = true;
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// if (this.queryParams.demandType == 1) {
|
2025-11-04 15:16:22 +08:00
|
|
|
|
listJobService(this.queryParams).then((res) => {
|
|
|
|
|
|
this.gettedData(res)
|
|
|
|
|
|
});
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// } else if (this.queryParams.demandType == 2) {
|
|
|
|
|
|
// listAssistService(this.queryParams).then((res) => {
|
|
|
|
|
|
// this.gettedData(res)
|
|
|
|
|
|
// });
|
|
|
|
|
|
// } else if (this.queryParams.demandType == 3) {
|
|
|
|
|
|
// listEntrepreneurshipService(this.queryParams).then((res) => {
|
|
|
|
|
|
// this.gettedData(res)
|
|
|
|
|
|
// });
|
|
|
|
|
|
// } else if (this.queryParams.demandType == 4) {
|
|
|
|
|
|
// listTrainService(this.queryParams).then((res) => {
|
|
|
|
|
|
// this.gettedData(res)
|
|
|
|
|
|
// });
|
|
|
|
|
|
// } else if (this.queryParams.demandType == 5) {
|
|
|
|
|
|
// listOtherService(this.queryParams).then((res) => {
|
|
|
|
|
|
// this.gettedData(res)
|
|
|
|
|
|
// });
|
|
|
|
|
|
// }
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
gettedData(res) {
|
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
|
if (res.rows.length < 10) {
|
|
|
|
|
|
this.showMorePage = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
this.tableData = this.tableData.concat(res.rows);
|
|
|
|
|
|
this.total = res.total;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: res.msg,
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 需求办结
|
|
|
|
|
|
requirementHandling(item) {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// this.$refs.openDeal.open()
|
|
|
|
|
|
// this.formData = {
|
|
|
|
|
|
// id: item.id,
|
|
|
|
|
|
// currentStatus: '3'
|
|
|
|
|
|
// }
|
|
|
|
|
|
console.log(item, 'asdfjoiasiodfjoi')
|
|
|
|
|
|
|
|
|
|
|
|
this.$refs.dealDone.init({
|
2025-11-04 15:16:22 +08:00
|
|
|
|
id: item.id,
|
2025-11-06 12:16:28 +08:00
|
|
|
|
currentStatus: "3",
|
|
|
|
|
|
userId: item.userId,
|
|
|
|
|
|
// personStatus: item.personStatus || (this.dict.personStatusList[0] && this.dict.personStatusList[0].dictValue),
|
|
|
|
|
|
});
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 需求推荐
|
|
|
|
|
|
requirementRecommendation(item) {
|
|
|
|
|
|
this.$tab.navigateTo(
|
|
|
|
|
|
`/pages/services/serviceDetail?personName=${item.personName}&personId=${item.personId}&jobDemandInfoId=${item.id}&jobWorkType=${item.jobWorkType}&type=3&showTab=1`
|
|
|
|
|
|
)
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 办结按钮
|
|
|
|
|
|
async finishJobRecommend() {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.showLoading();
|
2025-11-04 15:16:22 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 检查必填项
|
|
|
|
|
|
if (!this.formData.actualSolveDate) {
|
|
|
|
|
|
throw new Error('解决时间不能为空');
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!this.formData.solveDesc) {
|
|
|
|
|
|
throw new Error('解决说明不能为空');
|
|
|
|
|
|
}
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// 根据 queryParams.demandType 获取对应的 URL
|
2025-11-04 15:16:22 +08:00
|
|
|
|
const obj = {
|
|
|
|
|
|
1: '/demand/personJobDemandInfo/JdJobDemandDone',
|
|
|
|
|
|
2: '/demand/personAssistDemandInfo/assistDone',
|
|
|
|
|
|
3: '/demand/personEntrepreneurshipDemandInfo/entrepreneurshipDone',
|
|
|
|
|
|
4: '/demand/personTrainDemandInfo/JdTrainDemandDone',
|
|
|
|
|
|
5: '/demand/personOtherDemandInfo/otherDemandDone',
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-06 12:16:28 +08:00
|
|
|
|
const url = '/manage/personDemand/demandDone';//obj[this.queryParams.demandType];
|
2025-11-04 15:16:22 +08:00
|
|
|
|
if (!url) {
|
|
|
|
|
|
throw new Error('无效的需求类型');
|
|
|
|
|
|
}
|
|
|
|
|
|
const {
|
|
|
|
|
|
code,
|
|
|
|
|
|
msg
|
|
|
|
|
|
} = await requirementCompletion(url, this.formData);
|
|
|
|
|
|
|
|
|
|
|
|
// 检查响应码是否为200
|
|
|
|
|
|
if (code === 200) {
|
|
|
|
|
|
// 显示成功的提示信息
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.showToast({title: msg, icon: 'none'});
|
2025-11-05 21:16:07 +08:00
|
|
|
|
// this.openDeal = false;
|
2025-11-06 12:16:28 +08:00
|
|
|
|
this.$refs.openDeal.close()
|
2025-11-04 15:16:22 +08:00
|
|
|
|
this.search();
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 处理错误并显示提示信息
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.showToast({title: '请检查必填项填写', icon: 'none'});
|
2025-11-04 15:16:22 +08:00
|
|
|
|
} finally {
|
|
|
|
|
|
// 确保加载页总是会被隐藏
|
2025-11-06 12:16:28 +08:00
|
|
|
|
uni.hideLoading();
|
2025-11-04 15:16:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// async finishJobRecommend() {
|
|
|
|
|
|
// this.openDeal = true;
|
|
|
|
|
|
// const obj = {
|
|
|
|
|
|
// 1: '/demand/personJobDemandInfo/JdJobDemandDone',
|
|
|
|
|
|
// 2: '/demand/personAssistDemandInfo/assistDone',
|
|
|
|
|
|
// 3: '/demand/personEntrepreneurshipDemandInfo/entrepreneurshipDone',
|
|
|
|
|
|
// 4: '/demand/personTrainDemandInfo/JdTrainDemandDone',
|
|
|
|
|
|
// 5: '/demand/personOtherDemandInfo/otherDemandDone',
|
|
|
|
|
|
// }
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// if (!this.formData.actualSolveDate) return uni.showToast({title: '解决时间不能为空', icon: 'none'});
|
|
|
|
|
|
// if (!this.formData.solveDesc) return uni.showToast({title: '解决说明不能为空', icon: 'none'});
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// const {
|
|
|
|
|
|
// code,
|
|
|
|
|
|
// data,
|
|
|
|
|
|
// msg
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// } = await requirementCompletion(obj[this.queryParams.demandType], this.formData)
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// if (code == 200) {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
// uni.showToast({title: ms, icon: 'none'}g)
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// this.openDeal = false
|
|
|
|
|
|
// this.search()
|
|
|
|
|
|
// }
|
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
|
|
changeFile(e) {
|
2025-11-06 12:16:28 +08:00
|
|
|
|
console.log(e, 34234234234234)
|
2025-11-04 15:16:22 +08:00
|
|
|
|
// 清空当前的 fileUrl 数组
|
|
|
|
|
|
this.formData.fileUrl = [];
|
|
|
|
|
|
// 如果 e 有长度(即用户选择了文件)
|
|
|
|
|
|
if (e.length) {
|
|
|
|
|
|
// 遍历每个文件对象并获取其 url
|
|
|
|
|
|
for (let data of e) {
|
|
|
|
|
|
const url = data.data ? data.data.url : data.url;
|
|
|
|
|
|
this.formData.fileUrl.push(url);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-06 12:16:28 +08:00
|
|
|
|
this.formData.fileUrl = this.formData.fileUrl.join(',');
|
2025-11-04 15:16:22 +08:00
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.page {
|
2025-11-05 21:16:07 +08:00
|
|
|
|
background-color: #f4f4f4 !important;
|
2025-11-04 15:16:22 +08:00
|
|
|
|
height: 100vh;
|
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.search-line {
|
|
|
|
|
|
border-radius: 32px;
|
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
border: 1px solid #107AFD;
|
|
|
|
|
|
height: 64rpx;
|
|
|
|
|
|
border-radius: 32rpx;
|
|
|
|
|
|
padding: 0 32rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
margin-top: 24rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.search-icon {
|
|
|
|
|
|
width: 40rpx;
|
2025-11-06 12:16:28 +08:00
|
|
|
|
height: 40rpx;
|
2025-11-04 15:16:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.job-item {
|
|
|
|
|
|
position: relative;
|
2025-11-06 12:16:28 +08:00
|
|
|
|
margin-bottom: 24rpx;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border-radius: 16rpx;
|
2025-11-04 15:16:22 +08:00
|
|
|
|
.item_btn{
|
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
|
border-top: 1px solid #e3e8ee;
|
|
|
|
|
|
}
|
|
|
|
|
|
.line{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 50%;
|
|
|
|
|
|
bottom: 20rpx;
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
background-color: #e3e8ee;
|
|
|
|
|
|
}
|
|
|
|
|
|
.status-card {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
border-radius: 0 16rpx 0 16rpx;
|
|
|
|
|
|
width: 160rpx;
|
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
background: #B2C0D1;
|
|
|
|
|
|
border: 1px solid #9BA9B9;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
|
|
|
|
|
|
&.in {
|
|
|
|
|
|
background: #29D297;
|
|
|
|
|
|
border: 1px solid #1BBA83;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.out {
|
|
|
|
|
|
background: #ECB83D;
|
|
|
|
|
|
border: 1px solid #D7892B;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.far {
|
|
|
|
|
|
background: #EC7737;
|
|
|
|
|
|
border: 1px solid #C24F1A;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-container {
|
|
|
|
|
|
padding: 32rpx;
|
|
|
|
|
|
|
|
|
|
|
|
// margin-bottom: 24rpx;
|
|
|
|
|
|
.title-line {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
margin-bottom: 16rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.type-tag {
|
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
|
width: 128rpx;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
&.qz {
|
|
|
|
|
|
background: #28CB5E;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.yz {
|
|
|
|
|
|
background: #DD6728;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.cy {
|
|
|
|
|
|
background: #23B5C5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.px {
|
|
|
|
|
|
background: #DDA728;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.qt {
|
|
|
|
|
|
background: #2870DD;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
|
width: calc(100% - 137rpx);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.salary {
|
|
|
|
|
|
width: 33%;
|
|
|
|
|
|
color: #FA6553;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
text-align: right
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info {
|
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
|
margin-bottom: 7rpx;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
|
color: #8E8E8E;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.not {
|
|
|
|
|
|
color: #EC7737;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ing {
|
|
|
|
|
|
color: #ECB83D;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.finish {
|
|
|
|
|
|
color: #21C88D;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.function-btn {
|
|
|
|
|
|
color: #BF5818;
|
|
|
|
|
|
border-top: 1px solid #E2E8EF;
|
|
|
|
|
|
padding-bottom: 6rpx;
|
|
|
|
|
|
line-height: 90rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.self-form {
|
|
|
|
|
|
padding: 32rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.bordered {
|
|
|
|
|
|
border: 1rpx solid #dadbde;
|
|
|
|
|
|
padding: 9px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button-area {
|
|
|
|
|
|
padding: 24rpx 32rpx 68rpx;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
border-radius: 16px 16px 0px 0px;
|
|
|
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
|
line-height: 72rpx;
|
|
|
|
|
|
width: 176rpx;
|
|
|
|
|
|
margin-right: 16rpx;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
border: 1px solid #B8C5D4;
|
|
|
|
|
|
color: #282828;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.reset {
|
|
|
|
|
|
background: #DCE2E9;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.save {
|
|
|
|
|
|
background: linear-gradient(103deg, #1D64CF 0%, #1590D4 99%);
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.noValue {
|
|
|
|
|
|
color: rgb(192, 196, 204);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.addNeeds {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 150rpx;
|
|
|
|
|
|
width: 150rpx;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
border-radius: 44rpx;
|
|
|
|
|
|
border-radius: 75rpx;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-06 12:16:28 +08:00
|
|
|
|
|
|
|
|
|
|
.df_flex{
|
2025-11-05 21:16:07 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
view{
|
|
|
|
|
|
flex-grow: 1;
|
2025-11-06 12:16:28 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
color: #4c6efb;
|
2025-11-05 21:16:07 +08:00
|
|
|
|
}
|
2025-11-06 12:16:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
.df_flex_1{
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.df__direction_column {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
.df_align_center{
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.df_justify_center{
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.df_content_between{
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
.df_shrink_0{
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 日期选择器样式 */
|
|
|
|
|
|
.date-picker-wrapper {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
padding: 0 24rpx;
|
|
|
|
|
|
height: 64rpx;
|
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// .date-picker-wrapper.noValue {
|
|
|
|
|
|
// background-color: #f9f9f9;
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
.date-value {
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
width: 100%
|
|
|
|
|
|
}
|
2025-11-04 15:16:22 +08:00
|
|
|
|
</style>
|