eslint
This commit is contained in:
parent
03c4325919
commit
01f05b1963
|
@ -395,13 +395,13 @@
|
||||||
.primaryNode {
|
.primaryNode {
|
||||||
.top {
|
.top {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: .4rem;
|
height: 0.4rem;
|
||||||
background: rgba(0, 135, 225, 0.1);
|
background: rgba(0, 135, 225, 0.1);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 .1rem;
|
padding: 0 0.1rem;
|
||||||
margin-top: .08rem;
|
margin-top: 0.08rem;
|
||||||
}
|
}
|
||||||
.top:hover {
|
.top:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -422,16 +422,16 @@
|
||||||
.bottom {
|
.bottom {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: rgba(244, 245, 248, 0.8);
|
background: rgba(244, 245, 248, 0.8);
|
||||||
padding: 0 .1rem;
|
padding: 0 0.1rem;
|
||||||
// margin-bottom: .08rem;
|
// margin-bottom: .08rem;
|
||||||
.up {
|
.up {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: .4rem;
|
height: 0.4rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-top: .01rem solid #ccc;
|
border-top: 0.01rem solid #ccc;
|
||||||
padding: 0 .1rem;
|
padding: 0 0.1rem;
|
||||||
& > div {
|
& > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
@ -455,7 +455,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.select {
|
.select {
|
||||||
padding: 0 .1rem 0 0;
|
padding: 0 0.1rem 0 0;
|
||||||
.name {
|
.name {
|
||||||
width: 1.7rem;
|
width: 1.7rem;
|
||||||
color: #0058e1;
|
color: #0058e1;
|
||||||
|
@ -473,11 +473,11 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.child {
|
.child {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: .4rem;
|
height: 0.4rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 .1rem;
|
padding: 0 0.1rem;
|
||||||
& > div {
|
& > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
@ -510,7 +510,7 @@
|
||||||
color: #0058e1;
|
color: #0058e1;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
padding: 0 .1rem 0 0;
|
padding: 0 0.1rem 0 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onCreated } from 'vue'
|
import { ref } from 'vue'
|
||||||
const tabList = ref([
|
const tabList = ref([
|
||||||
{
|
{
|
||||||
title: '设施类型',
|
title: '设施类型',
|
||||||
|
@ -153,12 +153,6 @@
|
||||||
const clean = () => {
|
const clean = () => {
|
||||||
name.value = ''
|
name.value = ''
|
||||||
}
|
}
|
||||||
// onCreated(() => {
|
|
||||||
|
|
||||||
// })
|
|
||||||
// onMounted(() => {
|
|
||||||
|
|
||||||
// })
|
|
||||||
// 一键申请
|
// 一键申请
|
||||||
const apply = () => {
|
const apply = () => {
|
||||||
console.log('一键申请')
|
console.log('一键申请')
|
||||||
|
@ -294,14 +288,6 @@
|
||||||
showSizeChanger: true,
|
showSizeChanger: true,
|
||||||
pageSizeOptions: ['5', '10', '15', '20'], //每页中显示的数据
|
pageSizeOptions: ['5', '10', '15', '20'], //每页中显示的数据
|
||||||
})
|
})
|
||||||
const queryParam = ref({
|
|
||||||
page: 1, //第几页
|
|
||||||
size: 10, //每页中显示数据的条数
|
|
||||||
hosName: '',
|
|
||||||
hosCode: '',
|
|
||||||
province: '',
|
|
||||||
city: '',
|
|
||||||
})
|
|
||||||
const handleTableChange = (val) => {
|
const handleTableChange = (val) => {
|
||||||
pagination.value.current = val.current
|
pagination.value.current = val.current
|
||||||
pagination.value.pageSize = val.pageSize
|
pagination.value.pageSize = val.pageSize
|
||||||
|
|
Loading…
Reference in New Issue