main_test.go 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package main
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/core"
  4. "github.com/flipped-aurora/gin-vue-admin/server/global"
  5. "github.com/flipped-aurora/gin-vue-admin/server/initialize"
  6. "github.com/silenceper/wechat/v2/officialaccount/menu"
  7. "go.uber.org/zap"
  8. "testing"
  9. )
  10. func TestName(t *testing.T) {
  11. //ssk:="4Iki42L+u5IYKcYABCDe/A=="
  12. //r:="K8yfw2N2JjgdoYwxSvTq39dKEYRruSftVIZHQQEAs9Kh3XRazd1wArh0kkvWKLvxySX/xLI68p973ea9f4cevYPeMENLX/6dFEyCbxv2dcZlKh8sFSi4rqDXuPf36Hayf024ek/35EylDt8n+XqqUfKv1RZePQYZuxThsQ92yba4FB4Nh2VHC7GFoIRQEkOBCq9sTqjX0IAVrUxhs0hz092+1AMZv+pptw9hjYv144/OIzmwxV97H9svAjVvqYbeWexlIocbAp7Z6+dmyHyQILpKFFgWlUE5vVZkDQAAeh+KcV//7aShZu+l7az1er3B5AOkNQ8UJX85Ux5wyCeduxbmOzGdViycrFQVa86r0cEGVFcNWmyGElUse5jzU3H+P/XMJ9AiZZ2ybvT3NrwgdBck49iulEXoWQKjczTGBIE="
  13. //vi:="gIEEvlb9cEjErJxZ5sflrw=="
  14. //phone , _ := weapp.DecryptMobile(ssk, r, vi)
  15. //fmt.Print(phone)
  16. global.GVA_VP = core.Viper() // 初始化Viper
  17. global.GVA_LOG = core.Zap() // 初始化zap日志库
  18. //global.GVA_DB = initialize.Gorm() // gorm连接数据库
  19. //initialize.Redis() //连接redis
  20. initialize.Wechat() //初始化微信公众服务
  21. //_, resysDictionaryDetail := dictionaryDetailService.GetSysDictionaryDetail(8)
  22. //fmt.Printf("\t%v", resysDictionaryDetail)
  23. var menuAA []*menu.Button
  24. menuAA = append(menuAA, &menu.Button{Type: "miniprogram", Name: "小程序", URL: "http://zk1006.cn", AppID: "wx0dc3e4978f919285", PagePath: "/pages/checking"})
  25. 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"})
  26. err := global.GVA_WECHAT.GetMenu().SetMenu(menuAA)
  27. global.GVA_LOG.Info("错误", zap.Any("err", err))
  28. //var dictionaryDetailService = service.ServiceGroupApp.SystemServiceGroup.DictionaryDetailService
  29. //f,_:=excelize.OpenFile("C:\\Users\\ice\\Documents\\WeChat Files\\zk1006\\FileStorage\\File\\2021-09\\21类.xlsx")
  30. //files := f.GetSheetList()
  31. //s:= true
  32. //var ss *bool
  33. //ss=&s
  34. //j:=10
  35. //for _, sheet := range files {
  36. // rows,_:=f.GetRows(sheet)
  37. // fmt.Println(j)
  38. // i:=0
  39. // for _, row := range rows {
  40. // if len(row)>1&& row[1]!="" {
  41. // fmt.Printf("\t%v",i )
  42. //
  43. // ditc:=system.SysDictionaryDetail{Label:strings.Replace(strings.Replace(row[1], "\n", "", -1),"◎","",-1),
  44. // Value: i,Status: ss ,Sort: i,SysDictionaryID: j}
  45. // dictionaryDetailService.CreateSysDictionaryDetail(ditc)
  46. // fmt.Println()
  47. // i++
  48. // }
  49. // //for index, value := range row {
  50. //
  51. // // fmt.Printf("\t%v", index)
  52. // //
  53. // //}
  54. //
  55. // }
  56. // j++
  57. // fmt.Println()
  58. //}
  59. //var places = service.ServiceGroupApp.AutoCodeServiceGroup.PlaceService
  60. //f, _ := excelize.OpenFile("C:\\Users\\ice\\Documents\\WeChat Files\\zk1006\\FileStorage\\File\\2021-09\\点位信息(经开区).xlsx")
  61. //files := f.GetSheetList()
  62. //for _, sheet := range files {
  63. // rows, _ := f.GetRows(sheet)
  64. // for _, row := range rows {
  65. // if len(row) > 1 && row[1] != "" {
  66. // fmt.Printf("\t%v", row[0])
  67. // places.CreatePlace(autocode.Place{Name: strings.Replace(row[0], "\n", "", -1), Position: strings.Replace(row[1], "\n", "", -1),
  68. // Type: strings.Replace(row[2], "\n", "", -1), Region: strings.Replace(row[3], "\n", "", -1)})
  69. // fmt.Println()
  70. // }
  71. // }
  72. // fmt.Println()
  73. //}
  74. }