| | |
| | | :data="processRouteList" |
| | | :loading="loading" |
| | | :height="height" |
| | | :virtualYConfig="virtualYConfig" |
| | | :showOverflow="true" |
| | | @on-checkbox="handleCheckboxChange" |
| | | :page="page" |
| | | @changePageNo="changePageNo" |
| | |
| | | import { useI18n } from "vue-i18n"; //要在js中使用国际化 |
| | | const { t, locale } = useI18n(); |
| | | const { proxy } = getCurrentInstance(); |
| | | const virtualYConfig = { |
| | | enabled: true, |
| | | gt: 0, |
| | | threshold: 50, |
| | | } |
| | | // 分页属性 |
| | | const page = ref({ |
| | | total: 0, |
| | |
| | | apsStandardProcessRouteHeaderList(queryParams.value) |
| | | .then((response) => { |
| | | processRouteList.value = response.rows; |
| | | page.value.total = response.total; |
| | | loading.value = false; |
| | | }) |
| | | .catch(() => { |