parent
03e67e6cfc
commit
f584d2fa42
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="JavaScriptLibraryMappings">
|
||||||
|
<includedPredefinedLibrary name="Node.js Core" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="EslintConfiguration">
|
||||||
|
<option name="fix-on-save" value="true" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,29 @@
|
|||||||
|
#-------------------------------------------------------------------------------#
|
||||||
|
# Qodana analysis is configured by qodana.yaml file #
|
||||||
|
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
||||||
|
#-------------------------------------------------------------------------------#
|
||||||
|
version: "1.0"
|
||||||
|
|
||||||
|
#Specify inspection profile for code analysis
|
||||||
|
profile:
|
||||||
|
name: qodana.starter
|
||||||
|
|
||||||
|
#Enable inspections
|
||||||
|
#include:
|
||||||
|
# - name: <SomeEnabledInspectionId>
|
||||||
|
|
||||||
|
#Disable inspections
|
||||||
|
#exclude:
|
||||||
|
# - name: <SomeDisabledInspectionId>
|
||||||
|
# paths:
|
||||||
|
# - <path/where/not/run/inspection>
|
||||||
|
|
||||||
|
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
|
||||||
|
#bootstrap: sh ./prepare-qodana.sh
|
||||||
|
|
||||||
|
#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
|
||||||
|
#plugins:
|
||||||
|
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
|
||||||
|
|
||||||
|
#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
|
||||||
|
linter: jetbrains/qodana-js:latest
|
@ -1,52 +0,0 @@
|
|||||||
export const asideMap: Recordable<AsideEntity> = {
|
|
||||||
izupuser: {
|
|
||||||
label: '提报人',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: true,
|
|
||||||
key: 'izupuser',
|
|
||||||
component: ReportUserVue,
|
|
||||||
},
|
|
||||||
izproject: {
|
|
||||||
label: '所属项目',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: true,
|
|
||||||
key: 'izproject',
|
|
||||||
component: IzProjectVue,
|
|
||||||
},
|
|
||||||
izplan: {
|
|
||||||
label: '所属计划',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: true,
|
|
||||||
key: 'izplan',
|
|
||||||
component: PlanVue,
|
|
||||||
},
|
|
||||||
izstatus: {
|
|
||||||
label: '审批状态',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: false,
|
|
||||||
key: 'izstatus',
|
|
||||||
component: PlanVue, // todo
|
|
||||||
},
|
|
||||||
izyear: {
|
|
||||||
label: '提报时间',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: false,
|
|
||||||
key: 'izyear',
|
|
||||||
component: TimeVue,
|
|
||||||
},
|
|
||||||
iztaskrrom: {
|
|
||||||
label: '任务来源',
|
|
||||||
defaultValue: null,
|
|
||||||
isDefaultFilter: false,
|
|
||||||
key: 'iztaskrrom',
|
|
||||||
component: IztaskrromVue,
|
|
||||||
},
|
|
||||||
izshowall: {
|
|
||||||
label: '显示全部任务数据',
|
|
||||||
defaultValue: true,
|
|
||||||
isDefaultFilter: false,
|
|
||||||
key: 'izshowall',
|
|
||||||
component: PictureDownloadVue,
|
|
||||||
inFilterList: false,
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in new issue