工单详情

This commit is contained in:
2025-03-20 09:03:10 +08:00
parent 7ba30d3157
commit 9237ad52e5
4 changed files with 155 additions and 9 deletions

View File

@@ -25,8 +25,8 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="合同编号" prop="contractNumber">
<el-select v-model="dataForm.contractNumber" placeholder="合同编号">
<el-form-item label="合同编号" prop="contractId">
<el-select v-model="dataForm.contractId" placeholder="合同编号">
<el-option
v-for="item in dictData[2]"
:key="item.value"
@@ -68,7 +68,7 @@
ticketsId: null,
carType: '',
errorType: '',
contractNumber: '',
contractId: '',
clientId: '',
description: '',
deptPhone: ''
@@ -105,8 +105,8 @@
if (data && data.code === 0) {
this.dataForm.carType = data.tickets.carType
this.dataForm.errorType = String(data.tickets.errorType)
this.dataForm.contractNumber = String(data.tickets.contractNumber)
this.dataForm.clientId = data.tickets.clientId
this.dataForm.contractId = String(data.tickets.contractId)
this.dataForm.clientId = String(data.tickets.clientId)
this.dataForm.description = data.tickets.description
this.dataForm.deptPhone = data.tickets.deptPhone
}