Browse Source

修改样式

82064491C07A712AE32B5B57EC6EF136 10 months ago
parent
commit
e789b1dd63

+ 1 - 1
h5app/src/views/pages/company/detail.vue

@@ -160,7 +160,7 @@
             <ion-text>{{ dayjs(curCompanyPostInfo.startTime).format("YYYY-MM-DD")+"至"+dayjs(curCompanyPostInfo.endTime).format("YYYY-MM-DD") }}</ion-text>
           </div>
           <div class="form-detail">
-            <ion-label>招聘地点</ion-label>
+            <ion-label>工作地点</ion-label>
             <ion-text>{{ curCompanyPostInfo.jobPlace }}</ion-text>
           </div>
           <div class="form-detail">

+ 3 - 3
h5app/src/views/pages/company/editPost.vue

@@ -71,11 +71,11 @@
           </div>
           <div style="width: 100%;overflow: hidden;"></div>
           <div class="form-input">
-            <ion-label>招聘地点<span class="danger">*</span></ion-label>
-            <ion-textarea placeholder="请输入招聘地点" :rows="3" label-placement="stacked" :clear-input="true"
+            <ion-label>工作地点<span class="danger">*</span></ion-label>
+            <ion-textarea placeholder="请输入工作地点" :rows="3" label-placement="stacked" :clear-input="true"
                        v-model="dataModel.jobPlace" class="custom" style="border-bottom: 1px solid #fff2e8;">
             </ion-textarea>
-              <ion-note v-show="isCommit&&v$.dataModel.jobPlace.$error" class="danger" >请输入招聘地点</ion-note>
+              <ion-note v-show="isCommit&&v$.dataModel.jobPlace.$error" class="danger" >请输入工作地点</ion-note>
           </div>
         </div>
         <div class="bw-vue-form">

+ 3 - 3
h5app/src/views/pages/jobUserInfo/postEdit.vue

@@ -73,11 +73,11 @@
           </div>
           <div style="overflow: hidden;width:100%;"></div>
           <div class="form-input">
-            <ion-label>招聘地点<span class="danger">*</span></ion-label>
-            <ion-textarea placeholder="请输入招聘地点" :rows="3" label-placement="stacked" :clear-input="true"
+            <ion-label>工作地点<span class="danger">*</span></ion-label>
+            <ion-textarea placeholder="请输入工作地点" :rows="3" label-placement="stacked" :clear-input="true"
                        v-model="dataModel.jobPlace" class="custom" style="border-bottom: 1px solid #fff2e8;">
             </ion-textarea>
-<!--            <ion-note slot="error">请输入招聘地点</ion-note>-->
+<!--            <ion-note slot="error">请输入工作地点</ion-note>-->
           </div>
           <div class="form-title">
             其他信息

+ 1 - 1
h5app/src/views/pages/post/detail.vue

@@ -28,7 +28,7 @@
           <ion-text>{{ dayjs(dataModel.startTime).format("YYYY-MM-DD") }} - {{ dayjs(dataModel.endTime).format("YYYY-MM-DD") }}</ion-text>
         </div>
         <div class="form-detail">
-          <ion-label>招聘地点</ion-label>
+          <ion-label>工作地点</ion-label>
           <ion-text>{{ dataModel.jobPlace }}</ion-text>
         </div>
         <div class="form-detail">

+ 3 - 3
h5app/src/views/pages/post/edit.vue

@@ -75,12 +75,12 @@
             </ion-item>
           </div>
           <div class="form-detail">
-            <ion-label>招聘地点<span class="danger">*</span></ion-label>
+            <ion-label>工作地点<span class="danger">*</span></ion-label>
             <ion-item :class="[v$.dataModel.jobPlace.$error?'ion-invalid':'ion-valid']">
-              <ion-textarea placeholder="请输入招聘地点" :rows="3" label-placement="stacked" :clear-input="true"
+              <ion-textarea placeholder="请输入工作地点" :rows="3" label-placement="stacked" :clear-input="true"
                             v-model="dataModel.jobPlace" class="custom">
               </ion-textarea>
-              <ion-note slot="error">请输入招聘地点</ion-note>
+              <ion-note slot="error">请输入工作地点</ion-note>
             </ion-item>
           </div>
         </div>

+ 1 - 1
src/main/java/com/hz/employmentsite/services/impl/companyService/PostServiceImpl.java

@@ -394,7 +394,7 @@ public class PostServiceImpl implements PostService {
             if (stringUtils.IsNullOrEmpty(String.valueOf(item.startTime)) || item.startTime == null)
                 errorInfo += "请填写结束日期!";
             if (stringUtils.IsNullOrEmpty(item.jobPlace))
-                errorInfo += "请填写招聘地点!";
+                errorInfo += "请填写工作地点!";
 
             if (stringUtils.IsNullOrEmpty(item.workYearStr)) {
                 item.workYear = dicWorkYearDataList.stream().filter(it -> it.getName().equals(item.workYearStr.trim()))

+ 1 - 1
vue/src/views/companyService/post/detail.vue

@@ -10,7 +10,7 @@
         {{ postInfo.endTime ? dayjs(postInfo.endTime).format('YYYY-MM-DD') : '' }}
       </a-descriptions-item>
-      <a-descriptions-item :span="3" label="招聘地点">{{ postInfo.jobPlace }}</a-descriptions-item>
+      <a-descriptions-item :span="3" label="工作地点">{{ postInfo.jobPlace }}</a-descriptions-item>
       <a-descriptions-item label="联系人姓名">{{ postInfo.contactName }}</a-descriptions-item>
       <a-descriptions-item label="联系人电话">{{ postInfo.contactMobile }}</a-descriptions-item>
       <a-descriptions-item label="联系人邮箱">{{ postInfo.contactEmail }}</a-descriptions-item>

+ 2 - 2
vue/src/views/companyService/post/edit.vue

@@ -56,8 +56,8 @@
       </a-row>
       <a-row justify="start">
         <a-col  flex="1330px">
-          <a-form-item label="招聘地点" :label-col="{span:2}" name="jobPlace"
-                       :rules="[{ required: true, message: '请输入招聘地点' }]" >
+          <a-form-item label="工作地点" :label-col="{span:2}" name="jobPlace"
+                       :rules="[{ required: true, message: '请输入工作地点' }]" >
             <a-textarea v-model:value="dataModel.jobPlace" placeholder="" :rows="4"/>
           </a-form-item>
         </a-col>

+ 1 - 1
vue/src/views/companyService/post/index.vue

@@ -179,7 +179,7 @@ export default defineComponent({
         {cnName: '招聘人数', enName: 'recruitCount', width: 100},
         {cnName: '开始日期', enName: 'startTime', width: 100},
         {cnName: '结束日期', enName: 'endTime', width: 100},
-        {cnName: '招聘地点', enName: 'jobPlace', width: 100},
+        {cnName: '工作地点', enName: 'jobPlace', width: 100},
         {cnName: '工作年限', enName: 'workYear', width: 100},
         {cnName: '学历要求', enName: 'cultureLevelName', width: 100},
         {cnName: '岗位最高月薪', enName: 'maxSalary', width: 100},