diff --git a/src/components/table-um.vue b/src/components/table-um.vue index 94d1260f3e60852113f96d6b5832f67dd1462c10..11a67c8347f11ca4d83d85db23208af10fce6f60 100644 --- a/src/components/table-um.vue +++ b/src/components/table-um.vue @@ -24,7 +24,8 @@ type="primary" @click="addRow()" class="ces_toolbar_btn" - >新增 + >新增 - + - + - - {{ btn.label }} - {{ btn.label }} + + + 分配 + + + 已分配 + + {{ btn.label }} + >{{ btn.label }} + {{ btn.label }} - {{ btn.line }} + >{{ btn.label }} + + + {{ btn.line }} + @@ -171,7 +199,9 @@ trigger="hover" :content="scope.row[item.prop]" > -
{{ scope.row[item.prop] }}
+
+ {{ scope.row[item.prop] }} +
{{ scope.row[item.prop] }} @@ -210,7 +240,7 @@ :disabled="pagination.page == 1" >   第{{ pagination.page }}页 / 共{{ - Math.ceil(pagination.total / pagination.rowsPerPage) + Math.ceil(pagination.total / pagination.rowsPerPage) }}页 = + Math.ceil(pagination.total / pagination.rowsPerPage) + " > @@ -240,7 +270,7 @@ export default { "v-apaas-table-input": tableInput, "v-apaas-table-select": tableSelect, "v-apaas-table-umhref": tableUmhref, - "d-confirm": DConfirm + "d-confirm": DConfirm, }, props: { // 表格型号:mini,medium,small @@ -265,78 +295,78 @@ export default { // }, searchShow: { type: Boolean, - default: false + default: false, }, url: { type: String, - default: "" + default: "", }, detailsUrl: { type: String, - default: "" + default: "", }, rowprop: { type: String, - default: "" + default: "", }, ready: { type: Boolean, - default: false + default: false, }, addRowBtn: { type: Boolean, - default: false + default: false, }, couldNotEdit: { type: Boolean, - default: false + default: false, }, refreshInit: { type: Boolean }, sortBy: { type: String, - default: "" + default: "", }, searchNoName: { type: Boolean, default: false }, emptyText: { type: String, - default: "暂无数据" + default: "暂无数据", }, autoAdd: { type: Boolean, - default: false + default: false, }, border: { type: Boolean, - default: false + default: false, }, stripe: { type: Boolean, - default: false + default: false, }, radius: { type: Boolean, - default: false + default: false, }, pageSizeShow: { type: Boolean, - default: false + default: false, }, paginationShow: { type: Boolean, - default: false + default: false, }, headerCellClassName: { type: String, - default: "" + default: "", }, filterList: { type: Array, - default: null + default: null, }, showHeader: { type: Boolean, - default: true - } + default: true, + }, }, data() { return { @@ -344,7 +374,7 @@ export default { pagination: { rowsPerPage: 10, page: 1, - total: 0 + total: 0, }, delSelect: null, helper: helper, @@ -353,23 +383,23 @@ export default { pageOptions: [ { value: "10", - label: "10" + label: "10", }, { value: "20", - label: "20" + label: "20", }, { value: "50", - label: "50" - } + label: "50", + }, ], search: "", times: null, showFliterList: false, filterData: null, // 筛选条件 filterToggle: null, // 控制筛选条件的展开和收起 - filterLength: 0 // 每行最多可容纳多少个过滤条件 + filterLength: 0, // 每行最多可容纳多少个过滤条件 }; }, mounted() { @@ -387,25 +417,25 @@ export default { if (val) { this.getDataFromApiSync(); } - } + }, }, url: { handler(val) { this.getDataFromApiSync(); }, - deep: true + deep: true, }, filterList: { handler(val) { this.initFilterData(); }, - deep: true - } + deep: true, + }, }, methods: { //本地删除 - deleteLocal(val){ - this.selectedTabsPage.splice(val.$index, 1)  + deleteLocal(val) { + this.selectedTabsPage.splice(val.$index, 1); }, // get data getDataFromApiSync() { @@ -420,14 +450,14 @@ export default { } } else { this.getDataFromApi().then( - data => { + (data) => { this.selectedTabsPage = JSON.parse(JSON.stringify(data.newArr)); this.pagination.total = data.total; if (this.autoAdd) { this.addRow(); } }, - err => { + (err) => { console.log("失败" + err); } ); @@ -440,7 +470,7 @@ export default { this.all_url = `/static/data.json`; this.$http .get(this.all_url) - .then(response => { + .then((response) => { let newArr = response.data.data[this.url]; // if it is true url, total is response's total let total = newArr.length; @@ -485,7 +515,7 @@ export default { this.$message({ showClose: true, message: this.label + "成功", - type: "success" + type: "success", }); }, switchChange(val) { @@ -557,7 +587,7 @@ export default { if (this.filterList && this.filterList.length) { this.filterData = {}; this.filterToggle = {}; - this.filterList.forEach(item => { + this.filterList.forEach((item) => { this.$set(this.filterData, item.prop, []); this.$set(this.filterToggle, item.prop, false); }); @@ -570,8 +600,8 @@ export default { this.filterData[prop].push(filter); } console.log(this.filterData); - } - } + }, + }, }; @@ -621,7 +651,7 @@ em { font-style: normal; user-select: none; } -em.action { +.cur_pointer { cursor: pointer; } .ces-table .el-table--mini td, diff --git a/src/pages/fwgl.vue b/src/pages/fwgl.vue index bd9d0434598a7a45f0b8bb2e5e8032f12a93a5a6..f3ae8e8eb5d2cd6f7fa29e936d88936ac5dc61be 100644 --- a/src/pages/fwgl.vue +++ b/src/pages/fwgl.vue @@ -14,6 +14,7 @@ diff --git a/src/store/index.js b/src/store/index.js index 597528d5de6cce5bf43274bcd01e23332011d452..7621da607b8b9494177465ccbd166eede7a97320 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,15 +1,18 @@ -import Vuex from 'vuex' -import Vue from 'vue' +import Vuex from "vuex"; +import Vue from "vue"; Vue.use(Vuex); - const store = new Vuex.Store({ state: { - role: 1,//0:普通用户,1:组织管理员,2:超级管理员 + role: 1, // 0:普通用户,1:组织管理员,2:超级管理员 serviceShopMenu: "shopDataList", // 服务超市侧边栏 + fwglNav: [ + ["注册发布的服务", "申请的服务", "审批的服务", "云资源服务"], //普通用户 + ["组织服务管理", "服务审批管理", "云资源管理"], //组织管理员 + ["平台服务管理", "服务审批管理", "云资源管理"], //超级管理员 + ], // 服务管理列表,onlyRead }, - modules: { - }, + modules: {}, mutations: { rolefun(state, newValue) { state.role = newValue; @@ -20,4 +23,4 @@ const store = new Vuex.Store({ }, }); -export default store \ No newline at end of file +export default store; diff --git a/static/data.json b/static/data.json index 4836ef7bc93854829a1e6e07355e530273c3f614..9b286d1084dafc314041e33552f4bc6f2cef1a6b 100644 --- a/static/data.json +++ b/static/data.json @@ -1,544 +1,545 @@ { - "data": { - "tableData": [ - { - "date": "2016-05-02", - "name": "王小虎", - "address": "0", - "id": "ssss2722" - }, - { - "date": "2016-05-04", - "name": "王小虎", - "address": "0", - "id": "ssss2224" - }, - { - "date": "2016-05-01", - "name": "王小虎", - "address": "0", - "id": "ssss222" - }, - { - "date": "2016-05-03", - "name": "王小虎", - "address": "0", - "id": "ssss22" - } - ], - "tableData1": [ - { - "id": 1, - "date": "2016-05-02", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1518 弄" - }, - { - "id": 2, - "date": "2016-05-04", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1517 弄" - }, - { - "id": 3, - "date": "2016-05-01", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1519 弄", - "children": [ - { - "id": 31, - "date": "2016-05-01", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1519 弄" - }, - { - "id": 32, - "date": "2016-05-01", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1519 弄" - } - ] - }, - { - "id": 4, - "date": "2016-05-03", - "name": "王小虎", - "address": "上海市普陀区金沙江路 1516 弄" - } - ], - "service_size_arr":[ - { - "id": 1, - "fwcs": "100", - "fwl": "100", - "ggsm": "每日可访问100次,访问量为1000PV" - }, - { - "id": 2, - "fwcs": "100", - "fwl": "100", - "ggsm": "每日可访问100次,访问量为1000PV" - }, - { - "id": 3, - "fwcs": "100", - "fwl": "100", - "ggsm": "每日可访问100次,访问量为1000PV" - }, - { - "id": 4, - "fwcs": "100", - "fwl": "100", - "ggsm": "每日可访问100次,访问量为1000PV" - }, - { - "id": 5, - "fwcs": "100", - "fwl": "100", - "ggsm": "每日可访问100次,访问量为1000PV" - } - ], - "params_arr":[ - { - "id": 1, - "zdmc": "地区", - "zdbm": "area", - "zdlx": "字符串", - "zdsm": "这是一个地区的名称", - "zdsl":"贵阳市" - }, - { - "id": 2, - "zdmc": "地区生产总值", - "zdbm": "GDP", - "zdlx": "字符串", - "zdsm": "这是一个地区的总值", - "zdsl":"1235", - "children": [ - { - "id": 21, - "zdmc": "地区", - "zdbm": "area", - "zdlx": "字符串", - "zdsm": "这是一个地区的名称", - "zdsl":"贵阳市" - } - ] - } - ], - "params_use_arr":[ - { - "id": 1, - "dydw": "某某省某某市莫某城管局字符占位", - "dyr": "张先生", - "dyyw": "某某项目的决策指挥系统字符占位", - "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", - "cjms": "某某某应用于决策指挥系统占位字符", - "sqsj": "2016-05-02 12:20:35" - }, - { - "id": 1, - "dydw": "某某省某某市莫某城管局字符占位", - "dyr": "张先生", - "dyyw": "某某项目的决策指挥系统字符占位", - "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", - "cjms": "某某某应用于决策指挥系统占位字符", - "sqsj": "2016-05-02 12:20:35" - }, - { - "id": 1, - "dydw": "某某省某某市莫某城管局字符占位", - "dyr": "张先生", - "dyyw": "某某项目的决策指挥系统字符占位", - "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", - "cjms": "某某某应用于决策指挥系统占位字符", - "sqsj": "2016-05-02 12:20:35" - }, - { - "id": 1, - "dydw": "某某省某某市莫某城管局字符占位", - "dyr": "张先生", - "dyyw": "某某项目的决策指挥系统字符占位", - "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", - "cjms": "某某某应用于决策指挥系统占位字符", - "sqsj": "2016-05-02 12:20:35" - }, - { - "id": 1, - "dydw": "某某省某某市莫某城管局字符占位", - "dyr": "张先生", - "dyyw": "某某项目的决策指挥系统字符占位", - "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", - "cjms": "某某某应用于决策指挥系统占位字符", - "sqsj": "2016-05-02 12:20:35" - } - ], - "creat_app":[ - { - "id": 1, - "yymc": "地市GDP基础数据", - "yylx": "基础数据服务", - "yybb": "V1.1.1", - "yycjsj": "2016-05-02 12:20:35", - "yybscs":12 - } - ], - "check_app":[ - { - "id": 1, - "yymc": "地市GDP基础数据", - "yylx": "基础数据服务", - "yybb": "V1.1.1", - "yyspsj": "2016-05-02 12:20:35", - "spzt":12 - } - ], - "nor_service_list":[ - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "zcfbsj": "2016-05-02 12:20:35", - "bdycs": "12" - }, - { - "id": 2, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "zcfbsj": "2016-05-02", - "bdycs": "12" - }, - { - "id": 3, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "zcfbsj": "2016-05-02", - "bdycs": "12" - }, - { - "id": 4, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "zcfbsj": "2016-05-02", - "bdycs": "12" - }, - { - "id": 5, - "fwmc": "贵州行政区划要素", - "fwlx": "基础数据服务", - "zcfbsj": "2016-05-02", - "bdycs": "12" - } - ], - "nor_apply_service":[ - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "sqsj": "2016-05-02", - "sqspzt": "审批通过" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "sqsj": "2016-05-02", - "sqspzt": "审批通过" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "sqsj": "2016-05-02", - "sqspzt": "审批通过" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "sqsj": "2016-05-02", - "sqspzt": "审批通过" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "sqsj": "2016-05-02", - "sqspzt": "待审批" - } - - ], - "nor_service_sh":[ - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "spsj": "2016-05-02", - "spzt": "待审批" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "spsj": "2016-05-02", - "spzt": "待审批" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "spsj": "2016-05-02", - "spzt": "待审批" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "spsj": "2016-05-02", - "spzt": "待审批" - }, - { - "id": 1, - "fwmc": "地市GDP基础数据", - "fwlx": "基础数据服务", - "spsj": "2016-05-02", - "spzt": "待审批" - } - - - ], - "nor_cloud":[ - { - "id": 1, - "gzqy": "地市GDP基础数据", - "wlhj": "互联网", - "cpu": "2", - "ncgb": "12", - "zyzlgb": "1024", - "sqzt": "审批通过", - "state":1 - }, - { - "id": 1, - "gzqy": "地市GDP基础数据", - "wlhj": "互联网", - "cpu": "2", - "ncgb": "12", - "zyzlgb": "1024", - "sqzt": "审批通过", - "state":0 - }, - { - "id": 1, - "gzqy": "地市GDP基础数据", - "wlhj": "互联网", - "cpu": "2", - "ncgb": "12", - "zyzlgb": "1024", - "sqzt": "审批通过", - "state":0 - }, - { - "id": 1, - "gzqy": "地市GDP基础数据", - "wlhj": "互联网", - "cpu": "2", - "ncgb": "12", - "zyzlgb": "1024", - "sqzt": "审批通过", - "state":0 - }, - { - "id": 1, - "gzqy": "地市GDP基础数据", - "wlhj": "互联网", - "cpu": "2", - "ncgb": "12", - "zyzlgb": "1024", - "sqzt": "审批通过", - "state":1 - } - ], - "nor_cloud_manage":[ - { - "id": 1, - "sszz": "地市GDP基础", - "cpu": "2", - "ncgb": "12", - "gzqysl": "10" - }, - { - "id": 1, - "sszz": "地市GDP基础", - "cpu": "2", - "ncgb": "12", - "gzqysl": "10" - }, - { - "id": 1, - "sszz": "地市GDP基础", - "cpu": "2", - "ncgb": "12", - "gzqysl": "10" - }, - { - "id": 1, - "sszz": "地市GDP基础", - "cpu": "2", - "ncgb": "12", - "gzqysl": "10" - }, - { - "id": 1, - "sszz": "地市GDP基础", - "cpu": "2", - "ncgb": "12", - "gzqysl": "10" - } - ], - "min_service_params_arr":[ - { - "id":1, - "wfwmc":"apaas-mapvideos", - "jkzt":"N/A", - "jklj":"http://mapvideo.wodcloud.com/mapvideos/", - "wfwms":"地图视频融合应用服务" - } - ], - "apply_params_arr":[ - { - "id":1, - "wfwmc":"apaas-mapvideos", - "jkzt":"N/A", - "jklj":"http://mapvideo.wodcloud.com/mapvideos/", - "wfwms":"地图视频融合应用服务" - } - ], - "fwzc_fwcs": [ - { - "id": 1, - "requestEncoding": "2016-05-02", - "requestValue": "王小虎" - }, - { - "id": 2, - "requestEncoding": "2016-05-02", - "requestValue": "王小虎" - }, - { - "id": 13, - "requestEncoding": "2016-05-02", - "requestValue": "王小虎" - }, - { - "id": 11, - "requestEncoding": "2016-05-02", - "requestValue": "王小虎" - } - ], - "qqcstx": [ - { - "id": 1, - "unicode": "2016-05-02", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1518 弄" - }, - { - "id": 2, - "unicode": "2016-05-04", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1517 弄" - }, - { - "id": 3, - "unicode": "2016-05-01", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1519 弄", - "children": [ - { - "id": 31, - "unicode": "2016-05-01", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1519 弄" - }, - { - "id": 32, - "unicode": "2016-05-01", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1519 弄" - } - ] - }, - { - "id": 4, - "unicode": "2016-05-03", - "examples": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "needable": "0", - "explanation": "上海市普陀区金沙江路 1516 弄" - } - ], - "fhcstx": [ - { - "id": 1, - "unicode": "2016-05-02", - "type": "ssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1518 弄" - }, - { - "id": 2, - "unicode": "2016-05-04", - "type": "ssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1517 弄" - }, - { - "id": 3, - "unicode": "2016-05-01", - "type": "ssdNWssdNWssdNWssdNWssdNWssdNWssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1519 弄", - "children": [ - { - "id": 31, - "unicode": "2016-05-01", - "type": "ssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1519 弄" - }, - { - "id": 32, - "unicode": "2016-05-01", - "type": "ssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1519 弄" - } - ] - }, - { - "id": 4, - "unicode": "2016-05-03", - "type": "ssdNW", - "name": "王小虎", - "explanation": "上海市普陀区金沙江路 1516 弄" - } + "data": { + "tableData": [ + { + "date": "2016-05-02", + "name": "王小虎", + "address": "0", + "id": "ssss2722", + "state": 0 + }, + { + "date": "2016-05-04", + "name": "王小虎", + "address": "0", + "id": "ssss2224", + "state": 0 + }, + { + "date": "2016-05-01", + "name": "王小虎", + "address": "0", + "id": "ssss222", + "state": 1 + }, + { + "date": "2016-05-03", + "name": "王小虎", + "address": "0", + "id": "ssss22", + "state": 0 + } + ], + "tableData1": [ + { + "id": 1, + "date": "2016-05-02", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1518 弄" + }, + { + "id": 2, + "date": "2016-05-04", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1517 弄" + }, + { + "id": 3, + "date": "2016-05-01", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1519 弄", + "children": [ + { + "id": 31, + "date": "2016-05-01", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1519 弄" + }, + { + "id": 32, + "date": "2016-05-01", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1519 弄" + } ] - } -} \ No newline at end of file + }, + { + "id": 4, + "date": "2016-05-03", + "name": "王小虎", + "address": "上海市普陀区金沙江路 1516 弄" + } + ], + "service_size_arr": [ + { + "id": 1, + "fwcs": "100", + "fwl": "100", + "ggsm": "每日可访问100次,访问量为1000PV" + }, + { + "id": 2, + "fwcs": "100", + "fwl": "100", + "ggsm": "每日可访问100次,访问量为1000PV" + }, + { + "id": 3, + "fwcs": "100", + "fwl": "100", + "ggsm": "每日可访问100次,访问量为1000PV" + }, + { + "id": 4, + "fwcs": "100", + "fwl": "100", + "ggsm": "每日可访问100次,访问量为1000PV" + }, + { + "id": 5, + "fwcs": "100", + "fwl": "100", + "ggsm": "每日可访问100次,访问量为1000PV" + } + ], + "params_arr": [ + { + "id": 1, + "zdmc": "地区", + "zdbm": "area", + "zdlx": "字符串", + "zdsm": "这是一个地区的名称", + "zdsl": "贵阳市" + }, + { + "id": 2, + "zdmc": "地区生产总值", + "zdbm": "GDP", + "zdlx": "字符串", + "zdsm": "这是一个地区的总值", + "zdsl": "1235", + "children": [ + { + "id": 21, + "zdmc": "地区", + "zdbm": "area", + "zdlx": "字符串", + "zdsm": "这是一个地区的名称", + "zdsl": "贵阳市" + } + ] + } + ], + "params_use_arr": [ + { + "id": 1, + "dydw": "某某省某某市莫某城管局字符占位", + "dyr": "张先生", + "dyyw": "某某项目的决策指挥系统字符占位", + "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", + "cjms": "某某某应用于决策指挥系统占位字符", + "sqsj": "2016-05-02 12:20:35" + }, + { + "id": 1, + "dydw": "某某省某某市莫某城管局字符占位", + "dyr": "张先生", + "dyyw": "某某项目的决策指挥系统字符占位", + "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", + "cjms": "某某某应用于决策指挥系统占位字符", + "sqsj": "2016-05-02 12:20:35" + }, + { + "id": 1, + "dydw": "某某省某某市莫某城管局字符占位", + "dyr": "张先生", + "dyyw": "某某项目的决策指挥系统字符占位", + "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", + "cjms": "某某某应用于决策指挥系统占位字符", + "sqsj": "2016-05-02 12:20:35" + }, + { + "id": 1, + "dydw": "某某省某某市莫某城管局字符占位", + "dyr": "张先生", + "dyyw": "某某项目的决策指挥系统字符占位", + "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", + "cjms": "某某某应用于决策指挥系统占位字符", + "sqsj": "2016-05-02 12:20:35" + }, + { + "id": 1, + "dydw": "某某省某某市莫某城管局字符占位", + "dyr": "张先生", + "dyyw": "某某项目的决策指挥系统字符占位", + "ywxt": "https://apaas.wodcloud.com/apaas/ui/#/", + "cjms": "某某某应用于决策指挥系统占位字符", + "sqsj": "2016-05-02 12:20:35" + } + ], + "creat_app": [ + { + "id": 1, + "yymc": "地市GDP基础数据", + "yylx": "基础数据服务", + "yybb": "V1.1.1", + "yycjsj": "2016-05-02 12:20:35", + "yybscs": 12 + } + ], + "check_app": [ + { + "id": 1, + "yymc": "地市GDP基础数据", + "yylx": "基础数据服务", + "yybb": "V1.1.1", + "yyspsj": "2016-05-02 12:20:35", + "spzt": 12 + } + ], + "nor_service_list": [ + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "zcfbsj": "2016-05-02 12:20:35", + "bdycs": "12" + }, + { + "id": 2, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "zcfbsj": "2016-05-02", + "bdycs": "12" + }, + { + "id": 3, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "zcfbsj": "2016-05-02", + "bdycs": "12" + }, + { + "id": 4, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "zcfbsj": "2016-05-02", + "bdycs": "12" + }, + { + "id": 5, + "fwmc": "贵州行政区划要素", + "fwlx": "基础数据服务", + "zcfbsj": "2016-05-02", + "bdycs": "12" + } + ], + "nor_apply_service": [ + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "sqsj": "2016-05-02", + "sqspzt": "审批通过" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "sqsj": "2016-05-02", + "sqspzt": "审批通过" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "sqsj": "2016-05-02", + "sqspzt": "审批通过" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "sqsj": "2016-05-02", + "sqspzt": "审批通过" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "sqsj": "2016-05-02", + "sqspzt": "待审批" + } + ], + "nor_service_sh": [ + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "spsj": "2016-05-02", + "spzt": "待审批" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "spsj": "2016-05-02", + "spzt": "待审批" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "spsj": "2016-05-02", + "spzt": "待审批" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "spsj": "2016-05-02", + "spzt": "待审批" + }, + { + "id": 1, + "fwmc": "地市GDP基础数据", + "fwlx": "基础数据服务", + "spsj": "2016-05-02", + "spzt": "待审批" + } + ], + "nor_cloud": [ + { + "id": 1, + "gzqy": "地市GDP基础数据", + "wlhj": "互联网", + "cpu": "2", + "ncgb": "12", + "zyzlgb": "1024", + "sqzt": "审批通过", + "state": 1 + }, + { + "id": 1, + "gzqy": "地市GDP基础数据", + "wlhj": "互联网", + "cpu": "2", + "ncgb": "12", + "zyzlgb": "1024", + "sqzt": "审批通过", + "state": 0 + }, + { + "id": 1, + "gzqy": "地市GDP基础数据", + "wlhj": "互联网", + "cpu": "2", + "ncgb": "12", + "zyzlgb": "1024", + "sqzt": "审批通过", + "state": 0 + }, + { + "id": 1, + "gzqy": "地市GDP基础数据", + "wlhj": "互联网", + "cpu": "2", + "ncgb": "12", + "zyzlgb": "1024", + "sqzt": "审批通过", + "state": 0 + }, + { + "id": 1, + "gzqy": "地市GDP基础数据", + "wlhj": "互联网", + "cpu": "2", + "ncgb": "12", + "zyzlgb": "1024", + "sqzt": "审批通过", + "state": 1 + } + ], + "nor_cloud_manage": [ + { + "id": 1, + "sszz": "地市GDP基础", + "cpu": "2", + "ncgb": "12", + "gzqysl": "10" + }, + { + "id": 1, + "sszz": "地市GDP基础", + "cpu": "2", + "ncgb": "12", + "gzqysl": "10" + }, + { + "id": 1, + "sszz": "地市GDP基础", + "cpu": "2", + "ncgb": "12", + "gzqysl": "10" + }, + { + "id": 1, + "sszz": "地市GDP基础", + "cpu": "2", + "ncgb": "12", + "gzqysl": "10" + }, + { + "id": 1, + "sszz": "地市GDP基础", + "cpu": "2", + "ncgb": "12", + "gzqysl": "10" + } + ], + "min_service_params_arr": [ + { + "id": 1, + "wfwmc": "apaas-mapvideos", + "jkzt": "N/A", + "jklj": "http://mapvideo.wodcloud.com/mapvideos/", + "wfwms": "地图视频融合应用服务" + } + ], + "apply_params_arr": [ + { + "id": 1, + "wfwmc": "apaas-mapvideos", + "jkzt": "N/A", + "jklj": "http://mapvideo.wodcloud.com/mapvideos/", + "wfwms": "地图视频融合应用服务" + } + ], + "fwzc_fwcs": [ + { + "id": 1, + "requestEncoding": "2016-05-02", + "requestValue": "王小虎" + }, + { + "id": 2, + "requestEncoding": "2016-05-02", + "requestValue": "王小虎" + }, + { + "id": 13, + "requestEncoding": "2016-05-02", + "requestValue": "王小虎" + }, + { + "id": 11, + "requestEncoding": "2016-05-02", + "requestValue": "王小虎" + } + ], + "qqcstx": [ + { + "id": 1, + "unicode": "2016-05-02", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1518 弄" + }, + { + "id": 2, + "unicode": "2016-05-04", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1517 弄" + }, + { + "id": 3, + "unicode": "2016-05-01", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1519 弄", + "children": [ + { + "id": 31, + "unicode": "2016-05-01", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1519 弄" + }, + { + "id": 32, + "unicode": "2016-05-01", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1519 弄" + } + ] + }, + { + "id": 4, + "unicode": "2016-05-03", + "examples": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "needable": "0", + "explanation": "上海市普陀区金沙江路 1516 弄" + } + ], + "fhcstx": [ + { + "id": 1, + "unicode": "2016-05-02", + "type": "ssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1518 弄" + }, + { + "id": 2, + "unicode": "2016-05-04", + "type": "ssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1517 弄" + }, + { + "id": 3, + "unicode": "2016-05-01", + "type": "ssdNWssdNWssdNWssdNWssdNWssdNWssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1519 弄", + "children": [ + { + "id": 31, + "unicode": "2016-05-01", + "type": "ssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1519 弄" + }, + { + "id": 32, + "unicode": "2016-05-01", + "type": "ssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1519 弄" + } + ] + }, + { + "id": 4, + "unicode": "2016-05-03", + "type": "ssdNW", + "name": "王小虎", + "explanation": "上海市普陀区金沙江路 1516 弄" + } + ] + } +}