Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
_milo
Great Teamwork
提交
4c8d648f
Great Teamwork
项目概览
_milo
/
Great Teamwork
通知
13
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Great Teamwork
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4c8d648f
编写于
5月 29, 2023
作者:
0
052004122温宸杰
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
评论管理、小队管理数据校验
上级
c7ea2fb9
变更
10
展开全部
隐藏空白更改
内联
并排
Showing
10 changed file
with
444 addition
and
13 deletion
+444
-13
.idea/.gitignore
.idea/.gitignore
+3
-0
.idea/dbnavigator.xml
.idea/dbnavigator.xml
+414
-0
.idea/vcs.xml
.idea/vcs.xml
+6
-0
alpha/admin/js_sdk/validator/mustgo-running-record.js
alpha/admin/js_sdk/validator/mustgo-running-record.js
+2
-2
alpha/admin/js_sdk/validator/mustgo-school-activity.js
alpha/admin/js_sdk/validator/mustgo-school-activity.js
+2
-1
alpha/admin/js_sdk/validator/mustgo-team-activity.js
alpha/admin/js_sdk/validator/mustgo-team-activity.js
+2
-1
alpha/admin/pages/content/mustgo-comment/edit.vue
alpha/admin/pages/content/mustgo-comment/edit.vue
+9
-4
alpha/admin/pages/content/mustgo-record/running/edit.vue
alpha/admin/pages/content/mustgo-record/running/edit.vue
+3
-2
alpha/admin/pages/content/mustgo-team/edit.vue
alpha/admin/pages/content/mustgo-team/edit.vue
+1
-1
alpha/admin/pages/content/mustgo-user/edit.vue
alpha/admin/pages/content/mustgo-user/edit.vue
+2
-2
未找到文件。
.idea/.gitignore
0 → 100644
浏览文件 @
4c8d648f
# 默认忽略的文件
/shelf/
/workspace.xml
.idea/dbnavigator.xml
0 → 100644
浏览文件 @
4c8d648f
此差异已折叠。
点击以展开。
.idea/vcs.xml
0 → 100644
浏览文件 @
4c8d648f
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"$PROJECT_DIR$"
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
alpha/admin/js_sdk/validator/mustgo-running-record.js
浏览文件 @
4c8d648f
...
...
@@ -35,8 +35,8 @@ const validator = {
"
format
"
:
"
string
"
}
],
"
title
"
:
"
用户
id
"
,
"
label
"
:
"
用户
id
"
"
title
"
:
"
用户
名
"
,
"
label
"
:
"
用户
名
"
},
"
distance
"
:
{
"
rules
"
:
[
...
...
alpha/admin/js_sdk/validator/mustgo-school-activity.js
浏览文件 @
4c8d648f
...
...
@@ -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
"
:
"
联系方式
"
,
...
...
alpha/admin/js_sdk/validator/mustgo-team-activity.js
浏览文件 @
4c8d648f
...
...
@@ -86,7 +86,8 @@ const validator = {
"
contact
"
:
{
"
rules
"
:
[
{
"
format
"
:
"
string
"
"
format
"
:
"
string
"
,
"
pattern
"
:
"
/^1[0-9]{10}$/
"
,
}
],
"
title
"
:
"
联系方式
"
,
...
...
alpha/admin/pages/content/mustgo-comment/edit.vue
浏览文件 @
4c8d648f
...
...
@@ -2,16 +2,21 @@
<view
class=
"uni-container"
>
<uni-forms
ref=
"form"
:model=
"formData"
validateTrigger=
"bind"
>
<uni-forms-item
name=
"owner_id"
label=
"评论人id"
>
<uni-easyinput
placeholder=
"评论人id"
v-model=
"formData.owner_id"
></uni-easyinput>
<uni-easyinput
placeholder=
"评论人id"
v-model=
"formData.owner_id"
disabled
></uni-easyinput>
</uni-forms-item>
<uni-forms-item
name=
"date"
label=
"发布时间"
>
<uni-easyinput
placeholder=
"评论发布时间"
v-model=
"formData.date"
></uni-easyinput>
<!--
<uni-easyinput
placeholder=
"评论发布时间"
v-model=
"formData.date"
></uni-easyinput>
-->
<uni-datetime-picker
type=
"datetime"
v-model=
"formData.date"
/>
</uni-forms-item>
<uni-forms-item
name=
"likes"
label=
"点赞数"
>
<uni-easyinput
placeholder=
"评论点赞数"
type=
"number"
v-model=
"formData.likes"
></uni-easyinput>
<!--
<uni-easyinput
placeholder=
"评论点赞数"
type=
"number"
v-model=
"formData.likes"
></uni-easyinput>
-->
<uni-number-box
:value=
"0"
:step=
"1"
max=
"100000"
value=
"100000"
v-model=
"formData.likes"
/>
</uni-forms-item>
<uni-forms-item
name=
"post_id"
label=
"帖子id"
>
<uni-easyinput
placeholder=
"帖子id"
v-model=
"formData.post_id"
></uni-easyinput>
<uni-easyinput
placeholder=
"帖子id"
v-model=
"formData.post_id"
disabled
></uni-easyinput>
</uni-forms-item>
<!--
<uni-forms-item
name=
"check_status"
label=
"状态"
>
<switch
@
change=
"binddata('check_status', $event.detail.value)"
:checked=
"formData.check_status"
></switch>
...
...
alpha/admin/pages/content/mustgo-record/running/edit.vue
浏览文件 @
4c8d648f
...
...
@@ -17,7 +17,7 @@
</uni-data-select>
</uni-forms-item>
<uni-forms-item
name=
"owner_id"
label=
"用户名"
>
<uni-easyinput
placeholder=
"用户
id
"
v-model=
"formData.owner_id"
disabled
></uni-easyinput>
<uni-easyinput
placeholder=
"用户
名
"
v-model=
"formData.owner_id"
disabled
></uni-easyinput>
</uni-forms-item>
<uni-forms-item
name=
"distance"
label=
"距离"
>
<!--
<uni-easyinput
placeholder=
"运动距离"
type=
"number"
v-model=
"formData.distance"
></uni-easyinput>
-->
...
...
@@ -76,7 +76,8 @@
"
pace
"
:
null
,
"
path_line
"
:
[],
"
start_point
"
:
null
,
"
end_point
"
:
null
"
end_point
"
:
null
,
"
name
"
:
""
}
return
{
formData
,
...
...
alpha/admin/pages/content/mustgo-team/edit.vue
浏览文件 @
4c8d648f
...
...
@@ -9,7 +9,7 @@
<uni-easyinput
placeholder=
"小队名称"
v-model=
"formData.name"
></uni-easyinput>
</uni-forms-item>
<uni-forms-item
name=
"owner_id"
label=
"发起人id"
>
<uni-easyinput
placeholder=
"小队发起人id"
v-model=
"formData.owner_id"
></uni-easyinput>
<uni-easyinput
placeholder=
"小队发起人id"
v-model=
"formData.owner_id"
disabled
></uni-easyinput>
</uni-forms-item>
<uni-forms-item
name=
"description"
label=
"描述"
>
<uni-easyinput
placeholder=
"小队描述"
v-model=
"formData.description"
></uni-easyinput>
...
...
alpha/admin/pages/content/mustgo-user/edit.vue
浏览文件 @
4c8d648f
...
...
@@ -31,11 +31,11 @@
<!--
<uni-easyinput
v-model=
"formData.type"
></uni-easyinput>
-->
</uni-forms-item>
<uni-forms-item
name=
"total_running_distance"
label=
"跑步总距离"
>
<uni-number-box
:value=
"0.0"
:step=
"0.01"
v-model=
"formData.total_running_distance"
/>
<uni-number-box
:value=
"0.0"
:step=
"0.01"
max=
"100000.00"
value=
"100000.00"
v-model=
"formData.total_running_distance"
/>
<!--
<uni-easyinput
type=
"number"
v-model=
"formData.total_running_distance"
></uni-easyinput>
-->
</uni-forms-item>
<uni-forms-item
name=
"total_walking_distance"
label=
"健走总距离"
>
<uni-number-box
:value=
"0.0"
:step=
"0.01"
v-model=
"formData.total_walking_distance"
/>
<uni-number-box
:value=
"0.0"
:step=
"0.01"
max=
"100000.00"
value=
"100000.00"
v-model=
"formData.total_walking_distance"
/>
<!--
<uni-easyinput
type=
"number"
v-model=
"formData.total_walking_distance"
></uni-easyinput>
-->
</uni-forms-item>
<view
class=
"uni-button-group"
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录