diff --git a/src/icons/svg/ContractApprovalQuery.svg b/src/icons/svg/ContractApprovalQuery.svg
new file mode 100644
index 00000000..2c63ae80
--- /dev/null
+++ b/src/icons/svg/ContractApprovalQuery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/icons/svg/RequestApprovalQuery.svg b/src/icons/svg/RequestApprovalQuery.svg
new file mode 100644
index 00000000..c498df81
--- /dev/null
+++ b/src/icons/svg/RequestApprovalQuery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/views/Inventory/Inboundscanning/index.vue b/src/views/Inventory/Inboundscanning/index.vue
index 6be72ee7..35c7b04a 100644
--- a/src/views/Inventory/Inboundscanning/index.vue
+++ b/src/views/Inventory/Inboundscanning/index.vue
@@ -15,20 +15,8 @@
-
-
+
+
{{ scope.row.项目名称 }}
@@ -56,7 +44,7 @@
-
+
{
- if (this.locateNumber === '') {
+ if (!this.locateNumber) {
this.$message.error('请选择货位')
} else {
for (let i = 0; i < this.tableDataNum.length; i++) {
diff --git a/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue b/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue
index ae856b55..9a70162c 100644
--- a/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue
+++ b/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue
@@ -28,7 +28,7 @@
导出
-
+
{{ scope.row.采购合同编号 }}
@@ -97,7 +97,7 @@
-
+
diff --git a/src/views/ManufacturingCenter/MaterialArrival/index.vue b/src/views/ManufacturingCenter/MaterialArrival/index.vue
index 9d8bd9b5..ac5e39ab 100644
--- a/src/views/ManufacturingCenter/MaterialArrival/index.vue
+++ b/src/views/ManufacturingCenter/MaterialArrival/index.vue
@@ -2,7 +2,7 @@
-
+
完成
-
+
-
+
-
+
{{ scope.row.加工开始时间 }}
diff --git a/src/views/ManufacturingCenter/RequestApprovalQuery/index.vue b/src/views/ManufacturingCenter/RequestApprovalQuery/index.vue
index 1a4e0788..c0967360 100644
--- a/src/views/ManufacturingCenter/RequestApprovalQuery/index.vue
+++ b/src/views/ManufacturingCenter/RequestApprovalQuery/index.vue
@@ -28,7 +28,7 @@
导出
-
+
{{ scope.row.供应商名称 }}
@@ -83,7 +83,7 @@
-
+
{{ scope.row.采购合同编号 ? scope.row.采购合同编号 : scope.row.离线合同编号 }}
diff --git a/src/views/ManufacturingCenter/ShopScheduling/index.vue b/src/views/ManufacturingCenter/ShopScheduling/index.vue
index 881b4e8f..27a52032 100644
--- a/src/views/ManufacturingCenter/ShopScheduling/index.vue
+++ b/src/views/ManufacturingCenter/ShopScheduling/index.vue
@@ -4,7 +4,7 @@
-
+
@@ -60,7 +60,7 @@
-
+
{{ scope.row.零件图号 }}
@@ -87,7 +87,7 @@
-
+
{{ scope.row.工序顺序 }}
@@ -181,25 +181,27 @@ export default {
})
},
getGongxu(row) {
- this.loading3 = true
- this.tableData3 = []
- this.index = row.index
- this.工艺计划流水号 = row.工艺计划流水号
- getGongxu(row.工艺计划流水号).then(response => {
- response.data.map(v => {
- this.tableData3.push({
- 工序流水号: v.工序流水号,
- 工序状态: v.工序状态,
- 工序顺序: v.工序顺序,
- 工艺名称: v.工艺名称,
- 姓名: parseInt(v.工序间是否外协) === 2 ? '外协' : v.姓名,
- 排产时间: v.排产时间 ? v.排产时间.split(' ')[0] : '',
- 完成日期: v.完成日期 ? v.完成日期.split(' ')[0] : '',
- 工序间是否外协: v.工序间是否外协
+ if (!this.loading3) {
+ this.loading3 = true
+ this.tableData3 = []
+ this.index = row.index
+ this.工艺计划流水号 = row.工艺计划流水号
+ getGongxu(row.工艺计划流水号).then(response => {
+ response.data.map(v => {
+ this.tableData3.push({
+ 工序流水号: v.工序流水号,
+ 工序状态: v.工序状态,
+ 工序顺序: v.工序顺序,
+ 工艺名称: v.工艺名称,
+ 姓名: parseInt(v.工序间是否外协) === 2 ? '外协' : v.姓名,
+ 排产时间: v.排产时间 ? v.排产时间.split(' ')[0] : '',
+ 完成日期: v.完成日期 ? v.完成日期.split(' ')[0] : '',
+ 工序间是否外协: v.工序间是否外协
+ })
})
+ this.loading3 = false
})
- this.loading3 = false
- })
+ }
},
tableData1ClassName({ row, rowIndex }) {
row.index = rowIndex
diff --git a/src/views/layout/components/Navbar.vue b/src/views/layout/components/Navbar.vue
index 0e28b773..57e2369f 100644
--- a/src/views/layout/components/Navbar.vue
+++ b/src/views/layout/components/Navbar.vue
@@ -291,6 +291,7 @@ export default {