|
|
|
@ -4,10 +4,12 @@
|
|
|
|
|
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
|
|
|
|
|
>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="saveData()"
|
|
|
|
|
>提交</el-button
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="closePlaceDialog(1)"
|
|
|
|
|
>关闭</el-button
|
|
|
|
|
>关闭
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
<el-row>
|
|
|
|
@ -69,7 +71,7 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click.native.stop="addCode()"
|
|
|
|
|
style="margin-left: 15px"
|
|
|
|
|
>添加
|
|
|
|
|
>添加
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -142,14 +144,15 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getInvListByUser } from "@/api/system/invWarehouse";
|
|
|
|
|
import { getInvSpaceList } from "@/api/inventory/invSpace";
|
|
|
|
|
import { isBlank } from "@/utils/strUtil";
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getInvSpaceList} from "@/api/inventory/invSpace";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {
|
|
|
|
|
bindInvSpace,
|
|
|
|
|
getInvPlaceOrderDetailList,
|
|
|
|
|
getInvProductInfo,
|
|
|
|
|
} from "@/api/inventory/invPlace";
|
|
|
|
|
import A from "@/plugins/KeyScaner";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
@ -174,6 +177,7 @@ export default {
|
|
|
|
|
spaceList: [],
|
|
|
|
|
loading: false,
|
|
|
|
|
spaceSearchResult: [],
|
|
|
|
|
sitcomScan: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -218,7 +222,8 @@ export default {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
clearFormData() {
|
|
|
|
|
//清空表单数据
|
|
|
|
@ -262,7 +267,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
createStateFilter(queryString) {
|
|
|
|
|
return (state) => {
|
|
|
|
|
const { value, code } = state;
|
|
|
|
|
const {value, code} = state;
|
|
|
|
|
return (
|
|
|
|
|
value === queryString.toLowerCase() ||
|
|
|
|
|
code === queryString.toLowerCase()
|
|
|
|
@ -285,7 +290,8 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$refs.spaceInputRef.focus();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getSpaceList() {
|
|
|
|
|
let params = {
|
|
|
|
@ -327,7 +333,7 @@ export default {
|
|
|
|
|
getInvProductInfo(params).then((res) => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.orderId = res.data;
|
|
|
|
|
getInvPlaceOrderDetailList({ orderId: this.orderId }).then((res) => {
|
|
|
|
|
getInvPlaceOrderDetailList({orderId: this.orderId}).then((res) => {
|
|
|
|
|
this.list = res.data.list;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
@ -361,6 +367,27 @@ export default {
|
|
|
|
|
mounted() {
|
|
|
|
|
//默认获取上架货物光标
|
|
|
|
|
this.$refs.spaceInputRef.focus();
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
var that = this;
|
|
|
|
|
var inputer = document.getElementById("inputer");
|
|
|
|
|
window.sc = new A.KeyScaner(inputer);//传入要监听的DOM节点
|
|
|
|
|
sc.onInput = function (text) {
|
|
|
|
|
//onInput事件在检测到回车键按下或在连续输入后超过500ms没有继续输入时触发
|
|
|
|
|
if (text.includes("delete")) {
|
|
|
|
|
that.formData.code = "";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (that.sitcomScan) {
|
|
|
|
|
that.formData.code = that.formData.code;
|
|
|
|
|
} else {
|
|
|
|
|
that.formData.code = text;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
inputer.focus();//别忘了给要监听的节点放置焦点,如果是div一类默认不具备焦点的节点需要给它加上“tabindex”属性。不建议传入document、Body等全局节点,可能会影响其它输入控件的流畅性。
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|