Browse Source

Merge branch 'hotfix/v4.7.55.3' of http://192.168.3.207:8080/qmx/jy into hotfix/v4.7.55.3

tsz 2 years ago
parent
commit
6ae26c127f
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/jfw/front/wxkeyset.go

+ 0 - 4
src/jfw/front/wxkeyset.go

@@ -78,7 +78,6 @@ func (m *Front) WxKeyset(tpl string) error {
 func (m *Front) WxKeysetAjaxReq() {
 	defer util.Catch()
 	userId, _ := m.GetSession("userId").(string)
-	positionType := util.Int64All(m.GetSession("positionType"))
 	if userId == "" {
 		m.ServeJson(map[string]interface{}{
 			"flag": false,
@@ -86,9 +85,6 @@ func (m *Front) WxKeysetAjaxReq() {
 		return
 	}
 	types := "o_jy"
-	if positionType == 1 {
-		types = "o_entniche"
-	}
 	//增加锁,防止map读写
 	//	lock, _ := m.Session().Get("Lock").(*sync.Mutex)
 	//	lock.Lock()