| | |
| | | <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> |
| | |
| | | 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) => { |
| | |
| | | MainData: { |
| | | station: this.form.station, |
| | | palletCode: this.form.palletCode, |
| | | outtype:this.form.outtype, |
| | | }, |
| | | }; |
| | | this.http.post("/api/Task/CreateAndSendOutboundTask",parm, true).then((x) => { |
| | |
| | | this.$Message.success("æå"); |
| | | this.form.palletCode=''; |
| | | this.form.station=''; |
| | | this.form.outtype=''; |
| | | this.show = false; |
| | | $vue.refresh(); |
| | | } |