Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
梦想橡皮擦
uni-starter
提交
c589bfe6
U
uni-starter
项目概览
梦想橡皮擦
/
uni-starter
与 Fork 源项目一致
Fork自
DCloud / uni-starter
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
c589bfe6
编写于
2月 24, 2022
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
- 删除多余文件: - 修复当用户选择验证码登陆方式,在输入验证码页面,点击微信登陆时报“你未同意隐私政策协议”的问题
上级
480d8e06
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
14 addition
and
132 deletion
+14
-132
changelog.md
changelog.md
+3
-0
common/appInit.js
common/appInit.js
+5
-0
components/refreshBox/refreshBox.nvue
components/refreshBox/refreshBox.nvue
+1
-1
manifest.json
manifest.json
+2
-6
package.json
package.json
+1
-1
pages/ucenter/login-page/phone-code/phone-code.vue
pages/ucenter/login-page/phone-code/phone-code.vue
+2
-2
uniCloud-aliyun/database/opendb-news-articles-detail.schema.json
...d-aliyun/database/opendb-news-articles-detail.schema.json
+0
-122
未找到文件。
changelog.md
浏览文件 @
c589bfe6
## 1.1.32(2022-02-24)
-
删除多余文件:
`uniCloud/database/opendb-news-articles-detail.schema.json`
-
修复当用户选择验证码登陆方式,在输入验证码页面,点击微信登陆时报“你未同意隐私政策协议”的问题
## 1.1.31(2022-02-16)
修复微信小程序端,修改绑定的手机号码时表单验证不正常的问题
## 1.1.30(2022-01-26)
...
...
common/appInit.js
浏览文件 @
c589bfe6
...
...
@@ -183,6 +183,11 @@ export default async function() {
},
fail
()
{
callBack
(
false
)
},
complete
(){
// #ifdef MP-WEIXIN
uni
.
hideToast
()
// #endif
}
});
})
...
...
components/refreshBox/refreshBox.nvue
浏览文件 @
c589bfe6
...
...
@@ -23,7 +23,7 @@
}
},
refresh(){
console.log('refresh');
//
console.log('refresh');
this.showRefresh = true
this.state = 2
this.$emit('refresh')
...
...
manifest.json
浏览文件 @
c589bfe6
...
...
@@ -59,9 +59,9 @@
},
"Geolocation"
:
{
},
"Push"
:
{
},
"Bluetooth"
:
{
},
"Push"
:
{
}
},
"distribute"
:
{
...
...
@@ -112,10 +112,6 @@
}
},
"ad"
:
{
"gdt"
:
{
},
"csj"
:
{
}
},
"share"
:
{
"weixin"
:
{
...
...
package.json
浏览文件 @
c589bfe6
{
"id"
:
"uni-starter"
,
"displayName"
:
"uni-starter"
,
"version"
:
"1.1.3
1
"
,
"version"
:
"1.1.3
2
"
,
"description"
:
"云端一体应用快速开发基本项目模版"
,
"keywords"
:
[
"login"
,
...
...
pages/ucenter/login-page/phone-code/phone-code.vue
浏览文件 @
c589bfe6
...
...
@@ -13,8 +13,8 @@
</uni-easyinput>
<button
class=
"send-btn"
:disabled=
"!canSubmit"
:type=
"canSubmit?'primary':'default'"
@
click=
"submit"
>
{{$t('common.login')}}
</button>
</uni-forms>
<uni-quick-login></uni-quick-login>
</uni-forms>
<uni-quick-login
agree
></uni-quick-login>
</view>
</template>
<
script
>
...
...
uniCloud-aliyun/database/opendb-news-articles-detail.schema.json
已删除
100644 → 0
浏览文件 @
480d8e06
{
"bsonType"
:
"object"
,
"permission"
:
{
"create"
:
"auth.uid != null"
,
"delete"
:
"doc.user_id == auth.uid"
,
"read"
:
true
,
"update"
:
"doc.user_id == auth.uid"
},
"properties"
:
{
"_id"
:
{
"description"
:
"存储文档 ID(用户 ID),系统自动生成"
},
"article_status"
:
{
"bsonType"
:
"int"
,
"description"
:
"文章状态:0 草稿箱 1 已发布"
,
"maximum"
:
1
,
"minimum"
:
0
},
"avatar"
:
{
"bsonType"
:
"string"
,
"description"
:
"缩略图地址"
,
"label"
:
"封面大图"
},
"category_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"分类 id,参考`uni-news-categories`表"
},
"comment_count"
:
{
"bsonType"
:
"int"
,
"description"
:
"评论数量"
,
"permission"
:
{
"write"
:
false
}
},
"comment_status"
:
{
"bsonType"
:
"int"
,
"description"
:
"评论状态:0 关闭 1 开放"
,
"maximum"
:
1
,
"minimum"
:
0
},
"content"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章内容"
,
"label"
:
"文章内容"
},
"excerpt"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章摘录"
,
"label"
:
"摘要"
},
"is_essence"
:
{
"bsonType"
:
"bool"
,
"description"
:
"阅读加精"
,
"permission"
:
{
"write"
:
false
}
},
"is_sticky"
:
{
"bsonType"
:
"bool"
,
"description"
:
"是否置顶"
,
"permission"
:
{
"write"
:
false
}
},
"last_comment_user_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"最后回复用户 id,参考`uni-id-users` 表"
},
"last_modify_date"
:
{
"bsonType"
:
"timestamp"
,
"description"
:
"最后修改时间"
},
"last_modify_ip"
:
{
"bsonType"
:
"string"
,
"description"
:
"最后修改时 IP 地址"
},
"like_count"
:
{
"bsonType"
:
"int"
,
"description"
:
"喜欢数、点赞数"
,
"permission"
:
{
"write"
:
false
}
},
"mode"
:
{
"bsonType"
:
"number"
,
"description"
:
"排版显示模式"
},
"publish_date"
:
{
"bsonType"
:
"timestamp"
,
"defaultValue"
:
{
"$env"
:
"now"
},
"description"
:
"发表时间"
},
"publish_ip"
:
{
"bsonType"
:
"string"
,
"description"
:
"发表时 IP 地址"
,
"forceDefaultValue"
:
{
"$env"
:
"clientIP"
}
},
"title"
:
{
"bsonType"
:
"string"
,
"description"
:
"标题"
,
"label"
:
"标题"
},
"user_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章作者ID, 参考`uni-id-users` 表"
},
"view_count"
:
{
"bsonType"
:
"int"
,
"description"
:
"阅读数量"
,
"permission"
:
{
"write"
:
false
}
}
},
"required"
:
[
"user_id"
,
"title"
,
"content"
,
"article_status"
,
"view_count"
,
"like_count"
,
"is_sticky"
,
"is_essence"
,
"comment_status"
,
"comment_count"
,
"mode"
]
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录