|
@@ -21,6 +21,9 @@
|
|
<industryTypeCard :limit="1" :select="[query.industryId].filter(Boolean)" @handleClickIndustry="handleIndustry"></industryTypeCard>
|
|
<industryTypeCard :limit="1" :select="[query.industryId].filter(Boolean)" @handleClickIndustry="handleIndustry"></industryTypeCard>
|
|
</v-menu>
|
|
</v-menu>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #prepare="{ item }">
|
|
|
|
+ <v-checkbox v-model="item.value" label="筹建中(如果贵企业正在筹建,请勾选)" color="primary"></v-checkbox>
|
|
|
|
+ </template>
|
|
</CtForm>
|
|
</CtForm>
|
|
<div class="text-center">
|
|
<div class="text-center">
|
|
<v-btn color="primary" class="buttons mt-3 mb-10" @click.stop="handleSave">{{ $t('common.save') }}</v-btn>
|
|
<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) *',
|
|
label: '上班时间(示例:上午09:00 - 下午17:00) *',
|
|
rules: [v => !!v || '请填写上班时间']
|
|
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',
|
|
type: 'textarea',
|
|
key: 'introduce',
|
|
key: 'introduce',
|