This commit is contained in:
parent
5bf970faf6
commit
7f845a644b
|
@ -602,7 +602,6 @@ onBeforeUnmount(() => {
|
|||
.ViewDataBottomimg {
|
||||
background-image: url(@/assets/images/sjfx/sjfx2.png);
|
||||
animation: scaleUpDown 2s infinite;
|
||||
// transform: scale(1.3);
|
||||
}
|
||||
.ViewDataBottomimg_1 {
|
||||
background-image: url(@/assets/images/sjfx/sjfx3.png);
|
||||
|
|
|
@ -10,11 +10,7 @@
|
|||
>
|
||||
<template #header="{ close, titleId, titleClass }">
|
||||
<div class="my-header">
|
||||
<el-icon
|
||||
size="26"
|
||||
color="#fff"
|
||||
@click="closeDialog"
|
||||
>
|
||||
<el-icon size="26" color="#fff" @click="closeDialog">
|
||||
<CircleCloseFilled />
|
||||
</el-icon>
|
||||
</div>
|
||||
|
@ -93,21 +89,17 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
:key="item.label"
|
||||
v-else
|
||||
:property="item.property"
|
||||
:label="item.label"
|
||||
:show-overflow-tooltip="true"
|
||||
align="center"
|
||||
v-else
|
||||
/>
|
||||
</template>
|
||||
</el-table>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="data.tab == '0'"
|
||||
class="pagePart"
|
||||
>
|
||||
<div v-if="data.tab == '0'" class="pagePart">
|
||||
<el-pagination
|
||||
background
|
||||
layout="prev, pager, next,total"
|
||||
|
@ -119,14 +111,8 @@
|
|||
v-model:current-page="pagination.currentPage"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
v-if="data.tab == '1'"
|
||||
style="width: 100%; height: 70vh"
|
||||
>
|
||||
<tL
|
||||
:list1="data.list1"
|
||||
:year="data.year"
|
||||
></tL>
|
||||
<div v-if="data.tab == '1'" style="width: 100%; height: 70vh">
|
||||
<tL :list1="data.list1" :year="data.year"></tL>
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
@ -197,7 +183,7 @@ const data = reactive({
|
|||
pagination: {},
|
||||
list1: [],
|
||||
year: [],
|
||||
tab: '0',
|
||||
tab: "0",
|
||||
});
|
||||
|
||||
const gridData = [];
|
||||
|
@ -253,8 +239,8 @@ const handle = (current) => {
|
|||
emit("handle", current);
|
||||
};
|
||||
const changeTab = (val) => {
|
||||
data.tab = val
|
||||
}
|
||||
data.tab = val;
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
:deep(.el-dialog) {
|
||||
|
|
|
@ -36,7 +36,7 @@ const getOption = () => {
|
|||
tooltip: {
|
||||
trigger: "axis",
|
||||
padding: [20, 10, 20, 10],
|
||||
formatter: "{b0}<br />{a1}:{c1} <br />{a2}:{c2}",
|
||||
formatter: "{b0}日<br />{a1}:{c1}",
|
||||
},
|
||||
legend: {
|
||||
data: ["骑行次数"],
|
||||
|
@ -49,7 +49,7 @@ const getOption = () => {
|
|||
show: false,
|
||||
},
|
||||
grid: {
|
||||
top: "5%",
|
||||
top: "8%",
|
||||
left: "5%",
|
||||
right: "5%",
|
||||
bottom: "3%",
|
||||
|
|
Loading…
Reference in New Issue