-
-
-
-
-
- 系统:{{ data.sys.os }}
-
-
- IP:{{ data.sys.ip }}
-
-
- 项目已不间断运行:{{ data.sys.day }}
-
-
-
-
-
-
- 状态
-
-
-
- CPU使用率
-
-
-
- {{ data.cpu.name }}
-
-
- {{ data.cpu.package }}
-
-
- {{ data.cpu.core }}
-
-
- {{ data.cpu.logic }}
-
-
-
-
-
-
-
-
-
- 内存使用率
-
-
-
- 总量:{{ data.memory.total }}
-
-
- 已使用:{{ data.memory.used }}
-
-
- 空闲:{{ data.memory.available }}
-
-
-
-
-
-
-
-
-
- 交换区使用率
-
-
-
- 总量:{{ data.swap.total }}
-
-
- 已使用:{{ data.swap.used }}
-
-
- 空闲:{{ data.swap.available }}
-
-
-
-
-
-
-
-
-
- 磁盘使用率
-
-
-
-
- 总量:{{ data.disk.total }}
-
-
- 空闲:{{ data.disk.available }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CPU使用率监控
-
-
-
-
-
-
-
-
-
- 内存使用率监控
-
-
-
-
-
-
-
-
-
+
+
diff --git a/wms_pro/qd/src/views/wms/dispatch_manage/point/index.vue b/wms_pro/qd/src/views/wms/dispatch_manage/point/index.vue
index 38e2a55e..747ed89e 100644
--- a/wms_pro/qd/src/views/wms/dispatch_manage/point/index.vue
+++ b/wms_pro/qd/src/views/wms/dispatch_manage/point/index.vue
@@ -10,13 +10,13 @@
label-width="90px"
label-suffix=":"
>
-
+
@@ -27,24 +27,23 @@
/>
-
+
-
+
-
+
@@ -69,7 +68,7 @@
/>
-
+
-
+
-
+
-
+
-
+
-
+
@@ -142,14 +141,14 @@
/>
-
+
-
+
@@ -160,25 +159,25 @@
/>
-
+
-
+
-
+
-
+
-
+
@@ -191,29 +190,29 @@
@selection-change="crud.selectionChangeHandler"
>
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
{{ scope.row.is_used == '1' ? '是' : '否' }}
-
-
-
-
+
+
+
+
{
changeActive(data).then(res => {
this.crud.toQuery()
- this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
+ this.crud.notify(i18n.t('notice.placeholder.successful'), CRUD.NOTIFICATION_TYPE.SUCCESS)
}).catch(() => {
data.is_used = !data.is_used
})
@@ -351,7 +351,7 @@ export default {
param.data = data
param.used = flag
crudPoint.changeUsed(param).then(res => {
- this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
+ this.crud.notify(i18n.t('notice.placeholder.successful'), CRUD.NOTIFICATION_TYPE.SUCCESS)
this.crud.toQuery()
})
},
@@ -360,7 +360,7 @@ export default {
param.data = data
param.lock_type = flag
crudPoint.changeLock(param).then(res => {
- this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
+ this.crud.notify(i18n.t('notice.placeholder.successful'), CRUD.NOTIFICATION_TYPE.SUCCESS)
this.crud.toQuery()
})
},
diff --git a/wms_pro/qd/src/views/wms/dispatch_manage/region/index.vue b/wms_pro/qd/src/views/wms/dispatch_manage/region/index.vue
index 2a3b976f..ccc13beb 100644
--- a/wms_pro/qd/src/views/wms/dispatch_manage/region/index.vue
+++ b/wms_pro/qd/src/views/wms/dispatch_manage/region/index.vue
@@ -10,13 +10,13 @@
label-width="90px"
label-suffix=":"
>
-
+
@@ -27,11 +27,11 @@
/>
-
+
@@ -46,11 +46,11 @@
:close-on-click-modal="false"
:before-close="crud.cancelCU"
:visible.sync="crud.status.cu > 0"
- :title="crud.status.title"
+ :title="$t('region.title.title')"
width="550px"
>
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -111,21 +111,21 @@
style="width: 100%;"
@selection-change="crud.selectionChangeHandler"
>
-
-
-
-
+
+
+
+
{{ dict.label.IS_OR_NOT[scope.row.is_merge] }}
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
- 未完成数:
+ {{ $t('distask.label.未完成数') }}
- 任务调度
+ {{ $t('distask.label.任务调度') }}
+ :title="$t('distask.title')" width="800px">
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
{{ statusEnum.label.TASK_TYPE[scope.row.task_type] }}
-
+
{{ scope.row.vehicle_code ? scope.row.vehicle_code : '-' }}
-
-
+
+
{{ statusEnum.label.FORM_STATUS[scope.row.status] }}
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
下发
+ >{{$t('distask.label.下发')}}
完成
+ >{{$t('distask.label.完成')}}
强制完成
+ >{{$t('distask.label.强制完成')}}
取消
+ >{{$t('distask.label.取消')}}
@@ -213,6 +213,7 @@ import crudOperation from '@crud/CRUD.operation'
import udOperation from '@crud/UD.operation'
import pagination from '@crud/Pagination'
import crudDict from '@/views/system/dict/dict'
+import i18n from "@/i18n";
const defaultForm = {
@@ -246,7 +247,7 @@ export default {
statusEnums: ['TASK_TYPE', 'FORM_STATUS'],
cruds() {
return CRUD({
- title: '任务管理',
+ title: i18n.t('distask.title'),
url: 'api/schBaseTask',
idField: 'task_id',
sort: 'task_code,desc',
@@ -313,7 +314,7 @@ export default {
}
crudSchBaseTask.operation(data).then(res => {
this.crud.toQuery()
- this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
+ this.crud.notify(i18n.t('notice.placeholder.successful'), CRUD.NOTIFICATION_TYPE.SUCCESS)
}).catch(err => {
console.log(err.response.data.message)
})
@@ -321,7 +322,7 @@ export default {
taskScheduler() {
crudSchBaseTask.scheduler().then(res => {
this.crud.toQuery()
- this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
+ this.crud.notify(i18n.t('notice.placeholder.successful'), CRUD.NOTIFICATION_TYPE.SUCCESS)
})
}
}
diff --git a/wms_pro/qd/src/views/wms/stor_manage/storIvtInfo/index.vue b/wms_pro/qd/src/views/wms/stor_manage/storIvtInfo/index.vue
index f1bf7420..943da3f7 100644
--- a/wms_pro/qd/src/views/wms/stor_manage/storIvtInfo/index.vue
+++ b/wms_pro/qd/src/views/wms/stor_manage/storIvtInfo/index.vue
@@ -10,12 +10,12 @@
label-width="80px"
label-suffix=":"
>
-
+
-
+
-
+
-
+
-
+
-
+
@@ -84,7 +84,7 @@
icon="el-icon-s-operation"
@click="downloadMethod"
>
- 导出库存
+ {{ this.$i18n.t('structinfo.label.导出库存')}}
@@ -99,21 +99,21 @@
@selection-change="crud.selectionChangeHandler"
>