Commit 5253dab0 authored by 郭铭瑶's avatar 郭铭瑶 🤘

打包

parent db4bea92
This diff is collapsed.
This diff is collapsed.
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
<link rel="icon" href="./favicon.ico" /> <link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>静安智慧房管</title> <title>静安智慧房管</title>
<script type="module" crossorigin src="./assets/index.18e53a4a.js"></script> <script type="module" crossorigin src="./assets/index.3fc0449e.js"></script>
<link rel="modulepreload" href="./assets/vendor.f402338c.js"> <link rel="modulepreload" href="./assets/vendor.39d5f367.js">
<link rel="stylesheet" href="./assets/vendor.db35e2cd.css"> <link rel="stylesheet" href="./assets/vendor.db35e2cd.css">
<link rel="stylesheet" href="./assets/index.96093a0c.css"> <link rel="stylesheet" href="./assets/index.f8200f2b.css">
</head> </head>
<body> <body>
......
...@@ -42,10 +42,12 @@ import { NSpace, NButton } from 'naive-ui' ...@@ -42,10 +42,12 @@ import { NSpace, NButton } from 'naive-ui'
const { layout } = useLayout() const { layout } = useLayout()
const { components, componentList } = useComponent() const { components, componentList } = useComponent()
const list = ref([]) const list = ref<any[]>([])
ajax.get({ url: api.CONFIGS, params: { pageSize: 9000 } }).then((res) => { ajax
list.value = res?.data?.content || [] .get({ url: api.CONFIGS, params: { configStatus: '1', pageSize: 9000 } })
}) .then((res) => {
list.value = res?.data?.content || []
})
const showModal = ref(false) const showModal = ref(false)
function check({ configJson }) { function check({ configJson }) {
const config = JSON.parse(configJson) const config = JSON.parse(configJson)
......
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