123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package system
- import (
- "github.com/flipped-aurora/gin-vue-admin/server/core"
- "github.com/flipped-aurora/gin-vue-admin/server/global"
- "github.com/flipped-aurora/gin-vue-admin/server/initialize"
- "github.com/silenceper/wechat/v2/officialaccount/menu"
- "testing"
- )
- func TestName(t *testing.T) {
- //ssk:="4Iki42L+u5IYKcYABCDe/A=="
- //r:="K8yfw2N2JjgdoYwxSvTq39dKEYRruSftVIZHQQEAs9Kh3XRazd1wArh0kkvWKLvxySX/xLI68p973ea9f4cevYPeMENLX/6dFEyCbxv2dcZlKh8sFSi4rqDXuPf36Hayf024ek/35EylDt8n+XqqUfKv1RZePQYZuxThsQ92yba4FB4Nh2VHC7GFoIRQEkOBCq9sTqjX0IAVrUxhs0hz092+1AMZv+pptw9hjYv144/OIzmwxV97H9svAjVvqYbeWexlIocbAp7Z6+dmyHyQILpKFFgWlUE5vVZkDQAAeh+KcV//7aShZu+l7az1er3B5AOkNQ8UJX85Ux5wyCeduxbmOzGdViycrFQVa86r0cEGVFcNWmyGElUse5jzU3H+P/XMJ9AiZZ2ybvT3NrwgdBck49iulEXoWQKjczTGBIE="
- //vi:="gIEEvlb9cEjErJxZ5sflrw=="
- //phone , _ := weapp.DecryptMobile(ssk, r, vi)
- //fmt.Print(phone)
- global.GVA_VP = core.Viper() // 初始化Viper
- //global.GVA_LOG = core.Zap() // 初始化zap日志库
- global.GVA_DB = initialize.Gorm() // gorm连接数据库
- initialize.Redis() //连接redis
- initialize.Wechat() //初始化微信公众服务
- //_, resysDictionaryDetail := dictionaryDetailService.GetSysDictionaryDetail(8)
- //fmt.Printf("\t%v", resysDictionaryDetail)
- var menuAA []*menu.Button
- menuAA = append(menuAA, &menu.Button{Type: "miniprogram", Name: "小程序", URL: "http://zk1006.cn", AppID: "wx0dc3e4978f919285", PagePath: "/pages/checking"})
- menuAA = append(menuAA, &menu.Button{Type: "view", Name: "一键授权", URL: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx66e0fbb5a735bcc4&redirect_uri=https://cc.zjkduoduo.com/api/wechat/auth&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect"})
- global.GVA_WECHAT.GetMenu().SetMenu(menuAA)
- //f,_:=excelize.OpenFile("C:\\Users\\ice\\Documents\\WeChat Files\\zk1006\\FileStorage\\File\\2021-09\\21类.xlsx")
- //files := f.GetSheetList()
- //for _, sheet := range files {
- // rows,_:=f.GetRows(sheet)
- // fmt.Println(sheet)
- // for _, row := range rows {
- // for _, value := range row {
- // fmt.Printf("\t%s", strings.Replace(value, "\n", "", -1))
- // }
- // fmt.Println()
- // }
- // fmt.Println()
- //}
- }
|