diff --git a/api/device.js b/api/device.js
index 5a616ff..828b1b0 100644
--- a/api/device.js
+++ b/api/device.js
@@ -57,3 +57,10 @@ export function getSubList(params) {
params
})
}
+// 新增申领备件时获取备件列表
+export function getApplyDeviceList() {
+ return request({
+ url: '/eam/device-accounts/selectAll',
+ 'method': 'GET'
+ })
+}
\ No newline at end of file
diff --git a/api/mold.js b/api/mold.js
index c6254a3..c5ddb6c 100644
--- a/api/mold.js
+++ b/api/mold.js
@@ -23,3 +23,10 @@ export function moldList(params) {
params
})
}
+// 新增申领备件时获取模具列表
+export function getApplyMoldList() {
+ return request({
+ url: '/eam/item-accounts/selectAll',
+ 'method': 'GET'
+ })
+}
diff --git a/api/spareParts.js b/api/spareParts.js
index 9baa334..4c1d011 100644
--- a/api/spareParts.js
+++ b/api/spareParts.js
@@ -1,5 +1,12 @@
import request from '@/utils/request'
-
+// 获取tabs备件列表
+export function getSparePartsPage(params) {
+ return request({
+ url: '/eam/item/getAppPage',
+ 'method': 'GET',
+ params
+ })
+}
// 获取备件列表
export function getSparePartsList(params) {
return request({
@@ -8,3 +15,18 @@ export function getSparePartsList(params) {
params
})
}
+// 新增申领备件时获取备件列表
+export function getApplySparePartsList() {
+ return request({
+ url: '/eam/item/getApplyList',
+ 'method': 'GET'
+ })
+}
+
+// 新增备件维修获取备件列表
+export function getServiceSparePartsList() {
+ return request({
+ url: '/eam/item/getItemMaintainList',
+ 'method': 'GET'
+ })
+}
\ No newline at end of file
diff --git a/api/sparePartsApplication.js b/api/sparePartsApplication.js
new file mode 100644
index 0000000..a27074d
--- /dev/null
+++ b/api/sparePartsApplication.js
@@ -0,0 +1,32 @@
+import request from '@/utils/request'
+
+// 备件领用列表
+export function sparePartsApplicationPage(params) {
+ return request({
+ url: '/eam/item-apply-main/getAppPage',
+ 'method': 'GET',
+ params
+ })
+}
+// 领用备件
+export function sparePartsApplicationCreate(data) {
+ return request({
+ url: '/eam/item-apply-main/create',
+ 'method': 'POST',
+ data
+ })
+}
+// 撤回领用备件
+export function sparePartsApplicationCancle(id) {
+ return request({
+ url: '/eam/item-apply-main/backout?id=' + id,
+ 'method': 'GET',
+ })
+}
+// 领用备件详情
+export function sparePartsApplicationDetail(number) {
+ return request({
+ url: '/eam/item-apply-main/appGetByNumber?number=' + number,
+ 'method': 'GET',
+ })
+}
\ No newline at end of file
diff --git a/api/sparePartsServiceWorkOrderList.js b/api/sparePartsServiceWorkOrderList.js
new file mode 100644
index 0000000..84578ad
--- /dev/null
+++ b/api/sparePartsServiceWorkOrderList.js
@@ -0,0 +1,10 @@
+import request from '@/utils/request'
+
+// 领用备件
+export function sparePartsServiceWorkOrderListCreate(data) {
+ return request({
+ url: '/eam/item-maintenance/create',
+ 'method': 'POST',
+ data
+ })
+}
diff --git a/api/spotCheckOrder.js b/api/spotCheckOrder.js
index 9f36f77..02d1278 100644
--- a/api/spotCheckOrder.js
+++ b/api/spotCheckOrder.js
@@ -17,7 +17,7 @@ export function spotCheckOrderUpdate(data) {
data
})
}
-// 报修列表
+// 工单列表
export function spotCheckOrderPage(params) {
return request({
url: '/eam/device-spot-inspection-record-main/getAppPage',
diff --git a/api/upkeepOrder.js b/api/upkeepOrder.js
index 1449ee7..cf7cbb3 100644
--- a/api/upkeepOrder.js
+++ b/api/upkeepOrder.js
@@ -17,7 +17,7 @@ export function upkeepOrderUpdate(data) {
data
})
}
-// 报修列表
+// 工单列表
export function upkeepOrderPage(params) {
return request({
url: '/eam/device-maintain-order-main/getAppPage',
diff --git a/components/form/index.vue b/components/form/index.vue
index 4920a8e..dc78e5a 100644
--- a/components/form/index.vue
+++ b/components/form/index.vue
@@ -273,11 +273,11 @@
-
-
\ No newline at end of file
diff --git a/components/sparePartsCard/index.vue b/components/sparePartsCard/index.vue
deleted file mode 100644
index 33a3eca..0000000
--- a/components/sparePartsCard/index.vue
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
- *{{subForm.formLabel}}
-
-
-
-
-
-
- {{item.name}}
-
-
-
-
-
-
- {{cur.label}}:{{item[cur.field]}}
-
-
-
-
-
-
-
-
-
- 添加
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 2c468ee..69edb03 100644
--- a/pages.json
+++ b/pages.json
@@ -76,9 +76,9 @@
"navigationBarTextStyle": "white"
}
},{
- "path": "pages/repairOrder/myRepairOrder",
+ "path": "pages/repairOrder/myOrder",
"style": {
- "navigationBarTitleText": "维修工单",
+ "navigationBarTitleText": "我的维修工单",
"navigationStyle": "custom"
}
},{
@@ -143,9 +143,9 @@
"navigationBarTextStyle": "white"
}
},{
- "path": "pages/spotCheckOrder/index",
+ "path": "pages/upkeepOrder/myOrder",
"style": {
- "navigationBarTitleText": "点检工单",
+ "navigationBarTitleText": "我的保养工单",
"navigationStyle": "custom"
}
},{
@@ -156,23 +156,43 @@
"navigationBarTextStyle": "white"
}
},{
- "path": "pages/spotCheckOrder/detail",
+ "path": "pages/spotCheckOrder/myOrder",
+ "style": {
+ "navigationBarTitleText": "我的点检工单",
+ "navigationStyle": "custom"
+ }
+ },{
+ "path": "pages/mine/changePassword",
+ "style": {
+ "navigationBarTitleText": "修改密码",
+ "navigationBarBackgroundColor": "#409eff",
+ "navigationBarTextStyle": "white"
+ }
+ },{
+ "path": "pages/sparePartsApplication/index",
"style": {
- "navigationBarTitleText": "点检工单详情",
+ "navigationBarTitleText": "领用申请",
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "white"
+ }
+ },{
+ "path": "pages/sparePartsApplication/addForm",
+ "style": {
+ "navigationBarTitleText": "领用备件",
"navigationBarBackgroundColor": "#409eff",
"navigationBarTextStyle": "white"
}
},{
- "path": "pages/spotCheckOrder/addServiceRecord",
+ "path": "pages/sparePartsApplication/detail",
"style": {
- "navigationBarTitleText": "添加点检内容",
+ "navigationBarTitleText": "详情",
"navigationBarBackgroundColor": "#409eff",
"navigationBarTextStyle": "white"
}
},{
- "path": "pages/mine/changePassword",
+ "path": "pages/sparePartsServiceWorkOrderList/addForm",
"style": {
- "navigationBarTitleText": "修改密码",
+ "navigationBarTitleText": "添加备件维修工单",
"navigationBarBackgroundColor": "#409eff",
"navigationBarTextStyle": "white"
}
diff --git a/pages/deviceReport/addForm.vue b/pages/deviceReport/addForm.vue
index 04c6f43..28f23ea 100644
--- a/pages/deviceReport/addForm.vue
+++ b/pages/deviceReport/addForm.vue
@@ -157,7 +157,6 @@
},
// 重置
reset() {
- console.log('表单数据信息1:', this.data);
this.form = {}
},
selectFormat(val, array) {
@@ -177,11 +176,7 @@
},
// 单列模式点击确定之后
chooseSingleColumn(e) {
- console.log(e[0])
this.form[this.field] = e[0].value
- // if (this.field == 'receiverType') {
- // this.type = this.form[this.field]
- // }
this.singleColumnShow = false
this.$emit('singleColumn', this.field, this.form[this.field])
this.$forceUpdate()
diff --git a/pages/deviceReport/index.vue b/pages/deviceReport/index.vue
index 2cd45d7..2dac7c3 100644
--- a/pages/deviceReport/index.vue
+++ b/pages/deviceReport/index.vue
@@ -75,11 +75,11 @@
this.$tab.navigateTo(`/pages/deviceReport/addForm?type=${this.params.type}`)
},
// 获取设备保修列表
- getList() {
+ async getList() {
if (this.status == 'nomore') return;
this.status = 'loading';
this.$modal.loading('加载中')
- deviceApi.deviceRepairPage(this.params).then((res) => {
+ await deviceApi.deviceRepairPage(this.params).then((res) => {
this.$modal.closeLoading()
if (res.data.list.length > 0) {
this.list = this.list.concat(res.data.list);
@@ -94,12 +94,13 @@
cancle(item) {
this.$modal.confirm('确定撤销报修吗?').then(() => {
this.$modal.loading('加载中')
- deviceApi.rejected(item.id).then((res) => {
+ deviceApi.rejected(item.id).then(async (res) => {
this.$modal.closeLoading()
this.params.pageNo = 1
this.list = []
this.status = 'loadmore'
- this.getList()
+ await this.getList()
+ this.$modal.showLoading('撤销成功')
})
})
diff --git a/pages/deviceReport/myDeviceReport.vue b/pages/deviceReport/myDeviceReport.vue
index 3a0ce91..e1b0892 100644
--- a/pages/deviceReport/myDeviceReport.vue
+++ b/pages/deviceReport/myDeviceReport.vue
@@ -4,7 +4,7 @@
-
+
@@ -12,25 +12,26 @@
{{item.describes}}
- 2023-12-12 08:00:00
+
+ {{`${$time.formatDate(item.createTime)}`}}
报修单号:{{item.number}}
- 设备编号:{{item.deviceNumber}}
+ {{`${params.type=='DEVICE'?'设备' : '模具'}`}}编号:{{item.deviceNumber}}
- 设备名称:{{item.name}}
+ {{`${params.type=='DEVICE'?'设备' : '模具'}`}}名称:{{item.name}}
所属厂区:{{item.factoryAreaName}}
-
+
-
+
点检工单
@@ -111,7 +111,7 @@
-
+
维修工单
diff --git a/pages/mine/index.vue b/pages/mine/index.vue
index bfa046a..f9667ee 100644
--- a/pages/mine/index.vue
+++ b/pages/mine/index.vue
@@ -36,12 +36,12 @@
我的维修
-
+
我的保养
-
+
巡检点检
@@ -117,7 +117,13 @@
this.$tab.navigateTo('/pages/deviceReport/myDeviceReport')
},
handleRepairOrder() {
- this.$tab.navigateTo('/pages/repairOrder/myRepairOrder')
+ this.$tab.navigateTo('/pages/repairOrder/myOrder')
+ },
+ handleUpkeepOrder() {
+ this.$tab.navigateTo('/pages/upkeepOrder/myOrder')
+ },
+ handleSpotCheckOrder() {
+ this.$tab.navigateTo('/pages/spotCheckOrder/myOrder')
},
handleLogout() {
this.$modal.confirm('确定注销并退出系统吗?').then(() => {
diff --git a/pages/overhaulOrder/detail.vue b/pages/overhaulOrder/detail.vue
index 2528f84..03f7776 100644
--- a/pages/overhaulOrder/detail.vue
+++ b/pages/overhaulOrder/detail.vue
@@ -131,16 +131,10 @@
-
-
\ No newline at end of file
diff --git a/pages/spareParts/index.vue b/pages/spareParts/index.vue
index 1ca39dd..c9c716f 100644
--- a/pages/spareParts/index.vue
+++ b/pages/spareParts/index.vue
@@ -1,10 +1,11 @@
-
+
-
-
+
+
@@ -14,24 +15,26 @@
- 备件025
+ {{item.name}}
- 备件编码:SB52225456
+ 备件编码:{{item.number}}
- 规格型号:SB52225456
-
-
- 总库存:25
+ 总库存:{{item.qty}}
+
+
+
+
@@ -67,8 +111,9 @@
display: flex;
align-items: center;
- .text{
+ .text {
margin-left: 20rpx;
+
.title {
font-size: 32rpx;
font-weight: bold;
@@ -84,11 +129,12 @@
font-size: 28rpx;
margin-top: 6rpx;
color: #acacac;
- }
+ }
}
}
}
- .image-error{
+
+ .image-error {
text-align: center;
}
\ No newline at end of file
diff --git a/pages/sparePartsApplication/addForm.vue b/pages/sparePartsApplication/addForm.vue
index 291be32..95a0b40 100644
--- a/pages/sparePartsApplication/addForm.vue
+++ b/pages/sparePartsApplication/addForm.vue
@@ -1,183 +1,355 @@
-
+
-
-
-
+
+
+
+
+
+
+
+ *申请备件
+
+
+
+
+
+ {{item.name}}
+
+
+
+
+
+ 类型:{{`${item.type=='DEVICE'?'设备' : '模具'}`}}
+
+
+
+
+ {{`${item.type=='DEVICE'?'设备' : '模具'}`}}:{{item.deviceName}}
+
+
+
+
+ 是否以旧换新:{{item.isRadeIn=='TRUE'?'是' :'否'}}
+
+
+
+
+ 库存:{{item.currentQty}}
+
+
+
+
+ 数量:{{item.qty}}
+
+
+
+
+
+
+
+ 添加备件
+
+
+
+
@@ -186,42 +358,15 @@
.add-form-container {
min-height: calc(100vh - 140rpx);
background: white;
- padding: 0px 30rpx 140rpx;
+ padding: 0px 0rpx 140rpx;
}
- .list {
- padding-bottom: 20rpx;
-
- .item {
- margin-top: 20rpx;
- background: white;
- padding: 30rpx;
- display: flex;
- align-items: center;
-
- image {
- width: 160rpx;
- height: 160rpx;
- margin-right: 20rpx;
- }
-
- .title {
- font-size: 32rpx;
- font-weight: bold;
- }
-
- .dec1 {
- font-size: 28rpx;
- margin-top: 16rpx;
- color: #acacac;
- }
+ .u-form-item {
+ padding: 20rpx 30rpx;
+ }
- .dec2 {
- font-size: 28rpx;
- margin-top: 6rpx;
- color: #acacac;
- }
- }
+ .disabled {
+ background: #f5f5f5;
}
.footer {
@@ -229,15 +374,12 @@
bottom: 0px;
left: 0px;
width: 100%;
- background: white;
+ z-index: 22;
}
.btns {
display: flex;
- padding: 20rpx;
- box-shadow: 0px -2rpx 20rpx rgba(0, 0, 0, 0.1);
-
button {
flex: 1;
@@ -246,13 +388,101 @@
.sure {
background: #409eff;
color: white;
- border-radius: 8rpx;
+ border-radius: 0px;
&::after {
border: 1px solid #409eff;
border-radius: 0px;
}
}
+
+ .reset {
+ background: #F5F5F5;
+ border-radius: 0px;
+
+ &::after {
+ border-radius: 0px;
+ }
+ }
+ }
+
+ .right-button {
+ background: #409eff;
+ color: white;
+ padding: 0rpx 30rpx;
+ border-radius: 16rpx;
+ text-align: center;
+ font-size: 28rpx;
+ }
+
+ .select {
+ display: flex;
+ align-items: center;
+ height: 72rpx;
+ width: 100%;
+
+ .input {
+ flex: 1;
+ font-size: 28rpx;
+ color: #000000;
+ }
+
+ .placeholder {
+ flex: 1;
+ font-size: 28rpx;
+ color: rgb(192, 196, 204);
+
+ }
+ }
+
+ .title {
+ padding: 32rpx 0rpx;
+ position: relative;
+
+ span {
+ position: absolute;
+ left: -16rpx;
+ color: #fa3534;
+ top: 19px;
+ }
+ }
+
+ .list {
+ padding: 0rpx 30rpx;
+ .item {
+ display: flex;
+ margin-bottom: 20rpx;
+
+ .item-box {
+ background: #F5F5F5;
+ border-radius: 12rpx;
+ flex: 1;
+ width: 0rpx;
+ }
+
+ .spare-title {
+ padding: 20rpx 30rpx;
+ border-bottom: 1px solid #e4e4e4;
+
+ .title-txt {
+ color: #409eff;
+ font-size: 30rpx;
+ font-weight: bold;
+ }
+ }
+
+ .dec {
+ color: #9c9c9c;
+ padding: 20rpx 30rpx 20rpx;
+ }
+
+ }
+ }
+
+ .add-btn {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
}
.popup-title {
@@ -260,24 +490,31 @@
font-size: 32rpx;
font-weight: bold;
color: #409eff;
- padding: 30rpx
+ padding: 30rpx 30rpx 0px
}
.popup {
width: 600rpx;
- padding: 0rpx 60rpx 0rpx;
-
+ padding: 30rpx 0rpx 30rpx;
+
}
- .popup-footer{
+
+ .popup-footer {
display: flex;
border-top: 1px solid #e4e4e4;
- view{
+
+ view {
line-height: 100rpx;
flex: 1;
text-align: center;
- &.sure{
+
+ &.sure {
color: #409eff;
}
}
}
+
+ ::v-deep .u-checkbox-group {
+ display: grid !important;
+ }
\ No newline at end of file
diff --git a/pages/sparePartsApplication/detail.vue b/pages/sparePartsApplication/detail.vue
new file mode 100644
index 0000000..e683784
--- /dev/null
+++ b/pages/sparePartsApplication/detail.vue
@@ -0,0 +1,210 @@
+
+
+
+
+
+ 备件申领工单
+
+
+
+ 申请主题:
+ {{data.name}}
+
+
+ 申请单号:
+ {{data.number}}
+
+
+ 申请备件:
+
+
+
+ 备件名称:{{cur.itemName}}
+
+
+ 类型:{{cur.type == 'type'?'设备' :'模具'}}
+
+
+ {{cur.type == 'type'?'设备' :'模具'}}名称:{{cur.name}}
+
+
+ 是否以旧换新:{{cur.isRadeIn == 'TRUE'?'是' :'否'}}
+
+
+ 数量:{{cur.qty}}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/sparePartsApplication/index.vue b/pages/sparePartsApplication/index.vue
index f15fb56..0ad49cc 100644
--- a/pages/sparePartsApplication/index.vue
+++ b/pages/sparePartsApplication/index.vue
@@ -7,29 +7,43 @@
-
+
-
+
- {{item.title}}
+ {{item.name}}
-
- 2023-12-12 08:00:00
+
+ {{`${$time.formatDate(item.createTime)}`}}
-
- {{cur.label}}:{{item[cur.field]}}
+
+ 申请单号:{{item.number}}
-
+
+ 申 请 人:{{item.applyName}}
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ 撤回
+
@@ -38,56 +52,16 @@
\ No newline at end of file
diff --git a/pages/sparePartsServiceWorkOrderList/addForm.vue b/pages/sparePartsServiceWorkOrderList/addForm.vue
index e0eb165..cd15b50 100644
--- a/pages/sparePartsServiceWorkOrderList/addForm.vue
+++ b/pages/sparePartsServiceWorkOrderList/addForm.vue
@@ -1,182 +1,168 @@
-
-
-
+
+
+
+
+
+
+ {{selectFormat(form.itemNumber,sparePartsList)}}
+
+
+ 请选择备件
+
+
+
+
+
+
+
+
+
+
+ {{item.label}}
+
+
+
+
+
+
+
@@ -258,4 +244,33 @@
}
}
}
+
+ .right-button {
+ background: #409eff;
+ color: white;
+ padding: 0rpx 30rpx;
+ border-radius: 16rpx;
+ text-align: center;
+ font-size: 28rpx;
+ }
+
+ .select {
+ display: flex;
+ align-items: center;
+ height: 72rpx;
+ width: 100%;
+
+ .input {
+ flex: 1;
+ font-size: 28rpx;
+ color: #000000;
+ }
+
+ .placeholder {
+ flex: 1;
+ font-size: 28rpx;
+ color: rgb(192, 196, 204);
+
+ }
+ }
\ No newline at end of file
diff --git a/pages/sparePartsServiceWorkOrderList/index.vue b/pages/sparePartsServiceWorkOrderList/index.vue
deleted file mode 100644
index 8fc548e..0000000
--- a/pages/sparePartsServiceWorkOrderList/index.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/sparePartsServiceWorkOrderList/screen.vue b/pages/sparePartsServiceWorkOrderList/screen.vue
deleted file mode 100644
index 1f60eb1..0000000
--- a/pages/sparePartsServiceWorkOrderList/screen.vue
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/spotCheckOrder/addServiceRecord.vue b/pages/spotCheckOrder/addServiceRecord.vue
deleted file mode 100644
index 5494dd0..0000000
--- a/pages/spotCheckOrder/addServiceRecord.vue
+++ /dev/null
@@ -1,629 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{selectFormatCheck(form.chargePeoples,selecUserList)}}
-
-
- 请选择维修人员
-
-
-
-
-
-
-
- {{selectFormat(form.status,jxDetailsStatus)}}
-
-
- {{`请选择完成情况`}}
-
-
-
-
-
-
-
- {{formatDate}}
-
-
- {{`请选择完成时间`}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- *备件
-
-
-
-
-
- {{item.name}}
-
-
-
-
-
-
- 数量:{{item.qty}}
-
-
-
-
-
-
-
-
- 添加备件
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/spotCheckOrder/detail.vue b/pages/spotCheckOrder/detail.vue
deleted file mode 100644
index acfb3da..0000000
--- a/pages/spotCheckOrder/detail.vue
+++ /dev/null
@@ -1,487 +0,0 @@
-
-
-
-
-
- 检修工单
-
-
-
- 工单单号:
- {{data.number}}
-
-
- 维修工单:
- {{data.maintenanceNumber}}
-
-
- 故障类型:
- {{data.faultTypeName}}
-
-
- 维修工:
- {{data.maintenance}}
-
-
-
-
-
-
-
-
-
-
-
- {{changeItem.name}}
-
-
-
- 设备编号:
- {{deviceInfo.number}}
-
-
- 设备名称:
- {{deviceInfo.name}}
-
-
- 所属厂区:
- {{deviceInfo.factoryAreaName}}
-
-
- 设备类型:
- {{deviceInfo.typeName}}
-
-
-
-
-
-
-
- {{item.name}}
-
-
-
-
- 预估人数:
- {{item.peoples}}人
-
-
- 预估分钟:
- {{item.estimatedMinutes}}分钟
-
-
- 实际分钟:
- {{item.actualMinutes}}分钟
-
-
- 责任人:
- {{item.chargePeoplesName}}
-
-
- 完成情况:
- {{item.status==0?'完成':'未完成'}}
-
-
- 完成时间:
- {{$time.formatDate(item.completionTime)}}
-
-
- 工程师确认:
- {{item.engineer}}
-
-
- 未完成原因:
- {{item.uncompleted}}
-
-
- 备件:
-
-
-
- {{cur.name}}
-
-
- 备件编号:{{cur.number}}
-
-
- 数量:{{cur.qty}}
-
-
-
-
-
-
- 添加检修内容
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/spotCheckOrder/myRepairOrder.vue b/pages/spotCheckOrder/myOrder.vue
similarity index 56%
rename from pages/spotCheckOrder/myRepairOrder.vue
rename to pages/spotCheckOrder/myOrder.vue
index 13abc12..9bc3bee 100644
--- a/pages/spotCheckOrder/myRepairOrder.vue
+++ b/pages/spotCheckOrder/myOrder.vue
@@ -1,61 +1,58 @@
-
+
+ title="点检工单">
-
-
-
-
- {{item.describes}}
+
+
+
+
+ {{item.describes}}
+
+
+
+
+
+
+
-
- 2023-12-12 08:00:00
+
+ 点检单号:{{item.number}}
+
+
+ {{`${item.type=='DEVICE'?'设备' : '模具'}`}}编号:{{item.deviceNumber}}
+
+
+ {{`${item.type=='DEVICE'?'设备' : '模具'}`}}名称:{{item.name}}
+
+
+ 班次:{{item.classesName}}
-
-
- 报修单号:{{item.number}}
-
-
- 设备编号:{{item.deviceNumber}}
-
-
- 设备名称:{{item.name}}
-
-
- 所属厂区:{{item.factoryAreaName}}
-
-
-
-
- 撤销
+
+ {{`${$time.formatDate(item.createTime)}`}}
-
+
-
-
-
\ No newline at end of file