Commit 04016627 authored by Gakki's avatar Gakki

ok

parents 60b52843 592ef6ca
...@@ -44,7 +44,7 @@ async function GetRoutes(router) { ...@@ -44,7 +44,7 @@ async function GetRoutes(router) {
break break
default: // 当前仅可使用pudong / xuhui-sit/uat进行打包 default: // 当前仅可使用pudong / xuhui-sit/uat进行打包
MicRouters = xuhui MicRouters = pudong
break break
} }
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"children": [ "children": [
{ {
"path": "/pudong/complaintPath/complaintList", "name": "complaintList", "path": "/pudong/complaintPath/complaintList", "name": "complaintList",
"meta": { "title": "投诉列表", "menuPath": true, "menuIcon": "profile", "hideInBread": false } "meta": { "title": "投诉直通车列表", "menuPath": true, "menuIcon": "profile", "hideInBread": false }
}, },
{ {
"path": "/pudong/complaintPath/complaint12345TEL", "name": "complaint12345TEL", "path": "/pudong/complaintPath/complaint12345TEL", "name": "complaint12345TEL",
...@@ -51,12 +51,24 @@ ...@@ -51,12 +51,24 @@
] ]
}, },
{ {
"path": "/danger/creditTitle", "name": "creditTitle", "path": "/danger/credit", "name": "creditTitle",
"meta": { "title": "信用主体评分", "menuPath": true, "menuIcon": "profile", "hideInBread": false, "openMode": "child" } "meta": { "title": "信用管理", "menuPath": true, "menuIcon": "profile", "hideInBread": false},
"children":[
{
"path": "/danger/credit/creditTitle", "name": "creditTitle",
"meta": { "title": "信用主体评分", "menuPath": true, "menuIcon": "profile", "hideInBread": false}
},
{
"path": "/danger/credit/archive", "name": "creditArchive",
"meta": {
"title": "信用主体归档", "menuPath": true, "menuIcon": "profile", "hideInBread": false
}
}
]
}, },
{ {
"path": "/danger/creditManage", "name": "creditManage", "path": "/danger/creditManage", "name": "creditManage",
"meta": { "title": "隐患管理", "menuPath": true, "menuIcon": "profile", "hideInBread": true }, "meta": { "title": "隐患管理", "menuPath": true, "menuIcon": "profile", "hideInBread": false },
"children": [ "children": [
{ {
"path": "/danger/creditManage/riskImportExport", "name": "riskImportExport", "path": "/danger/creditManage/riskImportExport", "name": "riskImportExport",
......
import ajax from '@/server/ajax'
import api from '@/server/api'
import common from '@/util/common.js'
import moment from 'moment'
import { set } from 'shelljs'
import state from './state'
export default {
// initData({dispatch}) {
// dispatch('get_ComplaintsTrain', 'month')
// },
// 行业督查
getIndustrySupervision({commit}, params){
return ajax.get({
url: api.GET_IndustrySupervision,
params
})
},
// 行业督查数字
getIndustrySupervision({commit}, params){
return ajax.get({
url: api.get_specialInspection,
params
})
},
// 行业月份勾选
getMonthCheck({commit}, params){
return ajax.get({
url: api.get_month_check,
params
})
},
// 小区加装电梯
getADDelevator({commit}, params){
return ajax.get({
url: api.get_elevator_collect,
params
})
},
// 投诉直通车
get_ComplaintsTrain({commit}, params){
return ajax.get({
url: api.GET_ComplaintsTrain.replace('{type}', params),
})
},
// 当年风险处置情况
get_RiskDisposal({commit}, ){
return ajax.get({
url: api.GET_RiskDisposal,
})
},
//信用管理等级排行
GET_Creditratingranking({commit}, ){
return ajax.get({
url: api.GET_Creditratingranking,
})
},
}
...@@ -515,9 +515,9 @@ export default { ...@@ -515,9 +515,9 @@ export default {
// 'tableName': !this.tableName?'': this.tableName, // 'tableName': !this.tableName?'': this.tableName,
'type': !this.type? '': this.type, 'type': !this.type? '': this.type,
'sectType_in': '1', 'sectType_in': '1',
'finishDate_lt': this.isBeforeTwoThousand=='1'? '2000-01-01': '',
'finishDate_gt': this.isBeforeTwoThousand=='2'? '2000-01-01': '',
'c.createTime_desc': 'desc', 'c.createTime_desc': 'desc',
'finishDate_lt': !!this.isBeforeTwoThousand? '2000-01-01': '',
'finishDate_gt': !this.form.getFieldValue('finishDate') ? '' : !this.isBeforeTwoThousand? '2000-01-01': '',
}, obj, isHocId)// 融合obj 和isHocId 到入参 }, obj, isHocId)// 融合obj 和isHocId 到入参
searchParams[this.personalizedKey] = !this.formed?'': this.formed searchParams[this.personalizedKey] = !this.formed?'': this.formed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment