...
|
...
|
@@ -22,45 +22,47 @@ |
22
|
22
|
</script>
|
23
|
23
|
|
24
|
24
|
<template>
|
25
|
|
- <section class="bg-gray-100 p-4 dark:bg-dark-900 w-full h-full">
|
|
25
|
+ <!-- <section class="bg-gray-100 p-4 dark:bg-dark-900 w-full h-full"> -->
|
|
26
|
+ <div>
|
26
|
27
|
<BasicTable @register="register">
|
27
|
28
|
<template #function="{ record }">
|
28
|
29
|
<a-tooltip :title="record.function">
|
29
|
|
- <a-button type="text" class="ml-2" @click="handeleCopy(record.function)">
|
|
30
|
+ <a-button type="text" class="" @click="handeleCopy(record.function)">
|
30
|
31
|
<span>{{ record.function.slice(0, 13) }}</span>
|
31
|
32
|
</a-button>
|
32
|
33
|
</a-tooltip>
|
33
|
34
|
</template>
|
34
|
35
|
<template #release="{ record }">
|
35
|
36
|
<a-tooltip :title="record.release">
|
36
|
|
- <a-button type="text" class="ml-2" @click="handeleCopy(record.release)">
|
|
37
|
+ <a-button type="text" class="" @click="handeleCopy(record.release)">
|
37
|
38
|
<span>{{ record.release.slice(0, 30) }}</span>
|
38
|
39
|
</a-button>
|
39
|
40
|
</a-tooltip>
|
40
|
41
|
</template>
|
41
|
42
|
<template #subscribe="{ record }">
|
42
|
43
|
<a-tooltip :title="record.subscribe">
|
43
|
|
- <a-button type="text" class="ml-2" @click="handeleCopy(record.subscribe)">
|
|
44
|
+ <a-button type="text" class="" @click="handeleCopy(record.subscribe)">
|
44
|
45
|
<span>{{ record.subscribe.slice(0, 30) }}</span>
|
45
|
46
|
</a-button>
|
46
|
47
|
</a-tooltip>
|
47
|
48
|
</template>
|
48
|
49
|
<template #platform="{ record }">
|
49
|
50
|
<a-tooltip :title="record.platform">
|
50
|
|
- <a-button type="text" class="ml-2" @click="handeleCopy(record.platform)">
|
|
51
|
+ <a-button type="text" style="margin-left: -10px" @click="handeleCopy(record.platform)">
|
51
|
52
|
<span>{{ record.platform }}</span>
|
52
|
53
|
</a-button>
|
53
|
54
|
</a-tooltip>
|
54
|
55
|
</template>
|
55
|
56
|
<template #device="{ record }">
|
56
|
57
|
<a-tooltip :title="record.device">
|
57
|
|
- <a-button type="text" class="ml-2" @click="handeleCopy(record.device)">
|
|
58
|
+ <a-button type="text" style="margin-left: -10px" @click="handeleCopy(record.device)">
|
58
|
59
|
<span>{{ record.device }}</span>
|
59
|
60
|
</a-button>
|
60
|
61
|
</a-tooltip>
|
61
|
62
|
</template>
|
62
|
63
|
</BasicTable>
|
63
|
|
- </section>
|
|
64
|
+ </div>
|
|
65
|
+ <!-- </section> -->
|
64
|
66
|
</template>
|
65
|
67
|
<style scoped>
|
66
|
68
|
:deep(.ant-table-body) {
|
...
|
...
|
|