瀏覽代碼

会员卡管理

hanfucheng 4 月之前
父節點
當前提交
6d7bc18e38
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      qmjszx-admin/src/main/resources/templates/record/add.html

+ 1 - 1
qmjszx-admin/src/main/resources/templates/record/add.html

@@ -73,7 +73,7 @@
                 data.rows.forEach(cardType => {
                     const option = document.createElement('option');
                     option.value = cardType.id;
-                    option.text = cardType.realName;
+                    option.text = cardType.username;
                     userSelect.appendChild(option);
                 });
             },