|
@@ -44,7 +44,7 @@
|
|
:icon="item.iCom"
|
|
:icon="item.iCom"
|
|
:width="item.w"
|
|
:width="item.w"
|
|
:height="item.h"
|
|
:height="item.h"
|
|
- color="#8ac5ff"
|
|
|
|
|
|
+ :color="item.color"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -206,7 +206,7 @@ const btns = [
|
|
// }
|
|
// }
|
|
]
|
|
]
|
|
|
|
|
|
-const list = shallowRef([
|
|
|
|
|
|
+const list = ref([
|
|
// {
|
|
// {
|
|
// iCom: 'ant-design:tag-outlined',
|
|
// iCom: 'ant-design:tag-outlined',
|
|
// label: '标签过滤',
|
|
// label: '标签过滤',
|
|
@@ -217,7 +217,7 @@ const list = shallowRef([
|
|
{
|
|
{
|
|
iCom: 'iconoir:screenshot',
|
|
iCom: 'iconoir:screenshot',
|
|
label: '截图',
|
|
label: '截图',
|
|
- color: 'white',
|
|
|
|
|
|
+ color: '#8ac5ff',
|
|
type: 'jt',
|
|
type: 'jt',
|
|
w: 20,
|
|
w: 20,
|
|
h: 20
|
|
h: 20
|
|
@@ -225,7 +225,7 @@ const list = shallowRef([
|
|
{
|
|
{
|
|
iCom: 'carbon:video',
|
|
iCom: 'carbon:video',
|
|
label: '录像',
|
|
label: '录像',
|
|
- color: 'white',
|
|
|
|
|
|
+ color: '#8ac5ff',
|
|
type: 'lx',
|
|
type: 'lx',
|
|
class: '',
|
|
class: '',
|
|
w: 25,
|
|
w: 25,
|
|
@@ -254,7 +254,7 @@ const listComputed = computed(() => {
|
|
item.class = 'update-style'
|
|
item.class = 'update-style'
|
|
} else {
|
|
} else {
|
|
item.iCom = 'carbon:video'
|
|
item.iCom = 'carbon:video'
|
|
- item.color = 'white'
|
|
|
|
|
|
+ item.color = '#8ac5ff'
|
|
item.class = ''
|
|
item.class = ''
|
|
}
|
|
}
|
|
}
|
|
}
|