You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
312 B
23 lines
312 B
5 years ago
|
module IssuesHelper
|
||
|
|
||
|
def issue_status
|
||
|
{
|
||
|
"新增": "1",
|
||
|
"正在解决": "2",
|
||
|
"已解决": "3",
|
||
|
"反馈": "4",
|
||
|
"关闭": "5",
|
||
|
"拒绝": "6"
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def version_status
|
||
|
{
|
||
|
"开启": "open",
|
||
|
"关闭": "closed",
|
||
|
"锁定": "locked"
|
||
|
}
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|