刘磊
7 天以前 2de09bec5cc05bf875543fa8956167ca7db73021
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/HandTask/ManualOutboundTask.vue
@@ -8,8 +8,8 @@
        <el-form-item label="站台" prop="station">
          <el-select v-model="form.station" placeholder="请选择下料口">
            <el-option label="上料口(2009)" value="2009" />
            <el-option label="左侧下料口(2032)" value="2032" />
            <el-option label="右侧下料口(2042)" value="2042" />
            <el-option label="1号压装机(2032)" value="2032" />
            <el-option label="2号压装机(2042)" value="2042" />
          </el-select>
        </el-form-item>
      </el-form>
@@ -41,15 +41,16 @@
      form: {
        palletCode: "",
        station: "",
        outtype:""
      },
      show: false,
    };
  },
  methods: {
    open(palletCode) {
    open(palletCode,outtype) {
      this.show = true;
      this.form.palletCode = palletCode;
      this.form.outtype = outtype;
    },
    submit() {
      this.$emit("parentCall", ($vue) => {
@@ -68,6 +69,7 @@
            MainData: {
              station: this.form.station,
              palletCode: this.form.palletCode,
              outtype:this.form.outtype,
            },
          };
        this.http.post("/api/Task/CreateAndSendOutboundTask",parm, true).then((x) => {
@@ -77,6 +79,7 @@
            this.$Message.success("成功");
            this.form.palletCode='';
            this.form.station='';
            this.form.outtype='';
            this.show = false;
            $vue.refresh();
          }