自动化代码可以自动创建form,前端样式修复,前端mixin位置转移
This commit is contained in:
39
web/src/mixins/infoList.js
Normal file
39
web/src/mixins/infoList.js
Normal file
@@ -0,0 +1,39 @@
|
||||
import { getDict } from "@/utils/dictionary";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
page: 1,
|
||||
total: 10,
|
||||
pageSize: 10,
|
||||
tableData: [],
|
||||
searchInfo: {}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
filterDict(value,type){
|
||||
const rowLabel = this[type+"Options"]&&this[type+"Options"].filter(item=>item.value == value)
|
||||
return rowLabel&&rowLabel[0]&&rowLabel[0].label
|
||||
},
|
||||
async getDict(type){
|
||||
const dicts = await getDict(type)
|
||||
this[type+"Options"] = dicts
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.pageSize = val
|
||||
this.getTableData()
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.page = val
|
||||
this.getTableData()
|
||||
},
|
||||
async getTableData(page = this.page, pageSize = this.pageSize) {
|
||||
const table = await this.listApi({ page, pageSize, ...this.searchInfo })
|
||||
if(table.code == 0){
|
||||
this.tableData = table.data.list
|
||||
this.total = table.data.total
|
||||
this.page = table.data.page
|
||||
this.pageSize = table.data.pageSize
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user