qinxianzhangyao
2024-03-05 d00e0cd198e002da558d054482dfbcb3d8098ecd
qxtj
1个文件已修改
6 ■■■■■ 已修改文件
src/components/Packages/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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
                })
            }
        },