LaveyD 1 tháng trước cách đây
mục cha
commit
8968d58ec5
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/pages/sellManage/common/confirmMixin.js

+ 3 - 1
src/pages/sellManage/common/confirmMixin.js

@@ -408,7 +408,9 @@ export default {
     payCodeDialogVisible (val) {
       if (val) {
         this.$nextTick(() => {
-          this.$refs.payCodeInputRef?.focus()
+          if (this.$refs.payCodeInputRef) {
+            this.$refs.payCodeInputRef.focus()
+          }
         })
       }
     }