1
huanghongfeng
2024-12-03 1c696f3e12ddcb136e772f9d83eb906760766b96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
  <vol-box v-model="show" title="手动出库" :width="800" :height="600">
    <template #content>
      <el-form ref="form" :model="form" label-width="90px">
        <el-form-item label="托盘号">
          <el-input type="text" v-model="this.form.palletCode" readonly></el-input>
        </el-form-item>
        <el-form-item label="去向" prop="SCNo">
          <el-select v-model="form.SCNo" placeholder="请选择物料区域">
            <el-option label="锰锌区" value="8" />
            <el-option label="镍锌区" value="10" />
            <el-option label="退货1" value="20" />
            <el-option label="退货2" value="30" />
          </el-select>
        </el-form-item>
      </el-form>
    </template>
    <template #footer>
      <div>
        <el-button type="danger" size="small" plain @click="submit">
          <i class="el-icon-check">出库</i>
        </el-button>
        <el-button size="small" type="primary" plain @click="() => {
          this.show = false;
        }
          ">
          <i class="el-icon-close">关闭</i>
        </el-button>
      </div>
    </template>
  </vol-box>
</template>
 
<script>
import VolBox from "@/components/basic/VolBox.vue";
export default {
  components: {
    "vol-box": VolBox,
  },
  data() {
    return {
      form: {
        SCNo: "",
        palletCode: ""
      },
      show: false,
    };
  },
  methods: {
    open(palletCode) {
      this.show = true;
      this.form.palletCode = palletCode;
    },
    submit() {
      this.$emit("parentCall", ($vue) => {
        var param = {
          DelKeys: [this.form.palletCode,this.form.SCNo], 
          Extra: true
        }
        this.http
          .post("api/Task/ManualOutbound2", param, "数据处理中...")
          .then((x) => {
            if (x.status) {
              this.$Message.success('成功.');
              this.$parent.refresh();
            } else {
              return this.$Message.error(x.message);
            }
          });
      });
    },
  },
 
};
</script>