diff --git a/App.uvue b/App.uvue index dc2b78f1b0dc06db4166445922a1d20b2e8780e7..ad6333956e97404488cfa4134df6caa7956cd3c8 100644 --- a/App.uvue +++ b/App.uvue @@ -3,6 +3,23 @@ let firstBackTime = 0 export default { + globalData: { + str: 'default globalData str', + num: 0, + bool: false, + obj: { + str: 'default globalData obj str', + num: 0, + bool: false, + }, + null: null as string | null, + arr: [] as number[], + set: new Set(), + map: new Map(), + func: (): string => { + return 'globalData func' + } + }, onLaunch: function () { // 自动化测试 setLifeCycleNum(state.lifeCycleNum + 1000) @@ -62,4 +79,4 @@ \ No newline at end of file + diff --git a/common/uni-uvue.css b/common/uni-uvue.css index c033ed84c908612a8db83b7d3265b8c8d50eced7..dfea67a9597c43b201b86fa92bb8b5b1eb40a592 100644 --- a/common/uni-uvue.css +++ b/common/uni-uvue.css @@ -34,11 +34,6 @@ line-height: 20px; } -.hello-link { - color: #7A7E83; - font-size: 14px; - line-height: 20px; -} .uni-panel { margin-bottom: 12px; @@ -74,20 +69,6 @@ font-weight: normal; } -.uni-panel-icon { - margin-left: 15px; - color: #999999; - font-size: 14px; - font-weight: normal; - transform: rotate(0deg); - transition-duration: 0s; - transition-property: transform; -} - -.uni-panel-icon-on { - transform: rotate(180deg); -} - .uni-navigate-item { /* #ifdef H5 */ display: flex; @@ -118,10 +99,4 @@ font-size: 14px; font-weight: normal; } - -.uni-navigate-icon { - margin-left: 15px; - color: #999999; - font-size: 14px; - font-weight: normal; -} \ No newline at end of file + diff --git a/common/uni.css b/common/uni.css index cc196f2c516783147c43150bc83124d5fa82c731..818950bb5c135bf987d22b45a6d98bb31d1309ac 100644 --- a/common/uni.css +++ b/common/uni.css @@ -139,10 +139,6 @@ justify-content: center; } -.uni-textarea-box { - background: #ffffff; -} - .uni-textarea { padding: 18rpx; line-height: 1.6; diff --git a/components/enum-data/enum-data.uts b/components/enum-data/enum-data.uts new file mode 100644 index 0000000000000000000000000000000000000000..e752fc5da3aa4f8a5d78033f58ee2fed371e0d11 --- /dev/null +++ b/components/enum-data/enum-data.uts @@ -0,0 +1 @@ +export type ItemType = { value : number; name : string } \ No newline at end of file diff --git a/components/enum-data/enum-data.vue b/components/enum-data/enum-data.vue index 2183d613d0faf471da3645c8595d6d0488304cb1..5cbf838df7be9364fbaaf2bf26eb0648a8583980 100644 --- a/components/enum-data/enum-data.vue +++ b/components/enum-data/enum-data.vue @@ -1,7 +1,5 @@ + + diff --git a/pages/API/get-app/get-app.test.js b/pages/API/get-app/get-app.test.js index 376c1b6971627f949365af40e372b5ab99f5546a..64f028f8bef00ba5eff41b141717bece6c6a98d4 100644 --- a/pages/API/get-app/get-app.test.js +++ b/pages/API/get-app/get-app.test.js @@ -1,13 +1,62 @@ -const PAGE_PATH = '/pages/API/get-app/get-app' - -describe('getApp', () => { - it('getApp', async () => { - const page = await program.navigateTo(PAGE_PATH) - await page.waitFor(1000) - const oldData = await page.data() - await page.callMethod('_increasetLifeCycleNum') - const newData = await page.data() - expect(newData.lifeCycleNum - oldData.lifeCycleNum).toBe(100) - await page.callMethod('setLifeCycleNum', oldData.lifeCycleNum) - }) -}) +const PAGE_PATH = '/pages/API/get-app/get-app' + +describe('getApp', () => { + let page = null + beforeAll(async () => { + page = await program.navigateTo(PAGE_PATH) + await page.waitFor('view') + }) + it('globalData', async () => { + await page.callMethod('getGlobalData') + let data = await page.data() + expect(data.originGlobalData.str).toBe('default globalData str') + expect(data.originGlobalData.num).toBe(0) + expect(data.originGlobalData.bool).toBe(false) + expect(data.originGlobalData.obj).toEqual({ + bool: false, + num: 0, + str: 'default globalData obj str' + }) + expect(data.originGlobalData.arr).toEqual([]) + if (process.env.uniTestPlatformInfo.startsWith('android')) { + expect(data.originGlobalData.set).toEqual([]) + } else { + expect(data.originGlobalData.set).toEqual({}) + } + expect(data.originGlobalData.map).toEqual({}) + expect(data.originGlobalDataFuncRes).toBe('globalData func') + await page.callMethod('setGlobalData') + data = await page.data() + expect(data.newGlobalData.str).toBe('new globalData str') + expect(data.newGlobalData.num).toBe(100) + expect(data.newGlobalData.bool).toBe(true) + expect(data.newGlobalData.obj).toEqual({ + bool: true, + num: 200, + str: 'new globalData obj str' + }) + expect(data.newGlobalData.arr).toEqual([1, 2, 3]) + if (process.env.uniTestPlatformInfo.startsWith('android')) { + expect(data.newGlobalData.set).toEqual(['a', 'b', 'c']) + } else { + expect(data.originGlobalData.set).toEqual({}) + } + if (process.env.uniTestPlatformInfo.startsWith('android')) { + expect(data.newGlobalData.map).toEqual({ + 'a': 1, + 'b': 2, + 'c': 3 + }) + } else { + expect(data.originGlobalData.map).toEqual({}) + } + expect(data.newGlobalDataFuncRes).toBe('new globalData func') + }) + it('method', async () => { + const oldLifeCycleNum = await page.data('lifeCycleNum') + await page.callMethod('_increasetLifeCycleNum') + const newLifeCycleNum = await page.data('lifeCycleNum') + expect(newLifeCycleNum - oldLifeCycleNum).toBe(100) + await page.callMethod('setLifeCycleNum', oldLifeCycleNum) + }) +}) \ No newline at end of file diff --git a/pages/API/get-app/get-app.uvue b/pages/API/get-app/get-app.uvue index f6f71119365897d36bc521f72823bf8304ac86c4..f3bc1dd756e5aacf9c92181f852e023d9beeecb7 100644 --- a/pages/API/get-app/get-app.uvue +++ b/pages/API/get-app/get-app.uvue @@ -1,39 +1,169 @@ - - - + + + + + diff --git a/pages/API/get-network-type/get-network-type.uvue b/pages/API/get-network-type/get-network-type.uvue index ed6c657bb80bd1a83dac6d2b6eec5a2c3bb5279c..72c683f591089c7854bfef80352a28b0135f7ace 100644 --- a/pages/API/get-network-type/get-network-type.uvue +++ b/pages/API/get-network-type/get-network-type.uvue @@ -5,11 +5,11 @@ 网络状态 - 未获取 + 未获取 请点击下面按钮获取网络状态 - {{networkType}} + {{networkType}} diff --git a/pages/API/globalProperties/globalProperties.test.js b/pages/API/globalProperties/globalProperties.test.js new file mode 100644 index 0000000000000000000000000000000000000000..621a39b2400d044b143e534ffa785aa2766dab20 --- /dev/null +++ b/pages/API/globalProperties/globalProperties.test.js @@ -0,0 +1,66 @@ +const PAGE_PATH = '/pages/API/globalProperties/globalProperties' + +describe('globalProperties', () => { + if (process.env.uniTestPlatformInfo.startsWith('android')) { + let page = null + beforeAll(async () => { + page = await program.navigateTo(PAGE_PATH) + await page.waitFor(500) + }) + it('globalProperties', async () => { + let data = await page.data() + expect(data.myGlobalProperties.str).toBe('default string') + expect(data.myGlobalProperties.num).toBe(0) + expect(data.myGlobalProperties.bool).toBe(false) + expect(data.myGlobalProperties.obj).toEqual({ + bool: false, + num: 0, + str: 'default globalProperties obj string' + }) + expect(data.myGlobalProperties.arr).toEqual([]) + expect(data.myGlobalProperties.set).toEqual([]) + expect(data.myGlobalProperties.map).toEqual({}) + expect(data.myGlobalProperties.reactiveObj).toEqual({ + str: 'default reactive string', + num: 0, + bool: false + }) + expect(data.globalPropertiesFnRes).toBe('globalPropertiesStr: default string, globalPropertiesNum: 0') + await page.callMethod('updateGlobalProperties') + data = await page.data() + expect(data.myGlobalProperties.str).toBe('new string') + expect(data.myGlobalProperties.num).toBe(100) + expect(data.myGlobalProperties.bool).toBe(true) + expect(data.myGlobalProperties.obj).toEqual({ + bool: true, + num: 100, + str: 'new globalProperties obj string' + }) + expect(data.myGlobalProperties.arr).toEqual([1, 2, 3]) + expect(data.myGlobalProperties.set).toEqual(['a', 'b', 'c']) + expect(data.myGlobalProperties.map).toEqual({ + 'a': 1, + 'b': 2, + 'c': 3 + }) + expect(data.myGlobalProperties.reactiveObj).toEqual({ + str: 'new reactive string', + num: 200, + bool: true + }) + expect(data.globalPropertiesFnRes).toBe('globalPropertiesStr: new string, globalPropertiesNum: 100') + }) + it('screenshot', async () => { + await page.waitFor(500) + const image = await program.screenshot({ + fullPage: true + }); + expect(image).toMatchImageSnapshot(); + }) + } else { + // TODO: web 端暂不支持 + it('web', async () => { + expect(1).toBe(1) + }) + } +}) diff --git a/pages/API/globalProperties/globalProperties.uvue b/pages/API/globalProperties/globalProperties.uvue new file mode 100644 index 0000000000000000000000000000000000000000..850cead345003d95e85c067918a961f8a98f9d7d --- /dev/null +++ b/pages/API/globalProperties/globalProperties.uvue @@ -0,0 +1,98 @@ + + + diff --git a/pages/API/loading/loading.uvue b/pages/API/loading/loading.uvue index ed07b5c28bf214bf49e0bcad619b7b382011e42a..783c46084b00f658d08313dd4d4d900188d484ad 100644 --- a/pages/API/loading/loading.uvue +++ b/pages/API/loading/loading.uvue @@ -12,6 +12,10 @@ + + \ No newline at end of file + diff --git a/pages/API/storage/storage.uvue b/pages/API/storage/storage.uvue index 1e414f5f6d4bdfb05aa0ca7a350c8c78f42d0be8..22f96ef17092d441c030ed961b612f45efb8bf3a 100644 --- a/pages/API/storage/storage.uvue +++ b/pages/API/storage/storage.uvue @@ -349,13 +349,4 @@ export default { diff --git a/pages/API/toast/toast.uvue b/pages/API/toast/toast.uvue index bb3c5add886474103de044f37a441bbcd75c7e72..5c12669954cf719a41a396d65bc3fbbaed686b55 100644 --- a/pages/API/toast/toast.uvue +++ b/pages/API/toast/toast.uvue @@ -27,6 +27,14 @@ exeRet: '' } }, + onLoad(){ + uni.showToast({ + title:'onLoad 调用示例,1秒后消失' + }) + setTimeout(function() { + uni.hideToast() + }, 1000); + }, methods: { toast1Tap: function () { uni.showToast({ diff --git a/pages/API/uni-verify/uni-verify.uvue b/pages/API/uni-verify/uni-verify.uvue new file mode 100644 index 0000000000000000000000000000000000000000..dac76c4e2a1cc7deac2f1012ebea8e5976dfa287 --- /dev/null +++ b/pages/API/uni-verify/uni-verify.uvue @@ -0,0 +1,104 @@ + + + + + diff --git a/pages/API/unicloud-call-function/unicloud-call-function.uvue b/pages/API/unicloud-call-function/unicloud-call-function.uvue index 290927ef1040f36c4bce58040d403d6ab7036685..f632adf9a8d780e123a69ec032915c819d20ff76 100644 --- a/pages/API/unicloud-call-function/unicloud-call-function.uvue +++ b/pages/API/unicloud-call-function/unicloud-call-function.uvue @@ -55,13 +55,13 @@ num: 1, str: 'ABC' } - }).then(res => { + }).then(res => { const result = res.result this.callFunctionResult = result console.log(JSON.stringify(result)) uni.hideLoading() this.notify(result['showMessage'] as string, '提示') - }).catch((err : any | null) => { + }).catch((err : any | null) => { const error = err as UniCloudError this.callFunctionError = { errCode: error.errCode, @@ -76,4 +76,4 @@ \ No newline at end of file + diff --git a/pages/API/unicloud-database/unicloud-database.uvue b/pages/API/unicloud-database/unicloud-database.uvue index 8e2726abcecbcb1c09ee2e498c1cd6694de040b2..2d2e9734600e5d345c42729d1325ad6c4b9ae6df 100644 --- a/pages/API/unicloud-database/unicloud-database.uvue +++ b/pages/API/unicloud-database/unicloud-database.uvue @@ -67,16 +67,15 @@ .add({ num: 1, tag: 'default-tag', - date: new Date(), - point: new db.Geo.Point(116, 38) + date: new Date() }) - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.addId = res.id this.notify(`新增成功,id: ${res.id}`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -95,7 +94,7 @@ num: 3, tag: 'default-tag', }]) - .then((res) => { + .then((res) => { uni.hideLoading() console.log(res) console.log('JSON.stringify(res.inserted)', JSON.stringify(res.inserted)) @@ -103,7 +102,7 @@ this.batchAddinserted = res.inserted this.notify(`新增成功条数${res.inserted}, id列表: ${res.ids.join(',')}`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -123,13 +122,13 @@ .skip(1) .limit(2) .get() - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.getData = res.data this.notify(`获取成功,取到了${res.data.length}条数据`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -149,13 +148,13 @@ .skip(1) .limit(2) .get() - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.getWithCommandData = res.data this.notify(`获取成功,取到了${res.data.length}条数据`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -173,13 +172,13 @@ .update({ num: 4 }) - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.updateUpdated = res.updated this.notify(`更新成功,更新了${res.updated}条数据`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -195,13 +194,13 @@ 'tag == "default-tag"' ) .remove() - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.removeDeleted = res.deleted this.notify(`删除成功,删掉了${res.deleted}条数据`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -246,11 +245,11 @@ tag: "default-tag" }]) }) - .then((_) : void => { + .then((_) : void => { uni.hideLoading() this.notify('数据初始化成功', '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() console.error(err) const error = err as UniCloudError @@ -270,13 +269,13 @@ .getTemp() db.collection(local, foreign) .get() - .then(res => { + .then(res => { uni.hideLoading() console.log(res) this.lookupData = res.data this.notify(`联表查询成功,取到了${res.data.length}条数据`, '提示') }) - .catch((err : any | null) => { + .catch((err : any | null) => { uni.hideLoading() const error = err as UniCloudError this.notify(error.errMsg, '错误') @@ -287,4 +286,4 @@ \ No newline at end of file + diff --git a/pages/API/unicloud-file-api/unicloud-file-api.uvue b/pages/API/unicloud-file-api/unicloud-file-api.uvue index a37cc58735a52d4bb6ec2eaa54c7136d4fca1ac7..049d9cf1f662a9cb7d5798a4685213fdf87ade99 100644 --- a/pages/API/unicloud-file-api/unicloud-file-api.uvue +++ b/pages/API/unicloud-file-api/unicloud-file-api.uvue @@ -38,7 +38,7 @@ filePath: tempFilePath, cloudPath: 'test.jpg' }) - .then(function (res) { + .then(function (res) { uni.hideLoading() console.log(res) uni.showModal({ @@ -46,7 +46,7 @@ showCancel: false }); }) - .catch(function (err : any | null) { + .catch(function (err : any | null) { uni.hideLoading() const error = err as UniCloudError uni.showModal({ @@ -68,4 +68,4 @@ \ No newline at end of file + diff --git a/pages/API/unicloud-import-object/unicloud-import-object.uvue b/pages/API/unicloud-import-object/unicloud-import-object.uvue index ff42363115401a1c1cc301b067a07292fec70fc0..1f2131d104011537806e8e5c55f8a0ae5d30877b 100644 --- a/pages/API/unicloud-import-object/unicloud-import-object.uvue +++ b/pages/API/unicloud-import-object/unicloud-import-object.uvue @@ -63,11 +63,11 @@ }) const title = this.todoTitle const content = this.todoContent - todo.add(title, content).then((res : UTSJSONObject) : void => { + todo.add(title, content).then((res : UTSJSONObject) : void => { this.returnTodoTitle = res['title'] as string this.returnTodoContent = res['content'] as string this.notify(res['showMessage'] as string, '提示') - }).catch((err : any | null) : void => { + }).catch((err : any | null) : void => { const error = err as UniCloudError console.error(error) }) @@ -78,9 +78,9 @@ retry: true } }) - todoObj.randomFail().then((res : UTSJSONObject) : void => { + todoObj.randomFail().then((res : UTSJSONObject) : void => { this.notify(res['showMessage'] as string, '提示') - }).catch((err : any | null) : void => { + }).catch((err : any | null) : void => { const error = err as UniCloudError console.error(error) }) @@ -89,16 +89,16 @@ const todo = uniCloud.importObject('todo', { customUI: this.isUniTest }) - todo.fail().then((res : UTSJSONObject) : void => { + todo.fail().then((res : UTSJSONObject) : void => { this.notify('todo.fail应调用失败,此处错误的触发了成功回调', '错误') console.log('todo.fail: ', res); - }).catch((err : any | null) : void => { + }).catch((err : any | null) : void => { const error = err as UniCloudError this.failErrCode = error.errCode as string console.error(error) if (this.isUniTest) { uni.showToast({ - title: err.errMsg + title: error.errMsg }) } }) @@ -107,10 +107,10 @@ const todo = uniCloud.importObject('todo', { customUI: this.isUniTest }) - todo.success().then((res : UTSJSONObject) : void => { + todo.success().then((res : UTSJSONObject) : void => { this.successErrCode = res['errCode'] as number this.notify(res['showMessage'] as string, '提示') - }).catch((err : any | null) : void => { + }).catch((err : any | null) : void => { const error = err as UniCloudError console.error(error) }) @@ -121,4 +121,4 @@ \ No newline at end of file + diff --git a/pages/API/websocket-global/websocket-global.uvue b/pages/API/websocket-global/websocket-global.uvue index d2593ab37c35da85f2e2c8a6bc70ef225ba57c55..06d2087fd3e9e05a96f82d1845289c03f3d63a5c 100644 --- a/pages/API/websocket-global/websocket-global.uvue +++ b/pages/API/websocket-global/websocket-global.uvue @@ -155,14 +155,6 @@ margin: 20rpx 0; } - .websocket-room { - height: 40px; - line-height: 40px; - text-align: center; - border-bottom: solid 1px #dddddd; - margin-bottom: 20px; - } - .websocket-msg { padding: 40px 0px; text-align: center; diff --git a/pages/CSS/layout/z-index.uvue b/pages/CSS/layout/z-index.uvue index aa3b84e04678c97ca7b1cfd8d8bc29645a7b229b..9564f69c8c2e8a8f41ac602cad1ac4790f161ea2 100644 --- a/pages/CSS/layout/z-index.uvue +++ b/pages/CSS/layout/z-index.uvue @@ -1,15 +1,27 @@ @@ -37,4 +49,8 @@ justify-content: center; align-items: center; } - \ No newline at end of file + + .fixed { + position: fixed; + } + diff --git a/pages/CSS/overflow/overflow.test.js b/pages/CSS/overflow/overflow.test.js new file mode 100644 index 0000000000000000000000000000000000000000..e2e22bed95c044cd5e0baa379e028dcae76adb6d --- /dev/null +++ b/pages/CSS/overflow/overflow.test.js @@ -0,0 +1,16 @@ +describe('component-native-list-view', () => { + let page + beforeAll(async () => { + //打开list-view测试页 + page = await program.reLaunch('/pages/CSS/overflow/overflow') + await page.waitFor("image") + }) + + //检测overflow设置hidden,visible + it('check_view_overflow', async () => { + const image = await program.screenshot({ + fullPage: true, + }); + expect(image).toMatchImageSnapshot(); + }) +}) diff --git a/pages/CSS/overflow/overflow.uvue b/pages/CSS/overflow/overflow.uvue new file mode 100644 index 0000000000000000000000000000000000000000..982676cae74cbacecc53450f7c6bc17168187814 --- /dev/null +++ b/pages/CSS/overflow/overflow.uvue @@ -0,0 +1,92 @@ + + + + + diff --git a/pages/CSS/text/font-family.uvue b/pages/CSS/text/font-family.uvue index 4b76eca2184776b17cea1f58c0f740e8b9a48855..8db0af8ed5482323dfea5c205afd9fa6f2e7f42e 100644 --- a/pages/CSS/text/font-family.uvue +++ b/pages/CSS/text/font-family.uvue @@ -4,25 +4,44 @@ font-family: cursive font-family: 阿里妈妈刀隶体-ttf(网络字体下载后生效) font-family: 阿里妈妈刀隶体-otf - + + + \ No newline at end of file diff --git a/pages/CSS/text/uni.ttf b/pages/CSS/text/uni.ttf new file mode 100644 index 0000000000000000000000000000000000000000..60a1968d08cc6056c70b5402b2effac43c6f96a3 Binary files /dev/null and b/pages/CSS/text/uni.ttf differ diff --git a/pages/component/button/button.uvue b/pages/component/button/button.uvue index da6bac0895fa0b52777b0b3aa084c20e40c4b010..af89250a360d3c2c9f8aba73bdbe20d182bd0aeb 100644 --- a/pages/component/button/button.uvue +++ b/pages/component/button/button.uvue @@ -1,5 +1,5 @@ + + diff --git a/pages/component/list-view/list-view-multiplex.test.js b/pages/component/list-view/list-view-multiplex.test.js index 77be035af1348d03ff3afda4b3b72e1511819d32..5d2b4e017bf86e168cd60378c44b3837d76c7c66 100644 --- a/pages/component/list-view/list-view-multiplex.test.js +++ b/pages/component/list-view/list-view-multiplex.test.js @@ -1,16 +1,22 @@ describe('component-native-list-view', () => { - let page - beforeAll(async () => { - //打开list-view-multiplex测试页 - page = await program.reLaunch('/pages/component/list-view/list-view-multiplex') - await page.waitFor('list-view') - }) - - //滚动list-view到底部 加载更多 如果异常则直接闪退 - it('check_list_item_multiplex', async () => { - await page.callMethod('listViewScrollByY', 5000) - await page.waitFor(400) - await page.callMethod('listViewScrollByY', 100) - }) + if (process.env.uniTestPlatformInfo.startsWith('android')) { + let page + beforeAll(async () => { + //打开list-view-multiplex测试页 + page = await program.reLaunch('/pages/component/list-view/list-view-multiplex') + await page.waitFor('list-view') + }) + //滚动list-view到底部 加载更多 如果异常则直接闪退 + it('check_list_item_multiplex', async () => { + await page.callMethod('listViewScrollByY', 5000) + await page.waitFor(400) + await page.callMethod('listViewScrollByY', 100) + }) + } else { + // TODO: web 端暂不支持 + it('web', async () => { + expect(1).toBe(1) + }) + } }) diff --git a/pages/component/list-view/list-view-multiplex.uvue b/pages/component/list-view/list-view-multiplex.uvue index ed15bb8e9740ccc76e9b64ad8c1cbaa2b31d1288..f9049e4f4cfbee2cc4767d450383f63878aa0985 100644 --- a/pages/component/list-view/list-view-multiplex.uvue +++ b/pages/component/list-view/list-view-multiplex.uvue @@ -1,5 +1,7 @@