Commit 6779e696 authored by 李明环(东信)'s avatar 李明环(东信)
parents e4fd572c dd428878
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
"pagePath": "pages/recommend/index", "pagePath": "pages/recommend/index",
"iconPath": "static/image/tabBar/home.png", "iconPath": "static/image/tabBar/home.png",
"selectedIconPath": "static/image/tabBar/homeActive.png", "selectedIconPath": "static/image/tabBar/homeActive.png",
"text": "首页" "text": "招聘"
}, },
{ {
"pagePath": "pages/policy/index", "pagePath": "pages/policy/index",
......
...@@ -447,7 +447,7 @@ getTreeListApi({ provinceName: "贵州省" }).then(res => { ...@@ -447,7 +447,7 @@ getTreeListApi({ provinceName: "贵州省" }).then(res => {
cityOpstion.value.push(res.data[0].children); cityOpstion.value.push(res.data[0].children);
}); });
getEnumWorkMode(); getEnumWorkMode();
positionList({ stutas: 3 }).then(res => { positionList({ status: 3 }).then(res => {
res.data = res.data.map(item => { res.data = res.data.map(item => {
item.workDic = EnumWorkMode.value.find(v => v.code == item.workMode).text; item.workDic = EnumWorkMode.value.find(v => v.code == item.workMode).text;
return item; return item;
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
</wd-col-picker> </wd-col-picker>
</formItem> </formItem>
<formItem title="详细地址" icon=""> <formItem title="详细地址" icon="">
<p>{{ params.location || "请选择公司所在地" }}</p> <p style="color: #77818f">{{ params.location || "请选择公司所在地" }}</p>
</formItem> </formItem>
<div class="textarea-wrap" v-if="[1].includes(pageStatus)"> <div class="textarea-wrap" v-if="[1].includes(pageStatus)">
<p class="label">公司介绍</p> <p class="label">公司介绍</p>
...@@ -130,6 +130,8 @@ const companyInfo = ref({}); ...@@ -130,6 +130,8 @@ const companyInfo = ref({});
function getCompanyInfoApiFn() { function getCompanyInfoApiFn() {
getCompanyInfoApi().then(async res => { getCompanyInfoApi().then(async res => {
companyInfo.value = res.data; companyInfo.value = res.data;
console.log("res.data", res.data);
Object.keys(params).forEach(key => { Object.keys(params).forEach(key => {
params[key] = res.data[key]; params[key] = res.data[key];
}); });
...@@ -143,10 +145,9 @@ function getCompanyInfoApiFn() { ...@@ -143,10 +145,9 @@ function getCompanyInfoApiFn() {
creditCode, creditCode,
cityCode, cityCode,
districtCode, districtCode,
provinceCode, provinceCode
companyName
} = res.data; } = res.data;
params.companyName = companyName; params.companyName = name;
params.introduction = introduction; params.introduction = introduction;
params.logoPath = logoPath; params.logoPath = logoPath;
params.creditCode = creditCode; params.creditCode = creditCode;
......
...@@ -140,7 +140,7 @@ function getCompanyInfoApiFn() { ...@@ -140,7 +140,7 @@ function getCompanyInfoApiFn() {
companyInfo = res.data; companyInfo = res.data;
status.value = res.data.status; status.value = res.data.status;
myLicensePath.value = res.data.licensePath; myLicensePath.value = res.data.licensePath;
companyName.value = res.data.companyName; companyName.value = res.data.name;
myCode.value = res.data.creditCode; myCode.value = res.data.creditCode;
myLicenseValidityPeriod.value = res.data.licenseValidityPeriod; myLicenseValidityPeriod.value = res.data.licenseValidityPeriod;
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment