张延森 hace 3 años
padre
commit
4ab7947f29
Se han modificado 2 ficheros con 14 adiciones y 13 borrados
  1. 3
    2
      src/pages/result/index.vue
  2. 11
    11
      src/pages/resumeWorkForm/index.vue

+ 3
- 2
src/pages/result/index.vue Ver fichero

@@ -3,9 +3,10 @@
3 3
     <div id="box">
4 4
       <Icon name="checked" color="#07c160" size="100" />
5 5
       <div>申请成功</div>
6
-      <Button id="btn" block type="primary" @click="goForm">
6
+      <div style="font-size: 0.9em">相关单位会尽快与您联系</div>
7
+      <!-- <Button id="btn" block type="primary" @click="goForm">
7 8
         继续填写
8
-      </Button>
9
+      </Button> -->
9 10
     </div>
10 11
   </div>
11 12
 </template>

+ 11
- 11
src/pages/resumeWorkForm/index.vue Ver fichero

@@ -14,17 +14,17 @@
14 14
           :rules="[{ required: true, message: '请选择企业' }]"
15 15
           @click="showPicker = true"
16 16
         />
17
-        <!-- <Popup v-model:show="showPicker" position="left" :style="{ height: '100%', width: '80%' }" >
17
+        <Popup v-model:show="showPicker" position="left" :style="{ height: '100%', width: '80%' }" >
18 18
           <org-picker v-model="formData.orgId" @change="onConfirm" />
19
-        </Popup> -->
20
-        <Popup v-model:show="showPicker" position="bottom"  >
19
+        </Popup>
20
+        <!-- <Popup v-model:show="showPicker" position="bottom"  >
21 21
           <Picker
22 22
             :columns="orgList"
23 23
             :columns-field-names="customFieldName"
24 24
             @confirm="onConfirm"
25 25
             @cancel="showPicker = false"
26 26
           />
27
-        </Popup>
27
+        </Popup> -->
28 28
         <Field
29 29
           v-model="formData.userName"
30 30
           name="userName"
@@ -137,13 +137,13 @@ const customFieldName = {
137 137
 }
138 138
 
139 139
 onMounted(() => {
140
-  getOrgList({ pageSize: 500 }).then((res) => {
141
-    orgList.value = res.records;
142
-    columns.value = res.records.map(item => item.orgName);
143
-  }).catch(e => {
144
-    Toast('系统错误请刷新重试');
145
-    console.log(e);
146
-  })
140
+  // getOrgList({ pageSize: 500 }).then((res) => {
141
+  //   orgList.value = res.records;
142
+  //   columns.value = res.records.map(item => item.orgName);
143
+  // }).catch(e => {
144
+  //   Toast('系统错误请刷新重试');
145
+  //   console.log(e);
146
+  // })
147 147
 });
148 148
 
149 149
 const onConfirm = (value) => {