diff --git a/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue b/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue
new file mode 100644
index 00000000..a7312686
--- /dev/null
+++ b/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue
@@ -0,0 +1,500 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 出库
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/sgzb-ui/src/views/claimAndRefund/return/returnExamine.vue b/sgzb-ui/src/views/claimAndRefund/return/returnExamine.vue
index df96f048..8059f2e8 100644
--- a/sgzb-ui/src/views/claimAndRefund/return/returnExamine.vue
+++ b/sgzb-ui/src/views/claimAndRefund/return/returnExamine.vue
@@ -433,6 +433,16 @@
width="200"
prop="num"
>
+
+
+
@@ -730,6 +740,14 @@ export default {
},
/** 提交按钮 同意 */
submitForm() {
+ const isNum = this.loadingList.some(
+ (item) => item.num == '' || item.num == undefined
+ );
+ if (isNum) {
+ this.$message.error('退料数量不能为空!');
+ return;
+ }
+
let params = {
ids: this.rowObj.id
}
@@ -742,6 +760,13 @@ export default {
},
/** 提交按钮 拒绝 */
submitForm2() {
+ const isNum = this.loadingList.some(
+ (item) => item.num == '' || item.num == undefined
+ );
+ if (isNum) {
+ this.$message.error('退料数量不能为空!');
+ return;
+ }
let params = {
ids: this.rowObj.id
}
@@ -771,6 +796,13 @@ export default {
return false
}
},
+ checkNum(row){
+ if(row.num>=0){
+ row.num = row.num
+ }else{
+ row.num = 0
+ }
+ },
handleExam() {
let params = {
ids: this.ids.join(',')
diff --git a/sgzb-ui/src/views/dashboard.vue b/sgzb-ui/src/views/dashboard.vue
index b95f2654..007d10cb 100644
--- a/sgzb-ui/src/views/dashboard.vue
+++ b/sgzb-ui/src/views/dashboard.vue
@@ -12,6 +12,7 @@
},
created () {
this.openNewWindow()
+ this.$tab.closePage().then(() => { });
},
methods: {
openNewWindow() {
diff --git a/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesAccept.vue b/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesAccept.vue
index 07030c55..98c6e0e9 100644
--- a/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesAccept.vue
+++ b/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesAccept.vue
@@ -94,7 +94,7 @@
size="mini"
type="primary"
icon="el-icon-edit"
- v-show="scope.row.status==0"
+ v-show="scope.row.checkNum验收