import Api from "~/service/Api"; import moment from "moment"; export default { methods: { async getSubtyp() { let rtnmsg = await Api.post("/frontend/common/subtyp ", { mty: 'CIPS' }); if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.data && rtnmsg.data.length > 0) { this.subtypCodes = rtnmsg.data.map((item) => { return { label: item, value: item } }) } } }, async handleSearch() { }, async handleReset() { }, // pageSize改变 handleSizeChange(val) { this.pagination.pageNum = 1; this.pagination.pageSize = val; this.handleSearch(); }, // 页码改变 handleCurrentChange(val) { this.pagination.pageNum = val; this.handleSearch(); }, handleSelectionChange(val) { this.multipleSelection = val; } }, };