12 changed files with 118 additions and 11 deletions
After Width: | Height: | Size: 98 KiB |
After Width: | Height: | Size: 127 KiB |
@ -0,0 +1,3 @@ |
|||
<template> |
|||
<div>qiye</div> |
|||
</template> |
@ -0,0 +1,34 @@ |
|||
<template> |
|||
<div>xaingmu</div> |
|||
</template> |
|||
<script> |
|||
import { legalLinkProject, legalProjectList } from "@/api/common"; |
|||
export default { |
|||
data() { |
|||
return { |
|||
// 查询参数 |
|||
queryParams: { |
|||
pageNum: 1, |
|||
pageSize: 10, |
|||
ids: null, |
|||
data: { |
|||
projectName: null, |
|||
adcd: null, |
|||
}, |
|||
// 排序方式 |
|||
params: { |
|||
// 按哪个字段排序 |
|||
orderBy: "create_time", |
|||
// desc降序,升序asc |
|||
sortBy: "desc", |
|||
}, |
|||
}, |
|||
}; |
|||
}, |
|||
created() { |
|||
legalProjectList(this.queryParams).then((res) => { |
|||
console.log(res); |
|||
}); |
|||
}, |
|||
}; |
|||
</script> |
Loading…
Reference in new issue