Merge remote-tracking branch 'origin/dev' into dev-gly
| | |
| | | import request from "@/utils/request"; |
| | | |
| | | // 查询客户列表 |
| | | export function selectStandardTemplatePageList(data) { |
| | | export function selectStandardTemplatePageList(query) { |
| | | return request({ |
| | | url: "/StandardTemplate/selectStandardTemplatePageList", |
| | | method: "post", |
| | | data: data, |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | |
| | | :column="column" |
| | | :page="page" |
| | | :tableLoading="tableLoading" |
| | | :height="'calc(100vh - 240px)'" |
| | | :height="'calc(100vh - 250px)'" |
| | | style="padding: 20px; padding-top: 0" |
| | | @pagination="pagination" |
| | | ></lims-table> |
| | |
| | | this.tableLoading = false; |
| | | }); |
| | | }, |
| | | pagination(current, size) { |
| | | this.page.current = current; |
| | | pagination({ page, limit }) { |
| | | this.page.current = page; |
| | | this.getList(); |
| | | }, |
| | | refreshTable(e) { |
| | |
| | | proxy: { |
| | | // detail: https://cli.vuejs.org/config/#devserver-proxy |
| | | [process.env.VUE_APP_BASE_API]: { |
| | | target: `http://192.168.0.104:8002`, |
| | | target: `http://192.168.0.170:8002`, |
| | | changeOrigin: true, |
| | | pathRewrite: { |
| | | ["^" + process.env.VUE_APP_BASE_API]: "", |