提交 a30ff6e7 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

refactor: optimize code

......@@ -60,7 +60,7 @@
openCollapse(open: boolean) {
if (this.disabled) return
// 关闭其他已打开
$dispatch(this, 'UniCollapse', 'cloceAll')
$dispatch(this, 'UniCollapse', 'closeAll')
this.is_open = open
this.openOrClose(open)
},
......
......@@ -26,7 +26,7 @@
this.child_nodes.push(child)
},
// 关闭所有
cloceAll() {
closeAll() {
// 开启手风琴效果才回关闭其他
if (this.accordion && this.child_nodes.length > 0) {
this.child_nodes.forEach((item) => {
......
......@@ -27,6 +27,7 @@ defineProps({
},
obj: {
// #ifdef APP-ANDROID
// TODO: 确认类型是否合理
type: FooPropsObj1ReactiveObject,
// #endif
// #ifdef APP-IOS || WEB
......
......@@ -4,7 +4,7 @@ const COMPOSITION_PAGE_PATH = '/pages/directive/v-text/v-text-composition'
describe('v-text', () => {
if (!process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO: 仅 web 支持
it('web', async () => {
it('not web', async () => {
expect(1).toBe(1)
})
return
......
......@@ -105,7 +105,6 @@ const stopWatchCount = watch(count, (count : number, prevCount : number, onClean
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
watchCountTrackNum.value++
......
......@@ -120,7 +120,6 @@
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
self.watchCountTrackNum++
......@@ -144,7 +143,6 @@
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
self.watchCountTrackNum++
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部