qx
qx
2025-03-14 992b14d4c5e0ebba87d3ae8fb1ca9d06c0bdc6e9
src/components/Packages/index.vue
@@ -93,15 +93,19 @@
        },
        getAllList() {
            this.loading = true
            this.openone = 1
            newGetTjPat(this.queryParams).then(res => {
                this.dataList = res.data
                this.loading = false
            })
        },
        getList() {
            this.openone = 0
            this.loading = true
            Packagestlist(this.queryParams).then(res => {
                this.dataList = res.rows
                this.loading = false
            })
        },
        handleQuery() {
@@ -110,8 +114,10 @@
            } else if (this.openone == 1) {
                this.getAllList()
            } else if (this.openone == 2) {
                this.loading = true
                getTjYxjcList(this.queryParams).then(res => {
                    this.dataList = res.data
                    this.loading = false
                })
            }
        },