提交10.31

This commit is contained in:
wuzhimiao
2025-10-31 18:43:06 +08:00
parent 5859560694
commit a8742d4521
48 changed files with 945 additions and 1928 deletions

View File

@@ -5,10 +5,10 @@
-->
<template>
<view class="page">
<view class="page-header df_flex">
<view class="page-header df_flex" style="display:flex;align-items:center;justify-content:space-between;padding:20rpx 0rpx;">
<u-icon class="back-icon" name="arrow-left" color="#fff" size="16" @click="goBack()"></u-icon>
<view class="title df_flex_1" style="padding-left: 32rpx;" >{{isAdd ? '需求新增' : '需求维护'}}</view>
<u-icon style="margin-right: 32rpx;" name="list" size="44rpx" color="fff"></u-icon>
<u-icon style="margin-right: 32rpx;" @tap="$store.commit('SET_SHOWEXITPOPUP', true)" name="list" size="44rpx" color="#fff"></u-icon>
</view>
<view class="tab-list" v-if="showTab != 1">
<view class="tab" :class="{active: activeType == 1}" @click="canChangeType ? changeType(1) : ''">求职<br>需求
@@ -19,12 +19,12 @@
</view>
<view class="tab" :class="{active: activeType == 5}" @click="canChangeType ? changeType(5) : ''">其他<br>需求
</view>
</view>
<jobService v-if="activeType == 1" :id="id" :name="name" ref="type1" />
<assistService v-if="activeType == 2" :id="id" :name="name" ref="type2" />
<entrepreneurshipService :id="id" :name="name" v-if="activeType == 3" ref="type3" />
<trainService v-if="activeType == 4" :id="id" :name="name" ref="type4" />
<otherService v-if="activeType == 5" :id="id" :name="name" ref="type5" />
</view>
<jobService v-if="activeType == 1" :needId="id" :name="name" ref="type1" />
<assistService v-if="activeType == 2" :needId="id" :name="name" ref="type2" />
<entrepreneurshipService :needId="id" :name="name" v-if="activeType == 3" ref="type3" />
<trainService v-if="activeType == 4" :needId="id" :name="name" ref="type4" />
<otherService v-if="activeType == 5" :needId="id" :name="name" ref="type5" />
<!-- 社区端 - 显示隐藏退出组件 -->
<exitPopup />
</view>
@@ -56,6 +56,7 @@
onLoad(options) {
this.showTab = options.showTab
this.id = options.id
console.log("this.id",this.id)
this.name = options.name
if (options.id && options.type) {
this.isAdd = false
@@ -93,7 +94,7 @@
.page {
background-color: #EEF1F5 !important;
height: 100vh;
background-image: url('../../static/images/top.png');
background-image: url('https://rc.jinan.gov.cn/qcwjyH5/static/images/top.png');
background-repeat: no-repeat;
background-size: 100% auto;