维修配件 改为 更换配件清单

维修项目 改为 维修工时项目
This commit is contained in:
xiaofajia 2024-12-04 11:27:28 +08:00
parent 0d6bca2256
commit 2daf0c8745
3 changed files with 6 additions and 6 deletions

View File

@ -230,9 +230,9 @@ export default {
getLabelName() {
switch (this.itemType) {
case "project":
return "维修项目";
return "维修工时项目";
case "part":
return "维修配件";
return "更换配件清单";
case "other":
return "附加费用";
default:

View File

@ -148,9 +148,9 @@ export default {
getLabelName() {
switch (this.listType) {
case "project":
return "维修项目";
return "维修工时项目";
case "ware":
return "维修配件";
return "更换配件清单";
case "other":
return "附加费用";
default:

View File

@ -240,10 +240,10 @@
<el-button size="small" v-if="formData.ticketType === '02'" @click="formData.ticketType = '01'">B单</el-button>
</el-col>
</el-row>
<span style="font-size: 16px">维修项目</span>
<span style="font-size: 16px">维修工时项目</span>
<TicketItem item-type="project" :in-list-data="projectList" @tableData="projectData" ref="projectTable"
:coupon-list="couponList" @changeCoupon="changeCoupon"/>
<span style="font-size: 16px; margin:1rem 0" v-if="createTicketType">维修配件</span>
<span style="font-size: 16px; margin:1rem 0" v-if="createTicketType">更换配件清单</span>
<TicketItem v-if="createTicketType" :in-list-data="partList" item-type="part" @tableData="partData"
:coupon-list="couponList" @changeCoupon="changeCoupon"
ref="partTable"/>