Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Accustomed_
hello uni-app x
提交
46e6a1b2
H
hello uni-app x
项目概览
Accustomed_
/
hello uni-app x
与 Fork 源项目一致
Fork自
DCloud / hello uni-app x
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
46e6a1b2
编写于
9月 15, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
调整INode为Element
上级
46a58a16
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
48 addition
and
48 deletion
+48
-48
components/uni-collapse-item/uni-collapse-item.vue
components/uni-collapse-item/uni-collapse-item.vue
+4
-4
pages/CSS/layout/z-index.uvue
pages/CSS/layout/z-index.uvue
+1
-1
pages/component/general-attribute/general-attribute.uvue
pages/component/general-attribute/general-attribute.uvue
+2
-2
pages/component/input/input.uvue
pages/component/input/input.uvue
+2
-2
pages/component/view/view-draw.uvue
pages/component/view/view-draw.uvue
+7
-7
pages/tabBar/API.uvue
pages/tabBar/API.uvue
+2
-2
pages/template/calendar/calendar.uvue
pages/template/calendar/calendar.uvue
+3
-3
pages/template/half-screen/half-screen.uvue
pages/template/half-screen/half-screen.uvue
+4
-4
pages/template/long-list/long-list.uvue
pages/template/long-list/long-list.uvue
+10
-10
pages/template/scroll-sticky/scroll-sticky.uvue
pages/template/scroll-sticky/scroll-sticky.uvue
+3
-3
pages/template/swiper-list/swiper-list.uvue
pages/template/swiper-list/swiper-list.uvue
+6
-6
pages/template/swiper-list2/swiper-list2.uvue
pages/template/swiper-list2/swiper-list2.uvue
+4
-4
未找到文件。
components/uni-collapse-item/uni-collapse-item.vue
浏览文件 @
46e6a1b2
...
...
@@ -35,8 +35,8 @@
return
{
height
:
0
,
is_open
:
this
.
open
as
boolean
,
boxNode
:
null
as
INode
|
null
,
contentNode
:
null
as
INode
|
null
,
boxNode
:
null
as
Element
|
null
,
contentNode
:
null
as
Element
|
null
,
};
},
watch
:
{
...
...
@@ -51,8 +51,8 @@
$dispatch
(
this
,
'
UniCollapse
'
,
'
init
'
,
this
)
},
mounted
()
{
this
.
boxNode
=
this
.
$refs
[
'
boxRef
'
]
as
INode
;
this
.
contentNode
=
this
.
$refs
[
'
contentRef
'
]
as
INode
;
this
.
boxNode
=
this
.
$refs
[
'
boxRef
'
]
as
Element
;
this
.
contentNode
=
this
.
$refs
[
'
contentRef
'
]
as
Element
;
// this.openCollapse(this.open)
},
methods
:
{
...
...
pages/CSS/layout/z-index.uvue
浏览文件 @
46e6a1b2
...
...
@@ -24,7 +24,7 @@
methods: {
changeZIndex(zIndex : number) {
this.zIndex = 20;
(this.$refs['view'] as
INode
).style.setProperty('z-index', zIndex);
(this.$refs['view'] as
Element
).style.setProperty('z-index', zIndex);
}
}
}
...
...
pages/component/general-attribute/general-attribute.uvue
浏览文件 @
46e6a1b2
...
...
@@ -69,7 +69,7 @@ export default {
},
methods: {
validateGeneralAttributes() {
const generalTarget = this.$refs.get('general-target') as
INode
const generalTarget = this.$refs.get('general-target') as
Element
const generalId = generalTarget.getAttribute('id')
if (generalId != this.generalId) {
this.validateGeneralAttrText = '基础属性 id 验证失败'
...
...
@@ -98,7 +98,7 @@ export default {
this.validateGeneralAttrText = '基础属性验证成功'
},
changeHeight(){
const generalTarget = this.$refs['general-target'] as
INode
const generalTarget = this.$refs['general-target'] as
Element
generalTarget.style.setProperty('height', '200px')
}
},
...
...
pages/component/input/input.uvue
浏览文件 @
46e6a1b2
...
...
@@ -233,11 +233,11 @@
},
methods: {
setCursor: function (cursor : number) {
(this.$refs['input'] as
INode
).focus();
(this.$refs['input'] as
Element
).focus();
this.cursor = cursor;
},
setSelection: function (selectionStart : number, selectionEnd : number) {
(this.$refs['input2'] as
INode
).focus();
(this.$refs['input2'] as
Element
).focus();
this.selectionStart = selectionStart;
this.selectionEnd = selectionEnd;
},
...
...
pages/component/view/view-draw.uvue
浏览文件 @
46e6a1b2
...
...
@@ -55,7 +55,7 @@
},
methods: {
drawText() {
let node = (this.$refs['draw-text-view'] as
INode
)
let node = (this.$refs['draw-text-view'] as
Element
)
let ctx = node.getDrawableContext()
let width = node.getBoundingClientRect().width
ctx!!.reset()
...
...
@@ -72,7 +72,7 @@
ctx!!.update()
},
drawLines() {
let ctx = (this.$refs['draw-line-view'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-line-view'] as
Element
).getDrawableContext()
ctx!!.reset()
ctx!!.lineWidth = 10;
...
...
@@ -127,7 +127,7 @@
y += 15;
},
drawCircles() {
let ctx = (this.$refs['draw-circle-view'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-circle-view'] as
Element
).getDrawableContext()
ctx!!.reset()
// Draw shapes
for (var i = 0; i < 4; i++) {
...
...
@@ -153,7 +153,7 @@
},
drawStar() {
let ctx = (this.$refs['draw-dash-line'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-dash-line'] as
Element
).getDrawableContext()
ctx!!.reset()
ctx!!.beginPath();
var horn = 5; // 画5个角
...
...
@@ -224,7 +224,7 @@
return result
},
drawhouse() {
let ctx = (this.$refs['draw-house'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-house'] as
Element
).getDrawableContext()
ctx!!.reset()
ctx!!.lineWidth = 10;
...
...
@@ -244,7 +244,7 @@
ctx!!.update()
},
drawPoint() {
let ctx = (this.$refs['draw-style'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-style'] as
Element
).getDrawableContext()
ctx!!.reset()
for (let i = 0; i < 6; i++) {
for (let j = 0; j < 6; j++) {
...
...
@@ -263,7 +263,7 @@
ctx!!.update()
},
drawRect() {
let ctx = (this.$refs['draw-odd'] as
INode
).getDrawableContext()
let ctx = (this.$refs['draw-odd'] as
Element
).getDrawableContext()
ctx!!.reset()
// Create path
ctx!!.moveTo(30, 90);
...
...
pages/tabBar/API.uvue
浏览文件 @
46e6a1b2
...
...
@@ -490,10 +490,10 @@
})
},
showPop: function () {
(this.$refs["pop"] as
INode
).style.setProperty("display", "flex")
(this.$refs["pop"] as
Element
).style.setProperty("display", "flex")
},
hidePop: function () {
(this.$refs["pop"] as
INode
).style.setProperty("display", "none")
(this.$refs["pop"] as
Element
).style.setProperty("display", "none")
},
stopClickPop: function (e : MouseEvent) {
e.stopPropagation() //点击到pop的非灰色区域,拦截点击事件
...
...
pages/template/calendar/calendar.uvue
浏览文件 @
46e6a1b2
...
...
@@ -65,7 +65,7 @@
// 触发整个日历的点击事件,需要计算点击位置
select(event : TouchEvent) {
const refs = this.$refs['draw-weeks'] as
INode
const refs = this.$refs['draw-weeks'] as
Element
const rect = refs.getBoundingClientRect();
const dom_x = rect.left; // 元素左上角相对于视口的 X 坐标
const dom_y = rect.top; // 元素左上角相对于视口的 Y 坐标
...
...
@@ -139,7 +139,7 @@
// 绘制日历顶部信息
drawHeader() {
const refs = this.$refs['draw-header'] as
INode
const refs = this.$refs['draw-header'] as
Element
let ctx = refs.getDrawableContext()
if (ctx == null) return
const date_header_map = ['一', '二', '三', '四', '五', '六', '日']
...
...
@@ -167,7 +167,7 @@
// 绘制日历主体
drawWeek(weeks : Array<Array<DateType>>, time : string) {
const start_time = Date.now()
const refs = this.$refs['draw-weeks'] as
INode
const refs = this.$refs['draw-weeks'] as
Element
let ctx = refs.getDrawableContext()
if (ctx == null) return
const dom = refs.getBoundingClientRect()
...
...
pages/template/half-screen/half-screen.uvue
浏览文件 @
46e6a1b2
...
...
@@ -26,8 +26,8 @@
lastY: 0, //上次
lastY2: 0, //
bAnimation: false, //是否动画
halfNode: null as
INode
| null,
scrollNode: null as
INode
| null
halfNode: null as
Element
| null,
scrollNode: null as
Element
| null
}
},
methods: {
...
...
@@ -131,9 +131,9 @@
}
},
onReady() {
this.halfNode = this.$refs['halfScreen'] as
INode
;
this.halfNode = this.$refs['halfScreen'] as
Element
;
this.halfHeight = this.halfNode!.getBoundingClientRect().height;
this.scrollNode = this.$refs['halfScroll'] as
INode
;
this.scrollNode = this.$refs['halfScroll'] as
Element
;
this.totalHeight = uni.getWindowInfo().windowHeight;
this.halfNode?.style?.setProperty('top', this.totalHeight.toString());
...
...
pages/template/long-list/long-list.uvue
浏览文件 @
46e6a1b2
...
...
@@ -76,21 +76,21 @@
} as SwiperViewItem
] as SwiperViewItem[],
swiperIndex: -1,
$pageScrollView: null as null |
INode
,
$pageScrollView: null as null |
Element
,
$headerHeight: 0,
$animationFinishIndex: 0,
$tabScrollView: null as null |
INode
,
$indicatorNode: null as null |
INode
,
$tabScrollView: null as null |
Element
,
$indicatorNode: null as null |
Element
,
$swiperWidth: 0,
$swiperTabsRect: [] as SwiperTabsItem[]
}
},
onReady() {
this.$pageScrollView = this.$refs['pageScrollView'] as
INode
;
this.$headerHeight = (this.$refs['header'] as
INode
).offsetHeight
this.$swiperWidth = (this.$refs['swiper'] as
INode
).getBoundingClientRect().width
this.$tabScrollView = this.$refs['tabScroll'] as
INode
this.$indicatorNode = this.$refs['indicator'] as
INode
this.$pageScrollView = this.$refs['pageScrollView'] as
Element
;
this.$headerHeight = (this.$refs['header'] as
Element
).offsetHeight
this.$swiperWidth = (this.$refs['swiper'] as
Element
).getBoundingClientRect().width
this.$tabScrollView = this.$refs['tabScroll'] as
Element
this.$indicatorNode = this.$refs['indicator'] as
Element
this.cacheTabItemsSize()
this.setSwiperIndex(0, true)
},
...
...
@@ -170,7 +170,7 @@
},
cacheTabItemsSize() {
this.$swiperTabsRect.length = 0
const tabs = this.$refs["swipertab"] as
INode
[]
const tabs = this.$refs["swipertab"] as
Element
[]
tabs.forEach((node) => {
this.$swiperTabsRect.push({
x: node.offsetLeft,
...
...
@@ -260,4 +260,4 @@
.swiper-item {
flex: 1;
}
</style>
\ No newline at end of file
</style>
pages/template/scroll-sticky/scroll-sticky.uvue
浏览文件 @
46e6a1b2
...
...
@@ -37,7 +37,7 @@
stickyTop: 0,
stickyTran: 0,
scrollTop: 0,
stickyNode: null as
INode
| null
stickyNode: null as
Element
| null
}
},
methods: {
...
...
@@ -70,11 +70,11 @@
onLoad() {
},
onReady() {
this.stickyNode = this.$refs['sticky'] as
INode
;
this.stickyNode = this.$refs['sticky'] as
Element
;
// let rect = this.stickyNode?.getBoundingClientRect();
// this.stickyTop = rect?.top;
//this.stickyTop = this.stickyNode?.getBoundingClientRect()?.top;
let rect = (this.$refs['sticky'] as
INode
).getBoundingClientRect();
let rect = (this.$refs['sticky'] as
Element
).getBoundingClientRect();
this.stickyTop = rect.top;
}
}
...
...
pages/template/swiper-list/swiper-list.uvue
浏览文件 @
46e6a1b2
...
...
@@ -45,8 +45,8 @@
return {
swiperList: [] as SwiperViewItem[],
swiperIndex: -1,
$tabScrollView: null as null |
INode
,
$indicatorNode: null as null |
INode
,
$tabScrollView: null as null |
Element
,
$indicatorNode: null as null |
Element
,
$animationFinishIndex: 0,
$swiperWidth: 0,
$swiperTabsRect: [] as SwiperTabsItem[]
...
...
@@ -61,9 +61,9 @@
}
},
onReady() {
this.$tabScrollView = this.$refs['tabScroll'] as
INode
this.$indicatorNode = this.$refs['indicator'] as
INode
this.$swiperWidth = (this.$refs["swiper"] as
INode
).getBoundingClientRect().width
this.$tabScrollView = this.$refs['tabScroll'] as
Element
this.$indicatorNode = this.$refs['indicator'] as
Element
this.$swiperWidth = (this.$refs["swiper"] as
Element
).getBoundingClientRect().width
this.cacheTabItemsSize()
this.setSwiperIndex(0, true)
},
...
...
@@ -104,7 +104,7 @@
},
cacheTabItemsSize() {
this.$swiperTabsRect.length = 0;
const tabs = this.$refs["swipertab"] as
INode
[]
const tabs = this.$refs["swipertab"] as
Element
[]
tabs.forEach((node) => {
this.$swiperTabsRect.push({
x: node.offsetLeft,
...
...
pages/template/swiper-list2/swiper-list2.uvue
浏览文件 @
46e6a1b2
...
...
@@ -39,7 +39,7 @@
return {
swiperList: [] as SwiperViewItem[],
swiperIndex: -1,
$tabScrollView: null as null |
INode
,
$tabScrollView: null as null |
Element
,
$animationFinishIndex: 0,
$swiperWidth: 0
}
...
...
@@ -52,8 +52,8 @@
}
},
onReady() {
this.$tabScrollView = this.$refs['tabScroll'] as
INode
this.$swiperWidth = (this.$refs["swiper"] as
INode
).getBoundingClientRect().width
this.$tabScrollView = this.$refs['tabScroll'] as
Element
this.$swiperWidth = (this.$refs["swiper"] as
Element
).getBoundingClientRect().width
this.setSwiperIndex(0, true)
},
methods: {
...
...
@@ -106,7 +106,7 @@
const min_ratio = 1
const max_ratio = 1.3
const tabs = this.$refs['swipertab'] as
INode
[]
const tabs = this.$refs['swipertab'] as
Element
[]
const current_node = tabs[current_index]!
const move_to_node = tabs[move_to_index]!
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录