...
|
...
|
@@ -2,7 +2,7 @@ |
2
|
2
|
<div>
|
3
|
3
|
<PageWrapper dense contentFullHeight contentClass="flex">
|
4
|
4
|
<OrganizationIdTree @select="handleSelect" ref="organizationIdTreeRef" />
|
5
|
|
- <BasicTable style="flex: auto" @register="registerTable" class="w-5/6 xl:w-4/5">
|
|
5
|
+ <BasicTable style="flex: auto" @register="registerTable" class="w-5/6 xl:w-4/5 device-table">
|
6
|
6
|
<template #toolbar>
|
7
|
7
|
<Authority :value="DeviceListAuthEnum.CREATE">
|
8
|
8
|
<a-button type="primary" @click="handleCreate" v-if="authBtn(role)">
|
...
|
...
|
@@ -557,4 +557,12 @@ |
557
|
557
|
};
|
558
|
558
|
</script>
|
559
|
559
|
|
560
|
|
-<style scoped lang="css"></style> |
|
560
|
+<style scoped lang="less">
|
|
561
|
+ .device-table {
|
|
562
|
+ :deep(.ant-form-item-control-input-content) {
|
|
563
|
+ & > div > div {
|
|
564
|
+ width: 100%;
|
|
565
|
+ }
|
|
566
|
+ }
|
|
567
|
+ }
|
|
568
|
+</style> |
...
|
...
|
|