an_xiao/police_uniapp/pagesC/Encapsulation/enum.js

73 lines
1.2 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const physicalEnum = [
{
index: 0,
name: '1、钢叉、头盔、盾牌、警棍、防刺手套等防护器材是否齐全',
key:'equipCountValue',
dataList:[
{
value: 0,
num: 5,
name:'1:缺少防护器材钢叉扣0.5分'
},
{
value: 1,
num: 5,
name:'2:缺少防护器材头盔扣0.5分'
},
{
value: 2,
num: 5,
name:'3:缺少防护器材盾牌扣0.5分'
},
{
value: 3,
num: 5,
name:'4:缺少防护器材警棍扣0.5分'
},
{
value: 4,
num: 5,
name:'5:缺少防护器材防刺手套扣0.5分'
},
]
},
{
index: 1,
name: '2、校园封闭式管理是否落实到位',
key:'zoneValue',
dataList:[
{
value: 0,
num: 0,
name:'是'
},
{
value: 1,
num: 20,
name:'有单独院落的围墙不低于2米无单独院落的教学区全封闭扣2分'
},
]
},
{
index: 2,
name: '3、主要出入口是否有合格防冲撞设施',
key:'collisionValue',
dataList:[
{
value: 0,
num: 0,
name:'是'
},
{
value:1,
num: 30,
name:'出入口无合格防冲撞设施'
}
]
},
]
module.exports = {
physicalEnum
}