组织配置页面状态的更新

This commit is contained in:
huang 2016-06-03 14:56:38 +08:00
parent 1e34a4f174
commit e726a362d8
1 changed files with 5 additions and 1 deletions

View File

@ -118,13 +118,17 @@ module OrganizationsHelper
#排列下拉框
def subfield_status_option
type = []
option1 = []
option1 << "左一"
option1 << "1"
type << option1
option2 = []
option2 << "左二"
option2 << "2"
type << option2
option3 = []
option3 << "左三"
option3 << "2"
option3 << "3"
type << option3
type
end