|
|
@@ -103,7 +103,8 @@ export default {
|
|
|
}
|
|
|
if (options.companyName) {
|
|
|
this.companyName = decodeURIComponent(options.companyName);
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ else {
|
|
|
this.companyName = uni.getStorageSync('companyName')
|
|
|
}
|
|
|
this.descListener = uni.$on("jobDescUpdated", (data) => {
|
|
|
@@ -118,7 +119,8 @@ export default {
|
|
|
|
|
|
if (options.companyId) {
|
|
|
this.companyId = options.companyId;
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ else {
|
|
|
this.companyId = uni.getStorageSync('companyId')
|
|
|
}
|
|
|
if (options.status) {
|
|
|
@@ -354,10 +356,11 @@ export default {
|
|
|
}
|
|
|
// 提交成功后跳转到职位发布页面
|
|
|
setTimeout(() => {
|
|
|
+
|
|
|
uni.redirectTo({
|
|
|
- url: "/pages/my/jobPostingSecond?pid=" + pid + "&status=" + this
|
|
|
- .status + "&companyName=" + this.companyName + '&companyId=' +
|
|
|
- this.companyId + '&type=' + this.update + '&workData=' + JSON.stringify(this.jobInfo) + '&isBack=' + true
|
|
|
+ url: "/pages/my/jobPostingSecond?pid=" + pid + '&companyId=' +
|
|
|
+ this.companyId + "&status=" + this
|
|
|
+ .status + "&companyName=" + this.companyName + '&type=' + this.update + '&workData=' + JSON.stringify(this.jobInfo) + '&isBack=' + true
|
|
|
});
|
|
|
}, 1500);
|
|
|
} else {
|