hookehuyr

fix 移动端最大宽度优化

...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2022-05-26 23:52:36 3 * @Date: 2022-05-26 23:52:36
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2024-07-04 14:47:58 5 + * @LastEditTime: 2024-07-27 15:57:16
6 * @FilePath: /data-table/src/App.vue 6 * @FilePath: /data-table/src/App.vue
7 * @Description: 7 * @Description:
8 --> 8 -->
...@@ -207,6 +207,9 @@ onMounted(async () => { ...@@ -207,6 +207,9 @@ onMounted(async () => {
207 // const visitorId = result.visitorId 207 // const visitorId = result.visitorId
208 // console.log(visitorId) 208 // console.log(visitorId)
209 // }) 209 // })
210 + if (is_wx.value) {
211 + document.getElementById('app').style.maxWidth = '100vw';
212 + }
210 } 213 }
211 214
212 // TAG:检查是否更新 215 // TAG:检查是否更新
......