1
huangxiaoqiang
9 天以前 7195016afc472307e4db0b415e45c9d4275bdb02
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
<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.num" ></el-input>
        </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 {
      num: 0,
      show: false,
    };
  },
  methods: {
    open() {
      this.show = true;
    },
    submit() {
      this.$emit("parentCall", ($vue) => {
        
        this.http.post("api/InboundOrder/PrintPalletCode?num="+this.num, "").then((x) => {
          if (!x.status) {
            this.$message.error(x.message);
          } else {
            this.$message.success(x.message);
            this.show = false;
            $vue.refresh();
          }
        });
      });
    },
  },
 
};
</script>