|
@@ -74,6 +74,25 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="产业类型" prop="industry_type">
|
|
|
|
+ <el-input size="large" clearable v-model="form.industry_type" placeholder="请输入产业类型" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="工作类型" prop="work_type">
|
|
|
|
+ <el-input size="large" clearable v-model="form.work_type" placeholder="请输入工作类型" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <el-form-item label="所属产业" prop="industry">
|
|
|
|
+ <el-checkbox-group v-model="form.industry">
|
|
|
|
+ <el-checkbox v-for="(item, index) in plateList" :key="index" :value="item.title">{{ item.title }}</el-checkbox>
|
|
|
|
+ </el-checkbox-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="简介" prop="brief">
|
|
<el-form-item label="简介" prop="brief">
|
|
<el-input size="large" v-model="form.brief" :autosize="{ minRows: 2, maxRows: 4 }" type="textarea" placeholder="请输入简介" />
|
|
<el-input size="large" v-model="form.brief" :autosize="{ minRows: 2, maxRows: 4 }" type="textarea" placeholder="请输入简介" />
|
|
@@ -99,6 +118,8 @@ const ruleFormRef = ref()
|
|
const fieldList = inject('fieldList')
|
|
const fieldList = inject('fieldList')
|
|
const educationList = inject('educationList')
|
|
const educationList = inject('educationList')
|
|
const cityList = inject('cityList')
|
|
const cityList = inject('cityList')
|
|
|
|
+const plateList = inject('plateList')
|
|
|
|
+
|
|
const isUseList = inject('isUseList')
|
|
const isUseList = inject('isUseList')
|
|
const cardTypeList = inject('cardTypeList')
|
|
const cardTypeList = inject('cardTypeList')
|
|
// 接口
|
|
// 接口
|