附近小店
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.

hdl_store.go 539 B

1 month ago
1234567891011121314151617181920212223242526272829
  1. package hdl
  2. import (
  3. "applet/app/e"
  4. "applet/app/svc"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func BankStoreCate(c *gin.Context) {
  8. var res = []map[string]string{
  9. {"name": "全部网点", "value": ""},
  10. {"name": "附近网点", "value": "1"},
  11. {"name": "关注网点", "value": "2"},
  12. }
  13. e.OutSuc(c, res, nil)
  14. return
  15. }
  16. func BankStore(c *gin.Context) {
  17. svc.BankStore(c)
  18. }
  19. func Store(c *gin.Context) {
  20. svc.Store(c)
  21. }
  22. func StoreAddLike(c *gin.Context) {
  23. svc.StoreAddLike(c)
  24. }
  25. func StoreCancelLike(c *gin.Context) {
  26. svc.StoreCancelLike(c)
  27. }