|
@@ -37,7 +37,7 @@ type ResourceController struct {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -57,6 +57,9 @@ func (this *ResourceController) List() {
|
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
|
|
|
classifyIds := this.GetString("ClassifyIds")
|
|
|
+
|
|
|
+ state := this.GetString("State")
|
|
|
+
|
|
|
|
|
|
addUserIds, _ := this.GetInt("SysUserIds")
|
|
|
|
|
@@ -96,6 +99,11 @@ func (this *ResourceController) List() {
|
|
|
condition += ` AND admin_id = ? `
|
|
|
pars = append(pars, this.SysUser.AdminId)
|
|
|
}
|
|
|
+ if state != "" {
|
|
|
+ stateArr := strings.Split(state, ",")
|
|
|
+ condition += ` AND state in (?) `
|
|
|
+ pars = append(pars, stateArr)
|
|
|
+ }
|
|
|
|
|
|
if isShowPublic {
|
|
|
condition += ` AND state = ? `
|