@@ -405,16 +408,23 @@
客户经理
![]()
-
{{ managerInfo.workPhone || "-" }}
+
+
+ {{ managerInfo.name }}
+
+
+
{{ managerInfo.workPhone || "-" }}
+
+
-
+
- 企业详情
+ 企业详情
@@ -428,7 +438,6 @@
-
@@ -536,12 +545,13 @@ export default {
customServiceUrl: "", // 客服信息
from: null, // 来源
recordShow: false,
+ vocationalImgList: ["https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job1.png", "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job2.png", "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job3.png", "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job4.png", "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job5.png", "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job6.png"],
zhijiaoList: [
// 职教列表
{
id: 0,
vocationalName: "电气工程师(初级班)",
- logo:'https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job1.png',
+ logo: "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job1.png",
tuition: "6800元",
serviceCharge: "2000元/人",
salary: "7000-9000元/月",
@@ -594,7 +604,7 @@ export default {
{
id: 1,
vocationalName: "调试工程师(中级班)",
- logo:'https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job2.png',
+ logo: "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job2.png",
tuition: "11800元",
serviceCharge: "3000元/人",
salary: "8000-11000元/月",
@@ -649,10 +659,10 @@ export default {
{
id: 2,
vocationalName: "运营管理团队(高级班)",
- logo:'https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job3.png',
+ logo: "https://matripe-cms.oss-cn-beijing.aliyuncs.com/zhijiao/job3.png",
tuition: "19800元",
serviceCharge: "6500元/人",
- salary: "20万/年",
+ salary: "9000-11000元/月",
enterprise: "",
semester: "90天",
totalProfit: "8000元/人",
@@ -714,12 +724,12 @@ export default {
created() {
// console.log(this.$router.matcher.match());
- console.log('this.$route',this.$route); // 获取传过来的params数据
+ console.log("this.$route", this.$route); // 获取传过来的params数据
if (this.$route.query.type) {
this.from = this.$route.query.type;
- this.jobDetail = this.zhijiaoList.find((item)=>item.id == this.$route.query.id);
+ this.jobDetail = this.zhijiaoList.find((item) => item.id == this.$route.query.id);
this.skeletonshow = false;
- console.log(this.jobDetail);
+ console.log(this.jobDetail);
} else {
this.getJobDetail();
}
@@ -822,6 +832,7 @@ export default {
}
});
this.storeImage = [...storeImage, ...storeVideo];
+ console.log("this.storeImage", this.storeImage);
} else {
this.$message.warning("数据获取失败");
}
@@ -935,11 +946,19 @@ export default {
showImage(idx) {
var that = this;
console.log(that.storeImage);
- that.storeImage.forEach((item, index) => {
- if (that.isImg(item)) {
- that.imgList.push(item);
- }
- });
+ if (this.from == "vocational") {
+ that.vocationalImgList.forEach((item, index) => {
+ if (that.isImg(item)) {
+ that.imgList.push(item);
+ }
+ });
+ } else {
+ that.storeImage.forEach((item, index) => {
+ if (that.isImg(item)) {
+ that.imgList.push(item);
+ }
+ });
+ }
this.$viewerApi({
options: { initialViewIndex: idx },
@@ -972,8 +991,8 @@ export default {
toList() {
// 跳转到列表页
this.$router.push({
- name: "JobList",
- params: {
+ path: this.from == "vocational" ? "/list?type=vocational" : "/list?",
+ query: {
pagenum: this.currentPageNum,
},
});
@@ -1178,7 +1197,7 @@ export default {
}
.jobinfo {
margin-top: 12px;
- font-size: 18px;
+ font-size: 16px;
font-weight: 400;
text-align: left;
color: #999;
@@ -1211,7 +1230,7 @@ export default {
}
.jobpricemonth {
// margin-top: 16px;
- font-size: 18px;
+ font-size: 16px;
font-weight: 400;
text-align: left;
color: #666;
@@ -1618,16 +1637,16 @@ export default {
border-radius: 6px;
background-color: #fff;
text-align: center;
- p {
- position: absolute;
- width: 100%;
- font-size: 20px;
- color: #333;
- font-weight: 600;
- top: 75%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%);
- }
+ // p {
+ // position: absolute;
+ // width: 100%;
+ // font-size: 20px;
+ // color: #333;
+ // font-weight: 600;
+ // top: 75%;
+ // left: 50%;
+ // transform: translateX(-50%) translateY(-50%);
+ // }
}
.companyinfo {
overflow: hidden;
diff --git a/src/components/FirstJob/joblist.vue b/src/components/FirstJob/joblist.vue
index 935b556..ff418db 100644
--- a/src/components/FirstJob/joblist.vue
+++ b/src/components/FirstJob/joblist.vue
@@ -634,15 +634,16 @@
{{ item.vocationalName }}
- {{ item.district || "航空港区" }}
+ {{ item.district || "河南省 | 郑州市 | 16-35岁" }}
-
学费{{ item.tuition }}
+ | 课期{{ item.semester }}
@@ -666,7 +667,7 @@
type="primary"
class="jobDesp br4"
:style="{
- background:'#fff',
+ background: '#fff',
}"
>
更多
@@ -709,11 +710,13 @@