Xiao_123 10 місяців тому
батько
коміт
3584d90f76

+ 24 - 0
src/views/recruit/enterprise/informationManagement/informationSettingsComponents/basicInfo.vue

@@ -21,6 +21,9 @@
           <industryTypeCard :limit="1" :select="[query.industryId].filter(Boolean)" @handleClickIndustry="handleIndustry"></industryTypeCard>
         </v-menu>
       </template>
+      <template #prepare="{ item }">
+        <v-checkbox v-model="item.value" label="筹建中(如果贵企业正在筹建,请勾选)" color="primary"></v-checkbox>
+      </template>
     </CtForm>
     <div class="text-center">
       <v-btn color="primary" class="buttons mt-3 mb-10" @click.stop="handleSave">{{ $t('common.save') }}</v-btn>
@@ -133,6 +136,27 @@ const formItems = ref({
       label: '上班时间(示例:上午09:00 - 下午17:00) *',
       rules: [v => !!v || '请填写上班时间']
     },
+    {
+      type: 'datePicker',
+      key: 'openTime',
+      value: null,
+      col: 6,
+      class: 'mb-3',
+      flexStyle: 'mr-3',
+      rules: [v => !!v || '请选择开业时间'],
+      options: {
+        type: 'date',
+        format: 'timestamp',
+        placeholder: '开业时间 *',
+        clearable: false
+      },
+    },
+    {
+      slotName: 'prepare',
+      key: 'prepare',
+      value: true,
+      col: 6
+    },
     {
       type: 'textarea',
       key: 'introduce',