diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index e51be879..6894de95 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -44,11 +44,18 @@ -
-

{{ - result - }}

-
+ + + + + + +
@@ -839,7 +846,8 @@ export default { showSearch: false, scanCode: "", isSuccess: false, - result: "扫码解析结果:" + result: "\n", + scanResultType: "success", }; }, components: { @@ -1756,6 +1764,7 @@ export default { this.$refs.inputRef.focus(); this.$refs.inputRef.select(); this.isSuccess = true; + this.scanResultType = "success" this.printCodeResult(response.data) this.codeFormData.code = response.data.code; this.scanCode = "" @@ -1764,6 +1773,7 @@ export default { if (response.code == 502) { this.checkSuccess = false; this.isSuccess = false; + this.scanResultType = "error" this.printCodeResult(response.data) this.codeFormData.code = response.data.code; this.originCode = this.codeFormData.code; @@ -1773,6 +1783,7 @@ export default { } else if (response.code == 503) { this.checkSuccess = false; this.isSuccess = false; + this.scanResultType = "error" this.scanCode = "" this.printCodeResult(response.data) this.codeFormData.code = response.data.code;