File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5555</template >
5656
5757<script >
58- import { getList } from ' @/api/api_param'
58+ import { getListParam } from ' @/api/api_param'
5959import { postEdit , edit } from ' @/api/api_excel'
6060import { getToken } from ' @/utils/auth'
6161
@@ -111,7 +111,7 @@ export default {
111111 this .$emit (' getItem' , this .form .apiParam )
112112 },
113113 init () {
114- getList ({ perPage: 20 }).then (response => {
114+ getListParam ({ perPage: 20 }).then (response => {
115115 this .apiParam = response .data .data
116116 })
117117 },
Original file line number Diff line number Diff line change 8282</template >
8383
8484<script >
85- import { getList , deleteAct , search } from ' @/api/api_param'
85+ import { getListParam , deleteAct , search } from ' @/api/api_param'
8686
8787export default {
8888 filters: {
@@ -116,7 +116,7 @@ export default {
116116 fetchData () {
117117 this .listLoading = true
118118 const params = Object .assign ({ ' page' : this .listQuery .page }, { ' perPage' : this .perpage })
119- getList (params).then (response => {
119+ getListParam (params).then (response => {
120120 this .list = response .data .data
121121 this .listLoading = false
122122 this .total = response .data .total
You can’t perform that action at this time.
0 commit comments