@@ -78,7 +78,7 @@
- 15000
+ {{ Statistics.monthPro }}
@@ -88,7 +88,7 @@
- 3000
+ {{ Statistics.monthNoOk }}
@@ -119,15 +119,16 @@
+ :key="index" v-for="(n, index) in Qualitylist">
- 产品1直径过大
+ {{ n.projectName }}
+
- 张三 2023.10.30
+ {{ n.checkManName }} {{ n.checkTime }}
@@ -156,7 +157,7 @@
-
+
@@ -169,14 +170,13 @@
+
+
\ No newline at end of file
diff --git a/src/views/kanban/quality/kanban3.vue b/src/views/kanban/quality/kanban3.vue
index e69de29..c62c379 100644
--- a/src/views/kanban/quality/kanban3.vue
+++ b/src/views/kanban/quality/kanban3.vue
@@ -0,0 +1,614 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ gettimedata }}
+
+
+
+
+
+
+
+
+
+
+ 序号 |
+ 检验编号 |
+ 检验阶段 |
+ 检验时间 |
+ 物料来源 |
+ 物料名称 |
+ 检验人 |
+ 检验状态 |
+
+
+
+
+
+
+
+
+ {{ index + 1 }} |
+ {{ n.checkNo }} |
+ {{ n.checkName }} |
+ {{ n.incomeTime }} |
+ {{ n.supplierName }} |
+ {{ n.materialName }} |
+ {{ n.checkManName }} |
+ {{
+ n.checkStatus }} |
+
+
+
+
+
+
+
+
+
+
+
+ 序号 |
+ 检验编号 |
+ 检验阶段 |
+ 检验时间 |
+ 物料来源 |
+ 物料名称 |
+ 检验人 |
+ 检验状态 |
+
+
+
+
+
+
+
+
+ {{ index + 1 }} |
+ {{ n.checkNo }} |
+ {{ n.checkName }} |
+ {{ n.incomeTime }} |
+ {{ n.supplierName }} |
+ {{ n.materialName }} |
+ {{ n.checkManName }} |
+ {{
+ n.checkStatus }} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/wms/equipment/index.vue b/src/views/wms/equipment/index.vue
index 866024f..a73391a 100644
--- a/src/views/wms/equipment/index.vue
+++ b/src/views/wms/equipment/index.vue
@@ -1112,6 +1112,11 @@ export default {
pageNum: 1,
pageSize: 10,
},
+ queryAuxiliaryEquipmentParams: {
+ pageNum: 1,
+ pageSize: 1000,
+ equipmentCategory : null,
+ },
options: [
{
status: "1",
@@ -1234,19 +1239,6 @@ export default {
getList() {
this.loading = true;
listEquipment(this.queryParams).then((response) => {
- this.auxiliaryEquipmentLeftList = [];
- this.auxiliaryEquipmentRightList = [];
- for (let i in response.rows) {
- // 将返回的列表赋值于穿梭框左边列表
- this.auxiliaryEquipmentLeftList.push({
- key: response.rows[i].equipmentCode,
- label: response.rows[i].equipmentName,
- });
- }
- for (let i in response.selected) {
- this.auxiliaryEquipmentRightList.push(response.selected[i].key);
- this.form.auxiliaryEquipmentRightData = this.auxiliaryEquipmentRightList;
- }
this.equipmentList = response.rows;
this.total = response.total;
this.loading = false;
@@ -1351,7 +1343,18 @@ export default {
});
this.repairRecordSteps = 0;
this.rightList = [];
+ this.auxiliaryEquipmentLeftList = [];
this.auxiliaryEquipmentRightList = [];
+ this.queryAuxiliaryEquipmentParams.equipmentCategory = '0';
+ listEquipment(this.queryAuxiliaryEquipmentParams).then((response) => {
+ for (let i in response.rows) {
+ // 将返回的列表赋值于穿梭框左边列表
+ this.auxiliaryEquipmentLeftList.push({
+ key: response.rows[i].equipmentCode,
+ label: response.rows[i].equipmentName,
+ });
+ }
+ });
this.open = true;
this.title = "添加设备管理";
},
@@ -1363,6 +1366,22 @@ export default {
getWorkCenterList().then((response) => {
this.options1 = response.rows;
});
+ this.queryAuxiliaryEquipmentParams.equipmentCategory = '0';
+ listEquipment(this.queryAuxiliaryEquipmentParams).then((response) => {
+ this.auxiliaryEquipmentLeftList = [];
+ this.auxiliaryEquipmentRightList = [];
+ for (let i in response.rows) {
+ // 将返回的列表赋值于穿梭框左边列表
+ this.auxiliaryEquipmentLeftList.push({
+ key: response.rows[i].equipmentCode,
+ label: response.rows[i].equipmentName,
+ });
+ }
+ for (let i in response.selected) {
+ this.auxiliaryEquipmentRightList.push(response.selected[i].key);
+ this.form.auxiliaryEquipmentRightData = this.auxiliaryEquipmentRightList;
+ }
+ });
getEquipment(equipmentId).then((response) => {
this.form = response.data;
this.rightList = [];