1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
var vm = new Vue({
    el: '#rapp',
    data: {
        showList: true,
        title: null,
        systeminfo: {}
    },
    methods: {
 
    },
    created: function() {
        var search = window.location.search;
        search = search.replace("?", "");
        var appid = search.split('=')[1];
        if(appid == "") {
            $("#rapp").text("应用程序ID为空!");
        } else {
            $.ajax({
                type: "GET",
                url: restServerBaseURL + "sys/systeminfoapply/applySystemPermission?appid=" + appid,
                contentType: "application/json",
                success: function (result) {
                    $("#rapp").text(result.result);
                }
            });
        }
    }
});