扫码拦截问题

master
anthonywj 3 years ago
parent 8fc8a93dec
commit 543ba9bd29

@ -1,4 +1,4 @@
{ {
"BASE_URL": "http://192.168.0.109:9996", "BASE_URL": "http://139.159.187.130/SPMS_SERVER",
"SERVER_IP": "http://192.168.0.109:9996" "SERVER_IP": "http://192.168.0.109:9996"
} }

@ -489,9 +489,6 @@ export default {
this.formData.corpOrderId = this.formData.corpOrderId.trim(); this.formData.corpOrderId = this.formData.corpOrderId.trim();
this.actionEnable = true; this.actionEnable = true;
if (event == null) { if (event == null) {
var inputer = document.getElementById("inputer");
this.formData.code = inputer.innerText.replace("\r", "");
inputer.focus();
} else event.target.select(); } else event.target.select();
this.$refs.inputRef.select(); this.$refs.inputRef.select();
if (this.$isBlank(this.formData.action)) { if (this.$isBlank(this.formData.action)) {
@ -511,6 +508,7 @@ export default {
this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10); this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
} }
this.formData.code = this.formData.code.trim(); this.formData.code = this.formData.code.trim();
console.log(this.formData.code);
if (this.$isBlank(this.formData.code)) return; if (this.$isBlank(this.formData.code)) return;
this.loading = true; this.loading = true;

@ -417,10 +417,8 @@ export default {
}, },
addCode(event) { addCode(event) {
if (event == null) { if (event == null) {
var inputer = document.getElementById("inputer");
this.formData.code = inputer.innerText.replace("\r", "");
inputer.focus();
} else event.target.select(); } else event.target.select();
this.$refs.inputRef.select();
if (this.$isBlank(this.formData.billType)) { if (this.$isBlank(this.formData.billType)) {
this.$message.warning("请选择单据类型!"); this.$message.warning("请选择单据类型!");
return; return;
@ -442,6 +440,7 @@ export default {
tQuery.orderId = this.idQuery.id; tQuery.orderId = this.idQuery.id;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}'); tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = tQuery.billType tQuery.action = tQuery.billType
console.log("tQuery = " + tQuery)
this.addCodeSubmit(tQuery); this.addCodeSubmit(tQuery);
}, },

Loading…
Cancel
Save