diff --git a/snowy-admin-web/src/views/auth/monitor/bTab.vue b/snowy-admin-web/src/views/auth/monitor/bTab.vue index ba0e358c..ab420c0d 100644 --- a/snowy-admin-web/src/views/auth/monitor/bTab.vue +++ b/snowy-admin-web/src/views/auth/monitor/bTab.vue @@ -65,7 +65,6 @@ { title: '操作', dataIndex: 'action', - width: '150px', fixed: 'right', scopedSlots: { customRender: 'action' } } diff --git a/snowy-admin-web/src/views/auth/monitor/cTab.vue b/snowy-admin-web/src/views/auth/monitor/cTab.vue index dcb96e39..75ee8bef 100644 --- a/snowy-admin-web/src/views/auth/monitor/cTab.vue +++ b/snowy-admin-web/src/views/auth/monitor/cTab.vue @@ -65,7 +65,6 @@ { title: '操作', dataIndex: 'action', - width: '150px', fixed: 'right', scopedSlots: { customRender: 'action' } } diff --git a/snowy-admin-web/src/views/biz/dict/index.vue b/snowy-admin-web/src/views/biz/dict/index.vue index 9ff49a5e..d789c358 100644 --- a/snowy-admin-web/src/views/biz/dict/index.vue +++ b/snowy-admin-web/src/views/biz/dict/index.vue @@ -114,8 +114,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' }) } // 定义tableDOM diff --git a/snowy-admin-web/src/views/biz/group/index.vue b/snowy-admin-web/src/views/biz/group/index.vue index e82b770b..e8108c4f 100644 --- a/snowy-admin-web/src/views/biz/group/index.vue +++ b/snowy-admin-web/src/views/biz/group/index.vue @@ -107,8 +107,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: 220 + fixed: 'right' }) } const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/biz/notice/index.vue b/snowy-admin-web/src/views/biz/notice/index.vue index b5a95b89..4402de37 100644 --- a/snowy-admin-web/src/views/biz/notice/index.vue +++ b/snowy-admin-web/src/views/biz/notice/index.vue @@ -186,8 +186,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '200px' + fixed: 'right' }) } const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/biz/org/index.vue b/snowy-admin-web/src/views/biz/org/index.vue index 19577c26..a4677a5c 100644 --- a/snowy-admin-web/src/views/biz/org/index.vue +++ b/snowy-admin-web/src/views/biz/org/index.vue @@ -135,8 +135,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' }) } const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/biz/position/index.vue b/snowy-admin-web/src/views/biz/position/index.vue index 31faec56..bf69ac9a 100644 --- a/snowy-admin-web/src/views/biz/position/index.vue +++ b/snowy-admin-web/src/views/biz/position/index.vue @@ -135,8 +135,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' }) } let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/biz/user/index.vue b/snowy-admin-web/src/views/biz/user/index.vue index 5ebca819..c7a53d45 100644 --- a/snowy-admin-web/src/views/biz/user/index.vue +++ b/snowy-admin-web/src/views/biz/user/index.vue @@ -235,8 +235,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '220px' + fixed: 'right' }) } const toolConfig = { refresh: true, height: true, columnSetting: true } diff --git a/snowy-admin-web/src/views/dev/config/otherConfig/index.vue b/snowy-admin-web/src/views/dev/config/otherConfig/index.vue index 457968e5..6ebab1cf 100644 --- a/snowy-admin-web/src/views/dev/config/otherConfig/index.vue +++ b/snowy-admin-web/src/views/dev/config/otherConfig/index.vue @@ -73,7 +73,6 @@ title: '操作', key: 'action', fixed: 'right', - width: '150px', scopedSlots: { customRender: 'action' } } ] diff --git a/snowy-admin-web/src/views/dev/config/passwordConfig/weakPassword/index.vue b/snowy-admin-web/src/views/dev/config/passwordConfig/weakPassword/index.vue index 5b7689d9..21a1187f 100644 --- a/snowy-admin-web/src/views/dev/config/passwordConfig/weakPassword/index.vue +++ b/snowy-admin-web/src/views/dev/config/passwordConfig/weakPassword/index.vue @@ -64,8 +64,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/dict/category/index.vue b/snowy-admin-web/src/views/dev/dict/category/index.vue index b8e8f560..7a5b8c3a 100644 --- a/snowy-admin-web/src/views/dev/dict/category/index.vue +++ b/snowy-admin-web/src/views/dev/dict/category/index.vue @@ -129,7 +129,6 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', width: '150px' } ] @@ -139,6 +138,7 @@ // 定义tableDOM const tableRef = ref(null) const formRef = ref() + const cardLoading = ref(true) const searchFormRef = ref() const searchFormState = ref({}) // 默认展开的节点 @@ -189,6 +189,8 @@ if (res) { treeData.value = res } + }).finally(() => { + cardLoading.value = false }) } // 点击树查询 diff --git a/snowy-admin-web/src/views/dev/email/index.vue b/snowy-admin-web/src/views/dev/email/index.vue index 2777276e..2126ab6d 100644 --- a/snowy-admin-web/src/views/dev/email/index.vue +++ b/snowy-admin-web/src/views/dev/email/index.vue @@ -123,8 +123,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/file/index.vue b/snowy-admin-web/src/views/dev/file/index.vue index 62af8aeb..5bed244e 100644 --- a/snowy-admin-web/src/views/dev/file/index.vue +++ b/snowy-admin-web/src/views/dev/file/index.vue @@ -176,8 +176,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: 220 + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/job/index.vue b/snowy-admin-web/src/views/dev/job/index.vue index 42736816..d64aabcb 100644 --- a/snowy-admin-web/src/views/dev/job/index.vue +++ b/snowy-admin-web/src/views/dev/job/index.vue @@ -153,8 +153,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '220px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/log/oplog/index.vue b/snowy-admin-web/src/views/dev/log/oplog/index.vue index 4a27e8bc..55dee0f4 100644 --- a/snowy-admin-web/src/views/dev/log/oplog/index.vue +++ b/snowy-admin-web/src/views/dev/log/oplog/index.vue @@ -125,8 +125,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '100px' + fixed: 'right' } ] // 获取日志详情 diff --git a/snowy-admin-web/src/views/dev/log/vislog/index.vue b/snowy-admin-web/src/views/dev/log/vislog/index.vue index c1c2f49d..078c0750 100644 --- a/snowy-admin-web/src/views/dev/log/vislog/index.vue +++ b/snowy-admin-web/src/views/dev/log/vislog/index.vue @@ -118,8 +118,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '100px' + fixed: 'right' } ] // 切换应用标签查询 diff --git a/snowy-admin-web/src/views/dev/message/index.vue b/snowy-admin-web/src/views/dev/message/index.vue index 5fe62284..08dca977 100644 --- a/snowy-admin-web/src/views/dev/message/index.vue +++ b/snowy-admin-web/src/views/dev/message/index.vue @@ -94,8 +94,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/push/index.vue b/snowy-admin-web/src/views/dev/push/index.vue index d01de5b6..8650ee07 100644 --- a/snowy-admin-web/src/views/dev/push/index.vue +++ b/snowy-admin-web/src/views/dev/push/index.vue @@ -125,8 +125,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/dev/slideshow/index.vue b/snowy-admin-web/src/views/dev/slideshow/index.vue index b532f2f7..3a02dfe1 100644 --- a/snowy-admin-web/src/views/dev/slideshow/index.vue +++ b/snowy-admin-web/src/views/dev/slideshow/index.vue @@ -159,8 +159,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] const detailsColumns = [ diff --git a/snowy-admin-web/src/views/dev/sms/index.vue b/snowy-admin-web/src/views/dev/sms/index.vue index 8fd33b7c..3e57686d 100644 --- a/snowy-admin-web/src/views/dev/sms/index.vue +++ b/snowy-admin-web/src/views/dev/sms/index.vue @@ -130,8 +130,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/gen/index.vue b/snowy-admin-web/src/views/gen/index.vue index 9395df7e..94de95cd 100644 --- a/snowy-admin-web/src/views/gen/index.vue +++ b/snowy-admin-web/src/views/gen/index.vue @@ -106,8 +106,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '220px' + fixed: 'right' } ] // 表格查询 返回 Promise 对象 diff --git a/snowy-admin-web/src/views/mobile/resource/menu/index.vue b/snowy-admin-web/src/views/mobile/resource/menu/index.vue index 0d7684af..dafbe0c9 100644 --- a/snowy-admin-web/src/views/mobile/resource/menu/index.vue +++ b/snowy-admin-web/src/views/mobile/resource/menu/index.vue @@ -155,8 +155,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: 200 + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/mobile/resource/module/index.vue b/snowy-admin-web/src/views/mobile/resource/module/index.vue index cad97cc8..82dd7d8a 100644 --- a/snowy-admin-web/src/views/mobile/resource/module/index.vue +++ b/snowy-admin-web/src/views/mobile/resource/module/index.vue @@ -110,8 +110,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '200px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/group/index.vue b/snowy-admin-web/src/views/sys/group/index.vue index 735a51ab..f6a2ad96 100644 --- a/snowy-admin-web/src/views/sys/group/index.vue +++ b/snowy-admin-web/src/views/sys/group/index.vue @@ -116,8 +116,7 @@ const columns = [ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: 220 + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/org/index.vue b/snowy-admin-web/src/views/sys/org/index.vue index dbd2339a..e91adb3f 100644 --- a/snowy-admin-web/src/views/sys/org/index.vue +++ b/snowy-admin-web/src/views/sys/org/index.vue @@ -133,8 +133,7 @@ const columns = [ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/position/index.vue b/snowy-admin-web/src/views/sys/position/index.vue index c7665305..2588f8e5 100644 --- a/snowy-admin-web/src/views/sys/position/index.vue +++ b/snowy-admin-web/src/views/sys/position/index.vue @@ -134,8 +134,7 @@ const columns = [ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '150px' + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/resource/menu/index.vue b/snowy-admin-web/src/views/sys/resource/menu/index.vue index 6308373e..d6bba1f0 100644 --- a/snowy-admin-web/src/views/sys/resource/menu/index.vue +++ b/snowy-admin-web/src/views/sys/resource/menu/index.vue @@ -187,7 +187,6 @@ { title: '操作', dataIndex: 'action', - width: '200px', fixed: 'right', scopedSlots: { customRender: 'action' } } diff --git a/snowy-admin-web/src/views/sys/resource/module/index.vue b/snowy-admin-web/src/views/sys/resource/module/index.vue index d683cebd..82733272 100644 --- a/snowy-admin-web/src/views/sys/resource/module/index.vue +++ b/snowy-admin-web/src/views/sys/resource/module/index.vue @@ -107,8 +107,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '200px' + fixed: 'right' } ] let selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/role/index.vue b/snowy-admin-web/src/views/sys/role/index.vue index 97b3fc1c..6898f265 100644 --- a/snowy-admin-web/src/views/sys/role/index.vue +++ b/snowy-admin-web/src/views/sys/role/index.vue @@ -175,8 +175,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '200px' + fixed: 'right' } ] const selectedRowKeys = ref([]) diff --git a/snowy-admin-web/src/views/sys/user/index.vue b/snowy-admin-web/src/views/sys/user/index.vue index 7a57327b..f38028af 100644 --- a/snowy-admin-web/src/views/sys/user/index.vue +++ b/snowy-admin-web/src/views/sys/user/index.vue @@ -252,8 +252,7 @@ const columns = [ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: '220px' + fixed: 'right' } ] const statusData = tool.dictList('COMMON_STATUS') diff --git a/snowy-admin-web/src/views/sys/user/userTab/userMessage.vue b/snowy-admin-web/src/views/sys/user/userTab/userMessage.vue index b4dba481..3a3d1340 100644 --- a/snowy-admin-web/src/views/sys/user/userTab/userMessage.vue +++ b/snowy-admin-web/src/views/sys/user/userTab/userMessage.vue @@ -61,8 +61,7 @@ { title: '操作', dataIndex: 'action', - fixed: 'right', - width: '100px' + fixed: 'right' } ] const loadData = (parameter) => { diff --git a/snowy-plugin/snowy-plugin-gen/src/main/resources/frontend/index.vue.btl b/snowy-plugin/snowy-plugin-gen/src/main/resources/frontend/index.vue.btl index 135455bf..0b8e35d2 100644 --- a/snowy-plugin/snowy-plugin-gen/src/main/resources/frontend/index.vue.btl +++ b/snowy-plugin/snowy-plugin-gen/src/main/resources/frontend/index.vue.btl @@ -214,8 +214,7 @@ title: '操作', dataIndex: 'action', align: 'center', - fixed: 'right', - width: 150 + fixed: 'right' }) } const selectedRowKeys = ref([])