This commit is contained in:
lnn19986213 2024-05-27 17:10:22 +08:00
parent e4ed8b1e45
commit a0d05b483e
1 changed files with 2 additions and 8 deletions

View File

@ -345,13 +345,7 @@ const tableType = reactive({
width: '200'
},
],
data: [
{
sdailycarecentername: "2016-05-02",
scustomername: "John Smith",
saddress: "No.1518, Jinshajiang Road, Putuo District",
},
],
data: [],
});
//
const pagination = reactive({
@ -381,7 +375,7 @@ const getTownDetail = () => {
}
http.get("/api/ggfwyth/zcxxList",params).then((res) => {
if (res.code == 200) {
pagination.total = res.count
tableType.data = res.data
dialogShow.value = true;
}