diff --git a/src/api/pms/device.js b/src/api/pms/device.js
index 5277189..e9e4347 100644
--- a/src/api/pms/device.js
+++ b/src/api/pms/device.js
@@ -30,6 +30,12 @@ export function getdeviceInfo() {
+
+
+
+
+
+
//获取设备信息
export function device(obj) {
return request({
@@ -39,6 +45,15 @@ export function device(obj) {
})
}
+//获取缝纫工作记录
+export function getSewingList(obj) {
+ return request({
+ url: '/pms/device/getSewingList',
+ method: 'get',
+ params: obj
+ })
+}
+
//获取裁片视觉检测工作记录
export function getOKOrNGList(obj) {
@@ -48,7 +63,31 @@ export function getOKOrNGList(obj) {
params: obj
})
}
+//获取缝纫,冲孔机工作记录
+export function abnormalShutdown(obj) {
+ return request({
+ url: '/pms/device/abnormalShutdown',
+ method: 'get',
+ params: obj
+ })
+}
+//获取平板扫描工作记录
+export function getScanList(obj) {
+ return request({
+ url: '/pms/device/getScanList',
+ method: 'get',
+ params: obj
+ })
+}
+//OEE
+export function oee(obj) {
+ return request({
+ url: '/pms/device/oee',
+ method: 'get',
+ params: obj
+ })
+}
diff --git a/src/lang/i18n-en-US.js b/src/lang/i18n-en-US.js
index ab812a2..83ad181 100644
--- a/src/lang/i18n-en-US.js
+++ b/src/lang/i18n-en-US.js
@@ -473,5 +473,23 @@ export default {
"本周": "The Week",
"本月": "The Month",
"故障": "Fault",
+ '停机中':'stop',
+ '运行中':'Running',
+ '待机中':'Waiting',
+ '故障中':'faulting',
+ '总产量':'Total Output',
+ '设备转速':'Device Speed',
+ '综合设备效率':'Comprehensive Device Efficiency',
+ '实时报警':'Real-time alarm',
+ '全部清除':'Clear all',
+ '忽略':'Ignore',
+ '暂无报警':'No alarm',
+ '可用率':'Availability',
+ '性能率':'Performance',
+ '机架号':'Rack Number',
+ '最后保养':'Last Maintenance',
+ '异常停机分类统计':'Exceptional Stop Classification',
+ '次':'times',
+ '报警':'Alarm',
}
}
\ No newline at end of file
diff --git a/src/lang/i18n-zh-CN.js b/src/lang/i18n-zh-CN.js
index 76ced08..f20401d 100644
--- a/src/lang/i18n-zh-CN.js
+++ b/src/lang/i18n-zh-CN.js
@@ -468,5 +468,23 @@ export default {
"本周":"本周",
"本月":"本月",
'故障':'故障',
+ '停机中':'停机中',
+ '运行中':'运行中',
+ '待机中':'待机中',
+ '故障中':'故障中',
+ '总产量':'总产量',
+ '设备转速':'设备转速',
+ '综合设备效率':'综合设备效率',
+ '实时报警':'实时报警',
+ '全部清除':'全部清除',
+ '忽略':'忽略',
+ '暂无报警':'暂无报警',
+ '可用率':'可用率',
+ '性能率':'性能率',
+ '机架号':'机架号',
+ '最后保养':'最后保养',
+ '异常停机分类统计':'异常停机分类统计',
+ '次':'次',
+ '报警':'报警',
}
}
\ No newline at end of file
diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue
index 2e8e9d7..e48034c 100644
--- a/src/layout/components/TagsView/index.vue
+++ b/src/layout/components/TagsView/index.vue
@@ -116,17 +116,18 @@ onMounted(() => {
display: flex;
justify-content: space-between;
align-items: center;
+ font-size: 12px;
.left-title {
margin-left: 10px;
- font-size: 20px;
+ font-size: 16px;
color: #fff;
font-weight: bold;
}
.right-items {
height: 48px;
- width: 60%;
+ width: 65%;
display: flex;
justify-content: flex-end;
align-items: center;
diff --git a/src/views/history/components/lbottom1.vue b/src/views/history/components/lbottom1.vue
new file mode 100644
index 0000000..ef646fb
--- /dev/null
+++ b/src/views/history/components/lbottom1.vue
@@ -0,0 +1,98 @@
+
+