Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-id-pages-x
提交
467058b2
H
hello uni-id-pages-x
项目概览
DCloud
/
hello uni-id-pages-x
通知
38
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-id-pages-x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
467058b2
编写于
12月 18, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新 升级依赖的uni-captcha的版本为0.7.5
上级
3cc41e92
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
14 addition
and
95 deletion
+14
-95
uni_modules/uni-captcha/changelog.md
uni_modules/uni-captcha/changelog.md
+4
-0
uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup-captcha.uvue
...ptcha/components/uni-popup-captcha/uni-popup-captcha.uvue
+0
-4
uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup/uni-popup.uvue
...cha/components/uni-popup-captcha/uni-popup/uni-popup.uvue
+0
-82
uni_modules/uni-captcha/package.json
uni_modules/uni-captcha/package.json
+7
-5
uni_modules/uni-id-pages-x/changelog.md
uni_modules/uni-id-pages-x/changelog.md
+2
-0
uni_modules/uni-popup/components/uni-popup/uni-popup.uvue
uni_modules/uni-popup/components/uni-popup/uni-popup.uvue
+1
-4
未找到文件。
uni_modules/uni-captcha/changelog.md
浏览文件 @
467058b2
## 0.7.5(2023-12-18)
-
修复 在uni-app x项目,部分情况下,执行uni-captcha组件的setFocus无效的问题
## 0.7.4(2023-12-18)
-
更新
`package.json`
->
`dependencies`
增加
`uni-popup`
## 0.7.3(2023-11-15)
-
更新 uni-popup-captcha.uvue依赖的popup组件,直接使用uni_modules下的uni-popup组件
## 0.7.2(2023-11-07)
...
...
uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup-captcha.uvue
浏览文件 @
467058b2
...
...
@@ -14,12 +14,8 @@
</template>
<script>
import uniPopup from './uni-popup/uni-popup.uvue';
let confirmCallBack = ():void=>console.log('未传入回调函数')
export default {
components: {
uniPopup
},
emits:["modelValue","confirm","cancel"],
data() {
return {
...
...
uni_modules/uni-captcha/components/uni-popup-captcha/uni-popup/uni-popup.uvue
已删除
100644 → 0
浏览文件 @
3cc41e92
<template>
<view class="popup-root" v-if="isOpen" v-show="isShow" @click="clickMask">
<view @click.stop>
<slot></slot>
</view>
</view>
</template>
<script>
type CloseCallBack = ()=> void;
let closeCallBack:CloseCallBack = () :void => {};
export default {
emits:["close","clickMask"],
data() {
return {
isShow:false,
isOpen:false
}
},
watch: {
// 设置show = true 时,如果没有 open 需要设置为 open
isShow:{
handler(isShow) {
// console.log("isShow",isShow)
if(isShow && this.isOpen == false){
this.isOpen = true
}
},
immediate:true
},
// 设置isOpen = true 时,如果没有 isShow 需要设置为 isShow
isOpen:{
handler(isOpen) {
// console.log("isOpen",isOpen)
if(isOpen && this.isShow == false){
this.isShow = true
}
},
immediate:true
}
},
methods:{
open(){
// ...funs : CloseCallBack[]
// if(funs.length > 0){
// closeCallBack = funs[0]
// }
this.isOpen = true;
},
clickMask(){
this.$emit('clickMask')
this.close()
},
close(): void{
this.isOpen = false;
this.$emit('close')
closeCallBack()
},
hiden(){
this.isShow = false
},
show(){
this.isShow = true
}
}
}
</script>
<style>
.popup-root {
position: fixed;
top: 0;
left: 0;
width: 750rpx;
height: 100%;
flex: 1;
background-color: rgba(0, 0, 0, 0.3);
justify-content: center;
align-items: center;
z-index: 99;
}
</style>
\ No newline at end of file
uni_modules/uni-captcha/package.json
浏览文件 @
467058b2
{
"id"
:
"uni-captcha"
,
"displayName"
:
"uni-captcha"
,
"version"
:
"0.7.
3
"
,
"version"
:
"0.7.
5
"
,
"description"
:
"云端一体图形验证码组件"
,
"keywords"
:
[
"captcha"
,
...
...
@@ -14,7 +14,7 @@
"engines"
:
{
"HBuilderX"
:
"^3.1.0"
},
"dcloudext"
:
{
"dcloudext"
:
{
"sale"
:
{
"regular"
:
{
"price"
:
"0.00"
...
...
@@ -35,7 +35,9 @@
"type"
:
"unicloud-template-function"
},
"uni_modules"
:
{
"dependencies"
:
[],
"dependencies"
:
[
"uni-popup"
],
"encrypt"
:
[],
"platforms"
:
{
"cloud"
:
{
...
...
@@ -72,8 +74,8 @@
"联盟"
:
"u"
},
"Vue"
:
{
"vue2"
:
"y"
,
"vue3"
:
"u"
"vue2"
:
"y"
,
"vue3"
:
"u"
}
}
}
...
...
uni_modules/uni-id-pages-x/changelog.md
浏览文件 @
467058b2
## 1.0.5(2023-12-18)
更新 升级依赖的uni-captcha的版本为0.7.5
## 1.0.4(2023-12-16)
新增 支持一键登录
## 1.0.3(2023-11-23)
...
...
uni_modules/uni-popup/components/uni-popup/uni-popup.uvue
浏览文件 @
467058b2
<template>
<view class="popup-root" v-if="isOpen" v-show="isShow" @click="clickMask">
<view
class="popup-container"
@click.stop>
<view @click.stop>
<slot></slot>
</view>
</view>
...
...
@@ -87,7 +87,4 @@
align-items: center;
z-index: 99;
}
.popup-container {
margin-top: -120px;
}
</style>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录