guhongwei 2 years ago
parent
commit
22858e7d11
47 changed files with 662 additions and 4 deletions
  1. 10 1
      app.json
  2. 66 0
      pagesMatch/matchAdmin/address/add.js
  3. 3 0
      pagesMatch/matchAdmin/address/add.json
  4. 0 0
      pagesMatch/matchAdmin/address/add.less
  5. 2 0
      pagesMatch/matchAdmin/address/add.wxml
  6. 1 0
      pagesMatch/matchAdmin/address/add.wxss
  7. 66 0
      pagesMatch/matchAdmin/address/list.js
  8. 3 0
      pagesMatch/matchAdmin/address/list.json
  9. 0 0
      pagesMatch/matchAdmin/address/list.less
  10. 2 0
      pagesMatch/matchAdmin/address/list.wxml
  11. 1 0
      pagesMatch/matchAdmin/address/list.wxss
  12. 66 0
      pagesMatch/matchAdmin/mtgroup/add.js
  13. 3 0
      pagesMatch/matchAdmin/mtgroup/add.json
  14. 0 0
      pagesMatch/matchAdmin/mtgroup/add.less
  15. 2 0
      pagesMatch/matchAdmin/mtgroup/add.wxml
  16. 1 0
      pagesMatch/matchAdmin/mtgroup/add.wxss
  17. 66 0
      pagesMatch/matchAdmin/mtgroup/auto.js
  18. 3 0
      pagesMatch/matchAdmin/mtgroup/auto.json
  19. 0 0
      pagesMatch/matchAdmin/mtgroup/auto.less
  20. 2 0
      pagesMatch/matchAdmin/mtgroup/auto.wxml
  21. 1 0
      pagesMatch/matchAdmin/mtgroup/auto.wxss
  22. 66 0
      pagesMatch/matchAdmin/mtgroup/list.js
  23. 3 0
      pagesMatch/matchAdmin/mtgroup/list.json
  24. 0 0
      pagesMatch/matchAdmin/mtgroup/list.less
  25. 2 0
      pagesMatch/matchAdmin/mtgroup/list.wxml
  26. 1 0
      pagesMatch/matchAdmin/mtgroup/list.wxss
  27. 66 0
      pagesMatch/matchAdmin/mtschedule/add.js
  28. 3 0
      pagesMatch/matchAdmin/mtschedule/add.json
  29. 0 0
      pagesMatch/matchAdmin/mtschedule/add.less
  30. 2 0
      pagesMatch/matchAdmin/mtschedule/add.wxml
  31. 1 0
      pagesMatch/matchAdmin/mtschedule/add.wxss
  32. 66 0
      pagesMatch/matchAdmin/mtschedule/list.js
  33. 3 0
      pagesMatch/matchAdmin/mtschedule/list.json
  34. 0 0
      pagesMatch/matchAdmin/mtschedule/list.less
  35. 2 0
      pagesMatch/matchAdmin/mtschedule/list.wxml
  36. 1 0
      pagesMatch/matchAdmin/mtschedule/list.wxss
  37. 66 0
      pagesMatch/userAdmin/schedule/linfo.js
  38. 3 0
      pagesMatch/userAdmin/schedule/linfo.json
  39. 0 0
      pagesMatch/userAdmin/schedule/linfo.less
  40. 2 0
      pagesMatch/userAdmin/schedule/linfo.wxml
  41. 1 0
      pagesMatch/userAdmin/schedule/linfo.wxss
  42. 66 0
      pagesMatch/userAdmin/schedule/sinfo.js
  43. 3 0
      pagesMatch/userAdmin/schedule/sinfo.json
  44. 0 0
      pagesMatch/userAdmin/schedule/sinfo.less
  45. 2 0
      pagesMatch/userAdmin/schedule/sinfo.wxml
  46. 1 0
      pagesMatch/userAdmin/schedule/sinfo.wxss
  47. 4 3
      utils/dict.js

+ 10 - 1
app.json

@@ -98,9 +98,11 @@
             "root": "pagesMatch",
             "pages": [
                 "system/index",
+                "matchAdmin/profit/list",
                 "matchAdmin/referee/list",
                 "matchAdmin/referee/info",
-                "matchAdmin/profit/list",
+                "matchAdmin/address/list",
+                "matchAdmin/address/add",
                 "matchAdmin/refund/list",
                 "matchAdmin/match/list",
                 "matchAdmin/match/add",
@@ -109,12 +111,19 @@
                 "matchAdmin/project/list",
                 "matchAdmin/project/add",
                 "matchAdmin/teamapply/list",
+                "matchAdmin/mtgroup/list",
+                "matchAdmin/mtgroup/add",
+                "matchAdmin/mtgroup/auto",
+                "matchAdmin/mtschedule/list",
+                "matchAdmin/mtschedule/add",
                 "userAdmin/sign/list",
                 "userAdmin/sign/info",
                 "userAdmin/team/list",
                 "userAdmin/team/add",
                 "userAdmin/team/info",
                 "userAdmin/schedule/list",
+                "userAdmin/schedule/sinfo",
+                "userAdmin/schedule/linfo",
                 "userAdmin/bill/list",
                 "userAdmin/bill/info",
                 "test/index",

+ 66 - 0
pagesMatch/matchAdmin/address/add.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/address/add.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/address/add.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/address/add.less


+ 2 - 0
pagesMatch/matchAdmin/address/add.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/address/add.wxml-->
+<text>pagesMatch/matchAdmin/address/add.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/address/add.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/address/add.wxss */

+ 66 - 0
pagesMatch/matchAdmin/address/list.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/address/list.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/address/list.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/address/list.less


+ 2 - 0
pagesMatch/matchAdmin/address/list.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/address/list.wxml-->
+<text>pagesMatch/matchAdmin/address/list.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/address/list.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/address/list.wxss */

+ 66 - 0
pagesMatch/matchAdmin/mtgroup/add.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/mtgroup/add.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/mtgroup/add.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/mtgroup/add.less


+ 2 - 0
pagesMatch/matchAdmin/mtgroup/add.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/mtgroup/add.wxml-->
+<text>pagesMatch/matchAdmin/mtgroup/add.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/mtgroup/add.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/mtgroup/add.wxss */

+ 66 - 0
pagesMatch/matchAdmin/mtgroup/auto.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/mtgroup/auto.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/mtgroup/auto.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/mtgroup/auto.less


+ 2 - 0
pagesMatch/matchAdmin/mtgroup/auto.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/mtgroup/auto.wxml-->
+<text>pagesMatch/matchAdmin/mtgroup/auto.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/mtgroup/auto.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/mtgroup/auto.wxss */

+ 66 - 0
pagesMatch/matchAdmin/mtgroup/list.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/mtgroup/list.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/mtgroup/list.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/mtgroup/list.less


+ 2 - 0
pagesMatch/matchAdmin/mtgroup/list.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/mtgroup/list.wxml-->
+<text>pagesMatch/matchAdmin/mtgroup/list.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/mtgroup/list.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/mtgroup/list.wxss */

+ 66 - 0
pagesMatch/matchAdmin/mtschedule/add.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/mtschedule/add.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/mtschedule/add.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/mtschedule/add.less


+ 2 - 0
pagesMatch/matchAdmin/mtschedule/add.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/mtschedule/add.wxml-->
+<text>pagesMatch/matchAdmin/mtschedule/add.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/mtschedule/add.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/mtschedule/add.wxss */

+ 66 - 0
pagesMatch/matchAdmin/mtschedule/list.js

@@ -0,0 +1,66 @@
+// pagesMatch/matchAdmin/mtschedule/list.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/matchAdmin/mtschedule/list.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/matchAdmin/mtschedule/list.less


+ 2 - 0
pagesMatch/matchAdmin/mtschedule/list.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/matchAdmin/mtschedule/list.wxml-->
+<text>pagesMatch/matchAdmin/mtschedule/list.wxml</text>

+ 1 - 0
pagesMatch/matchAdmin/mtschedule/list.wxss

@@ -0,0 +1 @@
+/* pagesMatch/matchAdmin/mtschedule/list.wxss */

+ 66 - 0
pagesMatch/userAdmin/schedule/linfo.js

@@ -0,0 +1,66 @@
+// pagesMatch/userAdmin/schedule/linfo.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/userAdmin/schedule/linfo.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/userAdmin/schedule/linfo.less


+ 2 - 0
pagesMatch/userAdmin/schedule/linfo.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/userAdmin/schedule/linfo.wxml-->
+<text>pagesMatch/userAdmin/schedule/linfo.wxml</text>

+ 1 - 0
pagesMatch/userAdmin/schedule/linfo.wxss

@@ -0,0 +1 @@
+/* pagesMatch/userAdmin/schedule/linfo.wxss */

+ 66 - 0
pagesMatch/userAdmin/schedule/sinfo.js

@@ -0,0 +1,66 @@
+// pagesMatch/userAdmin/schedule/sinfo.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad(options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide() {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload() {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh() {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom() {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage() {
+
+    }
+})

+ 3 - 0
pagesMatch/userAdmin/schedule/sinfo.json

@@ -0,0 +1,3 @@
+{
+    "usingComponents": {}
+}

+ 0 - 0
pagesMatch/userAdmin/schedule/sinfo.less


+ 2 - 0
pagesMatch/userAdmin/schedule/sinfo.wxml

@@ -0,0 +1,2 @@
+<!--pagesMatch/userAdmin/schedule/sinfo.wxml-->
+<text>pagesMatch/userAdmin/schedule/sinfo.wxml</text>

+ 1 - 0
pagesMatch/userAdmin/schedule/sinfo.wxss

@@ -0,0 +1 @@
+/* pagesMatch/userAdmin/schedule/sinfo.wxss */

+ 4 - 3
utils/dict.js

@@ -182,8 +182,9 @@ export const match_menu = [
                 title: '账号管理',
                 icon: 'icon-yonghu',
                 btn: [
-                    { title: '裁判信息', route: 'matchAdmin/referee/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                     { title: '收益信息', route: 'matchAdmin/profit/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
+                    { title: '裁判信息', route: 'matchAdmin/referee/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
+                    { title: '场地设置', route: 'matchAdmin/address/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                     { title: '退款申请', route: 'matchAdmin/refund/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                 ]
             },
@@ -195,8 +196,8 @@ export const match_menu = [
                     { title: '赛事组别', route: 'matchAdmin/group/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                     { title: '组别项目', route: 'matchAdmin/project/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                     { title: '组队申请', route: 'matchAdmin/teamapply/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
-                    // { title: '赛制分组', route: 'matchAdmin/branchgroup/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
-                    // { title: '小组赛管理', route: 'matchAdmin/groupmatch/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
+                    { title: '小组赛组设置', route: 'matchAdmin/mtgroup/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
+                    { title: '小组赛赛程设置', route: 'matchAdmin/mtschedule/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                     // { title: '淘汰赛管理', route: 'matchAdmin/elimmatch/list', icon: 'icon-xuexiao_xuexiaoxinxi' },
                 ]
             },