Blame view

common/enums.js 269 Bytes
c7add6cf   “wangming”   初始版本开发完毕
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  module.exports = {

  	genders: [{

  			value: '1',

  			text: '男'

  		},

  		{

  			value: '2',

  			text: '女'

  		},

  		{

  			value: '3',

  			text: '保密'

  		},

  	],

  	booleanRange: [{

  			value: 1,

  			text: '是'

  		},

  		{

  			value: 0,

  			text: '否'

  		},

  	]

  }