From 4c8d648fa590d313d28c12a547f635cc5d97f3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?052004122=E6=B8=A9=E5=AE=B8=E6=9D=B0?= <734868971@qq.com> Date: Mon, 29 May 2023 21:47:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=84=E8=AE=BA=E7=AE=A1=E7=90=86=E3=80=81?= =?UTF-8?q?=E5=B0=8F=E9=98=9F=E7=AE=A1=E7=90=86=E6=95=B0=E6=8D=AE=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 3 + .idea/dbnavigator.xml | 414 ++++++++++++++++++ .idea/vcs.xml | 6 + .../js_sdk/validator/mustgo-running-record.js | 4 +- .../validator/mustgo-school-activity.js | 3 +- .../js_sdk/validator/mustgo-team-activity.js | 3 +- .../pages/content/mustgo-comment/edit.vue | 13 +- .../content/mustgo-record/running/edit.vue | 5 +- .../admin/pages/content/mustgo-team/edit.vue | 2 +- .../admin/pages/content/mustgo-user/edit.vue | 4 +- 10 files changed, 444 insertions(+), 13 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/dbnavigator.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..359bb53 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml diff --git a/.idea/dbnavigator.xml b/.idea/dbnavigator.xml new file mode 100644 index 0000000..70f212e --- /dev/null +++ b/.idea/dbnavigator.xml @@ -0,0 +1,414 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/alpha/admin/js_sdk/validator/mustgo-running-record.js b/alpha/admin/js_sdk/validator/mustgo-running-record.js index 6c567aa..c6b030c 100644 --- a/alpha/admin/js_sdk/validator/mustgo-running-record.js +++ b/alpha/admin/js_sdk/validator/mustgo-running-record.js @@ -35,8 +35,8 @@ const validator = { "format": "string" } ], - "title": "用户id", - "label": "用户id" + "title": "用户名", + "label": "用户名" }, "distance": { "rules": [ diff --git a/alpha/admin/js_sdk/validator/mustgo-school-activity.js b/alpha/admin/js_sdk/validator/mustgo-school-activity.js index 5d2c781..8510487 100644 --- a/alpha/admin/js_sdk/validator/mustgo-school-activity.js +++ b/alpha/admin/js_sdk/validator/mustgo-school-activity.js @@ -77,7 +77,8 @@ const validator = { "contact": { "rules": [ { - "format": " /^1[3|4|5|7|8][0-9]\d{8}$/" + "format": "^1[0-9]{10}$", + // "pattern": "^1[0-9]{10}$", } ], "title": "联系方式", diff --git a/alpha/admin/js_sdk/validator/mustgo-team-activity.js b/alpha/admin/js_sdk/validator/mustgo-team-activity.js index 5c1f9f5..78b9dec 100644 --- a/alpha/admin/js_sdk/validator/mustgo-team-activity.js +++ b/alpha/admin/js_sdk/validator/mustgo-team-activity.js @@ -86,7 +86,8 @@ const validator = { "contact": { "rules": [ { - "format": "string" + "format": "string", + "pattern": "/^1[0-9]{10}$/", } ], "title": "联系方式", diff --git a/alpha/admin/pages/content/mustgo-comment/edit.vue b/alpha/admin/pages/content/mustgo-comment/edit.vue index 8d9ab6e..b7979f0 100644 --- a/alpha/admin/pages/content/mustgo-comment/edit.vue +++ b/alpha/admin/pages/content/mustgo-comment/edit.vue @@ -2,16 +2,21 @@ - + - + + - + + - + @@ -76,7 +76,8 @@ "pace": null, "path_line": [], "start_point": null, - "end_point": null + "end_point": null, + "name": "" } return { formData, diff --git a/alpha/admin/pages/content/mustgo-team/edit.vue b/alpha/admin/pages/content/mustgo-team/edit.vue index bef32a8..45b8c73 100644 --- a/alpha/admin/pages/content/mustgo-team/edit.vue +++ b/alpha/admin/pages/content/mustgo-team/edit.vue @@ -9,7 +9,7 @@ - + diff --git a/alpha/admin/pages/content/mustgo-user/edit.vue b/alpha/admin/pages/content/mustgo-user/edit.vue index e10674e..7f87173 100644 --- a/alpha/admin/pages/content/mustgo-user/edit.vue +++ b/alpha/admin/pages/content/mustgo-user/edit.vue @@ -31,11 +31,11 @@ - + - + -- GitLab