diff --git a/main.js b/main.js index 6c54d43..a077b57 100644 --- a/main.js +++ b/main.js @@ -12,7 +12,6 @@ import config from './config.js'; // 导入主包中的request.js用于字典服务 // 在uni-app小程序环境中,主包不能直接引用分包中的模块 import { request, get, post, packageRcRequest, packageRcGet, packageRcPost } from './utils/request.js'; - // 将request, get, post函数挂载到全局,方便使用 // 挂载分包专用的请求函数(使用固定baseURL和token) @@ -77,7 +76,6 @@ async function getDict(dictType, forceRefresh = false) { export function createApp() { const app = createSSRApp(App) - app.component('AppLayout', AppLayout) app.component('Empty', Empty) app.component('NoBouncePage', NoBouncePage) diff --git a/packageRc/api/needs/personDemand.js b/packageRc/api/needs/personDemand.js index 2c43d31..e7b9f3e 100644 --- a/packageRc/api/needs/personDemand.js +++ b/packageRc/api/needs/personDemand.js @@ -25,9 +25,11 @@ export function getPersonDemand(id) { // 新增个人需求信息 export function addPersonDemand(data) { + // 确保传递数据前进行日志输出 + console.log('addPersonDemand函数接收到的数据:', data); return post({ url: 'manage/personDemand', - method: 'post', + method: 'post', // 修改为大写POST,确保请求参数正确传递 data: data }) } diff --git a/packageRc/api/personinfo/index.js b/packageRc/api/personinfo/index.js index d8c4dfc..a173264 100644 --- a/packageRc/api/personinfo/index.js +++ b/packageRc/api/personinfo/index.js @@ -22,3 +22,16 @@ export function getJbrInfo() { method: 'get' }) } +export function getPersonBase() { + return get({ + url: `system/center/user/selectHxjbr`, + method: 'get' + }) +} +export function returnPerson(params) { + return get({ + 'url': `/personnel/personBaseInfo/returnPerson`, + + params + }) +} \ No newline at end of file diff --git a/packageRc/pages/daiban/addbangfu.vue b/packageRc/pages/daiban/addbangfu.vue index 8be54ed..2f85607 100644 --- a/packageRc/pages/daiban/addbangfu.vue +++ b/packageRc/pages/daiban/addbangfu.vue @@ -431,7 +431,7 @@ this.personStatusOptions=serviceContentOptions1 .page { height: 100vh; background-color: #eef1f5 !important; - background-image: url("~@/static/images/top.png"); + background-image: url("~@/packageRc/static/images/top.png"); background-repeat: no-repeat; background-size: 100% auto; } diff --git a/packageRc/pages/daiban/daiban.vue b/packageRc/pages/daiban/daiban.vue index 943d1ef..bda6924 100644 --- a/packageRc/pages/daiban/daiban.vue +++ b/packageRc/pages/daiban/daiban.vue @@ -84,8 +84,8 @@ 详细地址:{{item.xxdz}} - 退回 - 服务 + 退回 + 服务 @@ -114,11 +114,13 @@ + + diff --git a/packageRc/pages/demand/components/choosePerson.vue b/packageRc/pages/demand/components/choosePerson.vue index 6ee2e88..c608a0f 100644 --- a/packageRc/pages/demand/components/choosePerson.vue +++ b/packageRc/pages/demand/components/choosePerson.vue @@ -66,6 +66,7 @@ pageNum: 1 }).then(res => { this.personList = res.rows + console.log("人眼",res.row) clearTimeout(this.searcher) }) }, 200) diff --git a/packageRc/pages/demand/components/entrepreneurshipService.vue b/packageRc/pages/demand/components/entrepreneurshipService.vue index 002facd..2625515 100644 --- a/packageRc/pages/demand/components/entrepreneurshipService.vue +++ b/packageRc/pages/demand/components/entrepreneurshipService.vue @@ -4,60 +4,83 @@ * @LastEditTime: 2025-05-06 16:56:20 --> - - + + + diff --git a/packageRc/pages/demand/components/trainService.vue b/packageRc/pages/demand/components/trainService.vue index 6e742b7..89db1a0 100644 --- a/packageRc/pages/demand/components/trainService.vue +++ b/packageRc/pages/demand/components/trainService.vue @@ -57,7 +57,7 @@ > {{ formData.qwpxgzName || '请选择工种' }} - + @@ -68,7 +68,7 @@ {{ formData.qwpxsj || "请选择" }} - + @@ -116,19 +116,19 @@ - - diff --git a/static/images/addPersonnel.png b/packageRc/static/images/addPersonnel.png similarity index 100% rename from static/images/addPersonnel.png rename to packageRc/static/images/addPersonnel.png diff --git a/static/images/person/addNeeds.png b/packageRc/static/images/person/addNeeds.png similarity index 100% rename from static/images/person/addNeeds.png rename to packageRc/static/images/person/addNeeds.png diff --git a/static/images/person/femalepng.png b/packageRc/static/images/person/femalepng.png similarity index 100% rename from static/images/person/femalepng.png rename to packageRc/static/images/person/femalepng.png diff --git a/static/images/person/fillInRecords.png b/packageRc/static/images/person/fillInRecords.png similarity index 100% rename from static/images/person/fillInRecords.png rename to packageRc/static/images/person/fillInRecords.png diff --git a/static/images/person/malepng.png b/packageRc/static/images/person/malepng.png similarity index 100% rename from static/images/person/malepng.png rename to packageRc/static/images/person/malepng.png diff --git a/pages.json b/pages.json index 6b65d7e..b5d3278 100644 --- a/pages.json +++ b/pages.json @@ -435,14 +435,7 @@ "navigationBarTextStyle": "white" } }, - { - "path": "pages/demand/index", - "style": { - "navigationBarTitleText": "需求上报", - "navigationBarBackgroundColor": "#4778EC", - "navigationBarTextStyle": "white" - } - }, + { "path": "pages/demand/demandail", "style": { diff --git a/pages/index/components/index-one.vue b/pages/index/components/index-one.vue index 10861b3..b72c46c 100644 --- a/pages/index/components/index-one.vue +++ b/pages/index/components/index-one.vue @@ -248,7 +248,7 @@ - + 添加 diff --git a/static/images/addCompany.png b/static/images/addCompany.png deleted file mode 100644 index 4820699..0000000 Binary files a/static/images/addCompany.png and /dev/null differ diff --git a/static/images/addServices.png b/static/images/addServices.png deleted file mode 100644 index c4da0bb..0000000 Binary files a/static/images/addServices.png and /dev/null differ diff --git a/static/images/company.png b/static/images/company.png deleted file mode 100644 index d431945..0000000 Binary files a/static/images/company.png and /dev/null differ diff --git a/static/images/login/bg.png b/static/images/login/bg.png deleted file mode 100644 index 9290837..0000000 Binary files a/static/images/login/bg.png and /dev/null differ diff --git a/static/images/login/logo.png b/static/images/login/logo.png deleted file mode 100644 index 703a4ff..0000000 Binary files a/static/images/login/logo.png and /dev/null differ diff --git a/static/images/person/addEnterprise.png b/static/images/person/addEnterprise.png deleted file mode 100644 index 3f8c52c..0000000 Binary files a/static/images/person/addEnterprise.png and /dev/null differ diff --git a/static/images/person/addNeeds1.png b/static/images/person/addNeeds1.png deleted file mode 100644 index 73a60a5..0000000 Binary files a/static/images/person/addNeeds1.png and /dev/null differ diff --git a/static/images/person/bannerCard-old.png b/static/images/person/bannerCard-old.png deleted file mode 100644 index 41baa13..0000000 Binary files a/static/images/person/bannerCard-old.png and /dev/null differ diff --git a/static/images/person/bannerCard.png b/static/images/person/bannerCard.png deleted file mode 100644 index 46a6169..0000000 Binary files a/static/images/person/bannerCard.png and /dev/null differ diff --git a/static/images/person/ditu.png b/static/images/person/ditu.png deleted file mode 100644 index 055334e..0000000 Binary files a/static/images/person/ditu.png and /dev/null differ diff --git a/static/images/person/empty.png b/static/images/person/empty.png deleted file mode 100644 index 4f040fe..0000000 Binary files a/static/images/person/empty.png and /dev/null differ diff --git a/static/images/person/enterprise.png b/static/images/person/enterprise.png deleted file mode 100644 index aa6db83..0000000 Binary files a/static/images/person/enterprise.png and /dev/null differ diff --git a/static/images/person/enterpriseIcon.png b/static/images/person/enterpriseIcon.png deleted file mode 100644 index 0872690..0000000 Binary files a/static/images/person/enterpriseIcon.png and /dev/null differ diff --git a/static/images/person/fillInRecords2.png b/static/images/person/fillInRecords2.png deleted file mode 100644 index 8d16aad..0000000 Binary files a/static/images/person/fillInRecords2.png and /dev/null differ diff --git a/static/images/person/firstTop.png b/static/images/person/firstTop.png deleted file mode 100644 index 2305b0e..0000000 Binary files a/static/images/person/firstTop.png and /dev/null differ diff --git a/static/images/person/header-botom.png b/static/images/person/header-botom.png deleted file mode 100644 index 7d6a9b4..0000000 Binary files a/static/images/person/header-botom.png and /dev/null differ diff --git a/static/images/person/information.png b/static/images/person/information.png deleted file mode 100644 index cda168d..0000000 Binary files a/static/images/person/information.png and /dev/null differ diff --git a/static/images/person/jiaofei.png b/static/images/person/jiaofei.png deleted file mode 100644 index ef3ff83..0000000 Binary files a/static/images/person/jiaofei.png and /dev/null differ diff --git a/static/images/person/jiazheng.png b/static/images/person/jiazheng.png deleted file mode 100644 index 2c7be94..0000000 Binary files a/static/images/person/jiazheng.png and /dev/null differ diff --git a/static/images/person/jiuye.png b/static/images/person/jiuye.png deleted file mode 100644 index d1eee78..0000000 Binary files a/static/images/person/jiuye.png and /dev/null differ diff --git a/static/images/person/quanzi.png b/static/images/person/quanzi.png deleted file mode 100644 index 6014794..0000000 Binary files a/static/images/person/quanzi.png and /dev/null differ diff --git a/static/images/person/qxwq.png b/static/images/person/qxwq.png deleted file mode 100644 index b2f2c03..0000000 Binary files a/static/images/person/qxwq.png and /dev/null differ diff --git a/static/images/person/serviceFrequency.png b/static/images/person/serviceFrequency.png deleted file mode 100644 index 977d7e0..0000000 Binary files a/static/images/person/serviceFrequency.png and /dev/null differ diff --git a/static/images/top.png b/static/images/top.png deleted file mode 100644 index e403e6c..0000000 Binary files a/static/images/top.png and /dev/null differ diff --git a/static/images/youxiuwai.png b/static/images/youxiuwai.png deleted file mode 100644 index 9b68291..0000000 Binary files a/static/images/youxiuwai.png and /dev/null differ diff --git a/static/images/zuoxiuwai.png b/static/images/zuoxiuwai.png deleted file mode 100644 index f06f91c..0000000 Binary files a/static/images/zuoxiuwai.png and /dev/null differ