From 4ece5ec7e3d622aa6a5d0c2079a86e749fa63691 Mon Sep 17 00:00:00 2001 From: zxy <353513737@qq.com> Date: Wed, 21 Feb 2024 10:31:56 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/my/my.vue | 2 +- pages/projectInfo/projectInfo.vue | 18 +++++++++++++----- pages/projectInfo/workInfo.vue | 14 +++++++------- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/pages/my/my.vue b/pages/my/my.vue index 7939d16..a59010f 100644 --- a/pages/my/my.vue +++ b/pages/my/my.vue @@ -30,7 +30,7 @@ - 我的评价 + 浏览记录 diff --git a/pages/projectInfo/projectInfo.vue b/pages/projectInfo/projectInfo.vue index 5e30e06..176575c 100644 --- a/pages/projectInfo/projectInfo.vue +++ b/pages/projectInfo/projectInfo.vue @@ -40,7 +40,7 @@ 经验要求:{{experience[info.experienceDesc]}} - + 任务描述 @@ -70,9 +70,9 @@ - 联系方式 + 地址 - + 任务地址:{{info.address}} @@ -131,7 +131,11 @@ 下一步 + + 1111111 + + + @@ -160,6 +164,7 @@ import dictionary from '@/common/textdata.js'; import {dateFormat} from "../../untils/format.js"; import uniMask from '@/components/uni-mask/mask.vue' + import uniPopup from '@/components/uni-popup/uni-popup.vue' import validCode from '@/components/p-valid-code/p-valid-code.vue' export default { data() { @@ -189,9 +194,10 @@ src: 'https://jlfiles.oss-cn-zhangjiakou.aliyuncs.com/jobslink-api/doc/%E7%94%B5%E5%AD%90%E5%90%88%E5%90%8C%E9%A2%84%E8%A7%88%E5%9B%BE%E7%89%87.png', maxlength: 6, collectStatus: 0, // 收藏状态 + showPopup: false, } }, - components: {uniMask,validCode}, + components: {uniMask,validCode,uniPopup}, onLoad: function(option) { //option为object类型,会序列化上个页面传递的参数 // this.$store.dispatch('setAutograph') if (option.missionNo) { @@ -231,6 +237,8 @@ }, callPhone() { console.log('电话联系') + // this.showPopup = true; + this.$refs.popup.open(); }, // 获取收藏状态 getCollectStatus() { diff --git a/pages/projectInfo/workInfo.vue b/pages/projectInfo/workInfo.vue index d0dd6a2..9e1eb61 100644 --- a/pages/projectInfo/workInfo.vue +++ b/pages/projectInfo/workInfo.vue @@ -43,7 +43,7 @@ 岗位地址:{{info.jobAddress}} - + 任务描述 @@ -77,21 +77,21 @@ - 联系方式 + 地址 - + + - 任务地址:{{info.address}} + 岗位地址:{{info.address}} From ead8d9e255a85032ef02a2b1bfacdbd434629f47 Mon Sep 17 00:00:00 2001 From: zxy <353513737@qq.com> Date: Wed, 21 Feb 2024 11:45:29 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=94=B5=E8=AF=9D=E8=81=94=E7=B3=BB=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 2 +- pages/projectInfo/projectInfo.vue | 20 +++++++++++++------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/pages.json b/pages.json index dd4105f..a237d8c 100644 --- a/pages.json +++ b/pages.json @@ -1,5 +1,5 @@ { - "pages" : [ + "pages" : [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path" : "pages/index/index", diff --git a/pages/projectInfo/projectInfo.vue b/pages/projectInfo/projectInfo.vue index 176575c..35b2e6b 100644 --- a/pages/projectInfo/projectInfo.vue +++ b/pages/projectInfo/projectInfo.vue @@ -131,9 +131,14 @@ 下一步 - - 1111111 - + + + 重要提示: + 为保障个人基本劳动权益,建议通过平台用工的形式就业 + {{ info.callName }} : {{ info.callTel }} + + + @@ -194,7 +199,7 @@ src: 'https://jlfiles.oss-cn-zhangjiakou.aliyuncs.com/jobslink-api/doc/%E7%94%B5%E5%AD%90%E5%90%88%E5%90%8C%E9%A2%84%E8%A7%88%E5%9B%BE%E7%89%87.png', maxlength: 6, collectStatus: 0, // 收藏状态 - showPopup: false, + showPopUp: false, } }, components: {uniMask,validCode,uniPopup}, @@ -236,9 +241,10 @@ }) }, callPhone() { - console.log('电话联系') - // this.showPopup = true; - this.$refs.popup.open(); + this.showPopUp = true; + }, + closePopUp() { + this.showPopUp = false; }, // 获取收藏状态 getCollectStatus() { From 06b6fe414003af99d762ad116e3886c14ed04444 Mon Sep 17 00:00:00 2001 From: zxy <353513737@qq.com> Date: Wed, 21 Feb 2024 15:12:03 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E6=88=91=E7=9A=84=E7=94=B3=E8=AF=B7?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/companyList/companyList.vue | 2 +- components/companyList/sqList.vue | 225 +++++++++++++++++++++++++ pageMy/myProject/myProject.vue | 14 +- pages.json | 2 +- pages/index/index.vue | 2 +- pages/my/my.vue | 10 +- pages/projectInfo/projectInfo.vue | 2 +- vue.config.js | 4 +- 8 files changed, 243 insertions(+), 18 deletions(-) create mode 100644 components/companyList/sqList.vue diff --git a/components/companyList/companyList.vue b/components/companyList/companyList.vue index 4692711..270915f 100644 --- a/components/companyList/companyList.vue +++ b/components/companyList/companyList.vue @@ -7,7 +7,7 @@ - {{ companyitem.wage }}{{ wageUnit[companyitem.wageUnitCategory] }} + {{ companyitem.wage }} diff --git a/components/companyList/sqList.vue b/components/companyList/sqList.vue new file mode 100644 index 0000000..78f8671 --- /dev/null +++ b/components/companyList/sqList.vue @@ -0,0 +1,225 @@ + + + + + diff --git a/pageMy/myProject/myProject.vue b/pageMy/myProject/myProject.vue index 569bab0..9d19d2b 100644 --- a/pageMy/myProject/myProject.vue +++ b/pageMy/myProject/myProject.vue @@ -1,27 +1,27 @@