diff --git a/api/upload.js b/api/upload.js
index 7ac7feb..ce5d573 100644
--- a/api/upload.js
+++ b/api/upload.js
@@ -33,8 +33,13 @@ export async function uploadFile(file) {
'Authorization': `Basic ${Base64.encode(`${website.clientId}:${website.clientSecret}`)}`,
}
header[website.tokenName] = "bearer " + token
+ // 馆陶替换url
+ let url = `/api/jobslink-api/resource/file/save?bussinessType=5`
+ if (url.startsWith('/api')) {
+ url = url.replace(/^\/api/, '/api/gt');
+ }
uni.uploadFile({
- url: `${baseUrl}/api/jobslink-api/resource/file/save?bussinessType=5`,
+ url: baseUrl + url,
header,
filePath: file.url,
// formData: formdata,
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 02e1d1c..40c98a1 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -624,7 +624,7 @@ export default {
}
.home_logo {
- background: url(@/static/img/index/inLogo.png) no-repeat center center;
+ background: url(@/static/img/index/inLogo3.png) no-repeat center center;
background-size: cover;
height: 76rpx;
width: 560rpx;
diff --git a/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue b/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
index 93f16b8..f2070ab 100644
--- a/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
+++ b/pages/recruit/subPage/enterpriceCertification/enterpriceCertification.vue
@@ -1,310 +1,364 @@
-
-
-
-
-
- 认证信息
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 联系人信息
-
-
-
-
-
-
-
-
-
- 证件资料
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+ 认证信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 联系人信息
+
+
+
+
+
+
+
+
+
+ 证件资料
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue b/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
index 0c56dde..64a1d72 100644
--- a/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
+++ b/pages/recruit/subPage/enterpriceCertification/uploadIdNumber.vue
@@ -1,77 +1,86 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/recruit/subPage/task.vue b/pages/recruit/subPage/task.vue
index 7078e02..5a521d3 100644
--- a/pages/recruit/subPage/task.vue
+++ b/pages/recruit/subPage/task.vue
@@ -4,35 +4,86 @@
- 岗位信息
+ 岗位信息
-
-
+
+
-
-
+
+
- 岗位要求
+ 岗位要求
-
-
+
-
+
-
-
+
+
@@ -44,76 +95,178 @@
border="none">
-->
-
-
+
+
-
-
+
+
-
+ count
+ height="100"
+ maxlength="200"
+ >
- 人员要求
+ 人员要求
-
-
+
+
-
-
+
+
-
-
+
+
- 企业信息
+ 企业信息
-
+
-
+
-
+
-
+
-
+
-
+
@@ -125,16 +278,36 @@
-
-
-
+
+
-
- {{info.address || '请选择'}}
+
+ {{ info.address || '请选择' }}
@@ -151,718 +324,735 @@
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
-
+
\ No newline at end of file
+.addressinfo {
+ width: 100%;
+ height: fit-content;
+ min-height: 21px;
+}
+
diff --git a/pages/recruit/subPage/work.vue b/pages/recruit/subPage/work.vue
index 0fda1eb..0e196ea 100644
--- a/pages/recruit/subPage/work.vue
+++ b/pages/recruit/subPage/work.vue
@@ -308,7 +308,7 @@
{{ info.address || '请选择' }}
diff --git a/untils/AxiosUtils.js b/untils/AxiosUtils.js
index 6880398..3313885 100644
--- a/untils/AxiosUtils.js
+++ b/untils/AxiosUtils.js
@@ -86,6 +86,10 @@ async function DoAjax(options, config = {}) {
if (baseUrl) {
options.url = baseUrl + options.url
}
+ // 馆陶替换url
+ if (options.url.startsWith('/api')) {
+ options.url = options.url.replace(/^\/api/, '/api/gt');
+ }
options = Object.assign({}, options, {
header
});