Commit a5f9f552 authored by 沈翠玲's avatar 沈翠玲

修改

parent b85174e6
...@@ -322,4 +322,7 @@ td { ...@@ -322,4 +322,7 @@ td {
} }
.el-statistic__content, .el-statistic__head { .el-statistic__content, .el-statistic__head {
text-align: center; text-align: center;
}
.vxe-table--tooltip-wrapper {
z-index: 99999999;
} }
\ No newline at end of file
...@@ -269,50 +269,15 @@ ...@@ -269,50 +269,15 @@
splitdata.value = list; splitdata.value = list;
}; };
const options = ref([ const options = ref([
{
value: 2,
label: '2',
},
{
value: 3,
label: '3',
},
{
value: 4,
label: '4',
},
{
value: 5,
label: '5',
},
{
value: 6,
label: '6',
},
]); ]);
const getPlatforms = (id) => { const getPlatforms = (id) => {
options.value = [ for (let i = 2; i <= 6; i++) {
{ options.value.push({
value: 2, value: i,
label: '2', label: i + '',
}, })
{ }
value: 3, console.log('options.value', options.value)
label: '3',
},
{
value: 4,
label: '4',
},
{
value: 5,
label: '5',
},
{
value: 6,
label: '6',
},
];
getByIdPlatforms(id).then((res) => { getByIdPlatforms(id).then((res) => {
console.log('resres', res); console.log('resres', res);
if (res.success) { if (res.success) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment