代理和推广
This commit is contained in:
parent
08d5592659
commit
a81b09fc23
@ -165,10 +165,8 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="出生年月:" prop="birthday">
|
<el-form-item label="出生年月:" prop="birthday">
|
||||||
<!-- <el-date-picker v-model="form.birthday" clearable type="date" value-format="YYYY-MM-DD" placeholder="请选择出生年月">
|
|
||||||
</el-date-picker> -->
|
|
||||||
|
|
||||||
<el-date-picker v-model="form.birthday" type="datetime" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出生年月" />
|
<el-date-picker v-model="form.birthday" type="date" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出生年月" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -240,7 +238,7 @@
|
|||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="签约日期" prop="signDate">
|
<el-form-item label="签约日期" prop="signDate">
|
||||||
<el-date-picker v-model="form.signDate" type="datetime" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择签约日期" />
|
<el-date-picker v-model="form.signDate" type="date" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择签约日期" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -416,7 +414,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="利润分成模板" prop="splitRatio">
|
<el-form-item label="利润分成模板" prop="splitRatio">
|
||||||
{{ fnall.filter((item) => item.id == tenantForm.splitRatio)[0].templateName }}
|
{{ fnall.filter((item) => item.id == tenantForm.splitRatio)[0]?.templateName }}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -432,7 +430,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="签约状态" prop="signStatus" align="left">
|
<el-form-item label="签约状态" prop="signStatus" align="left">
|
||||||
{{ signList[tenantForm.signStatus].label }}
|
{{ signList[tenantForm.signStatus]?.label }}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
@ -585,7 +583,7 @@ const initFormData: TenantForm = {
|
|||||||
// 其他附件
|
// 其他附件
|
||||||
otherAttachment: '',
|
otherAttachment: '',
|
||||||
// 签约状态
|
// 签约状态
|
||||||
signStatus: '1',
|
signStatus: '0',
|
||||||
type: 1
|
type: 1
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -655,7 +653,7 @@ const data = reactive<PageData<TenantForm, TenantQuery>>({
|
|||||||
// 其他附件
|
// 其他附件
|
||||||
otherAttachment: [{ required: true, message: '其他附件不能为空', trigger: 'blur' }],
|
otherAttachment: [{ required: true, message: '其他附件不能为空', trigger: 'blur' }],
|
||||||
// 签约状态
|
// 签约状态
|
||||||
// signStatus: [{ required: true, message: '签约状态不能为空', trigger: 'blur' }],
|
signStatus: [{ required: true, message: '签约状态不能为空', trigger: 'blur' }],
|
||||||
|
|
||||||
username: [
|
username: [
|
||||||
{ required: true, message: '用户名不能为空', trigger: 'blur' },
|
{ required: true, message: '用户名不能为空', trigger: 'blur' },
|
||||||
|
@ -135,12 +135,12 @@
|
|||||||
|
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="出生年月:" prop="birthday">
|
<el-form-item label="出生年月:" prop="birthday">
|
||||||
<el-date-picker v-model="form.birthday" type="datetime" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出生年月" />
|
<el-date-picker v-model="form.birthday" type="date" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择出生年月" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="入职时间:" prop="entryTime">
|
<el-form-item label="入职时间:" prop="entryTime">
|
||||||
<el-date-picker v-model="form.entryTime" type="datetime" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择入职时间" />
|
<el-date-picker v-model="form.entryTime" type="date" clearable value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择入职时间" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user