员工管理-员工信息、邀请员工、审核管理:各员工信息展示界面现住址/户籍所在地改为长文本组件
This commit is contained in:
parent
d3a391a2d7
commit
b7610aca50
|
|
@ -49,7 +49,7 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="户籍所在地" v-bind="validateInfos.idCardAddress"
|
||||
id="NuEmployeesAdvisoryInfoForm-idCardAddress" name="idCardAddress">
|
||||
<a-input v-model:value="formData.idCardAddress" placeholder="请输入住址" disabled ></a-input>
|
||||
<a-textarea v-model:value="formData.idCardAddress" placeholder="请输入住址" disabled :autosize="true"></a-textarea>
|
||||
<!-- {{ formData.idCardAddress }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="现住址" v-bind="validateInfos.currentAddress"
|
||||
id="NuEmployeesAdvisoryInfoForm-currentAddress" name="currentAddress">
|
||||
<a-input v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled ></a-input>
|
||||
<a-textarea v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled :autosize="true"></a-textarea>
|
||||
<!-- {{ formData.currentAddress }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="户籍所在地" v-bind="validateInfos.houseAddress" id="EmployeesApplyForm-houseAddress"
|
||||
name="houseAddress">
|
||||
<a-input v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled allow-clear :autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.houseAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="现住址" v-bind="validateInfos.currentAddress" id="EmployeesApplyForm-currentAddress"
|
||||
name="currentAddress">
|
||||
<a-input v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled allow-clear :autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.currentAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
|
|
@ -106,7 +106,8 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="户籍所在地" v-bind="validateInfos.houseAddress" id="EmployeesApplyForm-houseAddress"
|
||||
name="houseAddress">
|
||||
<a-input v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled allow-clear
|
||||
:autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.houseAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -145,7 +146,8 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="现住址" v-bind="validateInfos.currentAddress" id="EmployeesApplyForm-currentAddress"
|
||||
name="currentAddress">
|
||||
<a-input v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled allow-clear
|
||||
:autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.currentAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -265,11 +267,9 @@
|
|||
</div>
|
||||
</a-col>
|
||||
<a-col :span="8">
|
||||
<a-form-item label="审核状态" v-bind="validateInfos.status" id="EmployeesApplyForm-status"
|
||||
name="status">
|
||||
<a-form-item label="审核状态" v-bind="validateInfos.status" id="EmployeesApplyForm-status" name="status">
|
||||
<!-- <a-input v-model:value="formData.applyStatus" placeholder="请输入审核状态" ></a-input> -->
|
||||
<a-select v-model:value="formData.status" placeholder="请选择审核状态" style="width: 200px"
|
||||
:disabled="false">
|
||||
<a-select v-model:value="formData.status" placeholder="请选择审核状态" style="width: 200px" :disabled="false">
|
||||
<a-select-option value="2">审核通过</a-select-option>
|
||||
<a-select-option value="3">审核驳回</a-select-option>
|
||||
</a-select>
|
||||
|
|
@ -277,8 +277,9 @@
|
|||
</a-col>
|
||||
<a-col :span="16" v-show="formData.status == 3">
|
||||
<a-form-item label="驳回原因" v-bind="validateInfos.auditContent" id="EmployeesApplyForm-auditContent"
|
||||
name="auditContent">
|
||||
<a-textarea :maxlength="50" show-count v-model:value="formData.auditContent" placeholder="请输入驳回原因" rows="4"></a-textarea>
|
||||
name="auditContent">
|
||||
<a-textarea :maxlength="50" show-count v-model:value="formData.auditContent" placeholder="请输入驳回原因"
|
||||
rows="4"></a-textarea>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
|
|
|||
|
|
@ -136,8 +136,8 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="户籍所在地" v-bind="validateInfos.houseAddress"
|
||||
id="EmployeesApplyForm-houseAddress" name="houseAddress">
|
||||
<a-input v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled
|
||||
allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.houseAddress" placeholder="请输入户籍所在地" disabled
|
||||
allow-clear :autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.houseAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -178,8 +178,8 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="现住址" v-bind="validateInfos.currentAddress"
|
||||
id="EmployeesApplyForm-currentAddress" name="currentAddress">
|
||||
<a-input v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled
|
||||
allow-clear></a-input>
|
||||
<a-textarea v-model:value="formData.currentAddress" placeholder="请输入现住址" disabled
|
||||
allow-clear :autosize="true"></a-textarea>
|
||||
<!-- <span>{{ formData.currentAddress }}</span> -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
Loading…
Reference in New Issue