```
fix(invoice): 禁用员工工号字段编辑功能 - 移除员工工号输入框,改为只读显示 - 添加注释说明员工工号从用户账号自动获取 - 统一使用 span 标签显示员工工号信息 ```
This commit is contained in:
@@ -73,13 +73,8 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="employee-id-cell">
|
<td class="employee-id-cell">
|
||||||
<div class="input-container">
|
<div class="input-container">
|
||||||
<input
|
<!-- 员工工号字段不允许编辑,从用户账号自动获取 -->
|
||||||
v-if="item.isActive"
|
<span>{{ item.employeeId || '-' }}</span>
|
||||||
v-model="item.employeeId"
|
|
||||||
class="form-control"
|
|
||||||
placeholder="员工工号"
|
|
||||||
/>
|
|
||||||
<span v-else>{{ item.employeeId || '-' }}</span>
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="date-cell">
|
<td class="date-cell">
|
||||||
|
|||||||
Reference in New Issue
Block a user