guhongwei 2 年之前
父節點
當前提交
75e49f12f0

+ 35 - 0
pages/match/achieve.less

@@ -0,0 +1,35 @@
+.main {
+    height: var(--twoHeight);
+    background-color: var(--bgColor);
+
+    .one {
+        .content {
+            display: flex;
+            flex-direction: row;
+            border-bottom: 1px dashed var(--f1Color);
+            padding: 2vw 0;
+            margin: 0 2vw 2vw 2vw;
+
+            .label {
+                color: var(--labelColor);
+            }
+
+            .value {
+                flex-grow: 1;
+                color: var(--txtColor);
+
+            }
+        }
+
+        .btn {
+            text-align: center;
+            margin: 5vw 0 0 0;
+
+            button {
+                width: 40vw;
+                margin: 0 2vw;
+                padding: 1vw 0;
+            }
+        }
+    }
+}

+ 27 - 1
pages/match/achieve.wxss

@@ -1 +1,27 @@
-/* pages/match/achieve.wxss */
+.main {
+  height: var(--twoHeight);
+  background-color: var(--bgColor);
+}
+.main .one .content {
+  display: flex;
+  flex-direction: row;
+  border-bottom: 1px dashed var(--f1Color);
+  padding: 2vw 0;
+  margin: 0 2vw 2vw 2vw;
+}
+.main .one .content .label {
+  color: var(--labelColor);
+}
+.main .one .content .value {
+  flex-grow: 1;
+  color: var(--txtColor);
+}
+.main .one .btn {
+  text-align: center;
+  margin: 5vw 0 0 0;
+}
+.main .one .btn button {
+  width: 40vw;
+  margin: 0 2vw;
+  padding: 1vw 0;
+}

+ 105 - 17
pages/match/add.js

@@ -1,66 +1,154 @@
-// pages/match/add.js
+const app = getApp();
+import WxValidate from '../../utils/wxValidate';
+import { matchType } from '../../utils/dict';
 Page({
 Page({
-
-    /**
-     * 页面的初始数据
-     */
     data: {
     data: {
-
+        frameStyle: { useTop: true, name: '信息管理', leftArrow: true, useBar: false },
+        id: '',
+        form: {},
+        typeList: matchType,
+    },
+    initValidate() {
+        const rules = { name: { required: true } }
+        // 验证字段的提示信息,若不传则调用默认的信息
+        const messages = { name: { required: '请输入场地名称' } };
+        this.WxValidate = new WxValidate(rules, messages)
+    },
+    back: function () {
+        wx.navigateBack({ delta: 1 })
+    },
+    // 上传图片
+    imgUpl: function (e) {
+        const that = this;
+        let data = that.data.form.logo;
+        data.push(e.detail)
+        that.setData({ 'form.logo': data })
+    },
+    // 删除图片
+    imgDel: function (e) {
+        const that = this;
+        let list = that.data.form.logo;
+        let arr = list.filter((i, index) => index != e.detail.index)
+        that.setData({ 'form.logo': arr })
+    },
+    // 选择比赛类别
+    typeChange: function (e) {
+        const that = this;
+        let data = that.data.typeList[e.detail.value];
+        if (data) that.setData({ 'form.type': data.label })
+    },
+    // 选择比赛开始时间
+    startChange: function (e) {
+        const that = this;
+        that.setData({ 'form.start_time': e.detail.value });
+    },
+    // 选择比赛结束时间
+    endChange: function (e) {
+        const that = this;
+        that.setData({ 'form.end_time': e.detail.value });
+    },
+    // 选择报名截止日期
+    dateChange: function (e) {
+        const that = this;
+        that.setData({ 'form.sign_date': e.detail.value });
+    },
+    // 选择报名截止时间
+    timeChange: function (e) {
+        const that = this;
+        that.setData({ 'form.sign_time': e.detail.value });
+    },
+    toSubmit: async function (e) {
+        const that = this;
+        const form = that.data.form;
+        const params = e.detail.value;
+        if (!this.WxValidate.checkForm(params)) {
+            const error = this.WxValidate.errorList[0];
+            wx.showToast({ title: `${error.msg}`, icon: 'error', duration: 2000 })
+            return false
+        } else {
+            let arr;
+            if (form._id) arr = await app.$post(`/newCourt/api/match/${form._id}`, params);
+            else arr = await app.$post(`/newCourt/api/match`, params);
+            if (arr.errcode == '0') { wx.showToast({ title: `维护信息成功`, icon: 'success', duration: 2000 }); that.back() }
+            else { wx.showToast({ title: `${arr.errmsg}`, icon: 'error', duration: 2000 }) }
+        }
     },
     },
-
     /**
     /**
      * 生命周期函数--监听页面加载
      * 生命周期函数--监听页面加载
      */
      */
-    onLoad(options) {
-
+    onLoad: function (options) {
+        const that = this;
+        that.setData({ id: options.id || '' })
+        //验证规则函数
+        that.initValidate();
+        // 监听用户是否登录
+        that.watchLogin();
+    },
+    // 监听用户是否登录
+    watchLogin: async function () {
+        const that = this;
+        wx.getStorage({
+            key: 'user',
+            success: async res => {
+                let arr;
+                if (that.data.id) {
+                    arr = await app.$get(`/newCourt/api/match/${that.data.id}`);
+                    if (arr.errcode == '0') {
+                        that.setData({ form: arr.data });
+                    }
+                }
+            },
+            fail: async res => {
+                wx.redirectTo({ url: '/pages/index/index' })
+            }
+        })
     },
     },
-
     /**
     /**
      * 生命周期函数--监听页面初次渲染完成
      * 生命周期函数--监听页面初次渲染完成
      */
      */
-    onReady() {
+    onReady: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面显示
      * 生命周期函数--监听页面显示
      */
      */
-    onShow() {
+    onShow: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面隐藏
      * 生命周期函数--监听页面隐藏
      */
      */
-    onHide() {
+    onHide: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面卸载
      * 生命周期函数--监听页面卸载
      */
      */
-    onUnload() {
+    onUnload: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 页面相关事件处理函数--监听用户下拉动作
      * 页面相关事件处理函数--监听用户下拉动作
      */
      */
-    onPullDownRefresh() {
+    onPullDownRefresh: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 页面上拉触底事件的处理函数
      * 页面上拉触底事件的处理函数
      */
      */
-    onReachBottom() {
+    onReachBottom: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 用户点击右上角分享
      * 用户点击右上角分享
      */
      */
-    onShareAppMessage() {
+    onShareAppMessage: function () {
 
 
     }
     }
 })
 })

+ 5 - 1
pages/match/add.json

@@ -1,3 +1,7 @@
 {
 {
-    "usingComponents": {}
+    "component": true,
+    "usingComponents": {
+        "mobile-main": "/commpents/mobile-frame/index",
+        "vanupload": "/commpents/upload/index"
+    }
 }
 }

+ 38 - 0
pages/match/add.less

@@ -0,0 +1,38 @@
+.main {
+    height: var(--twoHeight);
+    background-color: var(--bgColor);
+
+    .one {
+        .content {
+            display: flex;
+            flex-direction: row;
+            border-bottom: 1px dashed var(--f1Color);
+            padding: 2vw 0;
+            margin: 0 2vw 0 2vw;
+
+            .label {
+                color: var(--labelColor);
+            }
+
+            .value {
+                flex-grow: 1;
+                color: var(--txtColor);
+
+                textarea {
+                    width: 72vw;
+                }
+            }
+        }
+
+        .btn {
+            text-align: center;
+            margin: 5vw 0 0 0;
+
+            button {
+                width: 40vw;
+                margin: 0 2vw;
+                padding: 1vw 0;
+            }
+        }
+    }
+}

+ 93 - 2
pages/match/add.wxml

@@ -1,2 +1,93 @@
-<!--pages/match/add.wxml-->
-<text>pages/match/add.wxml</text>
+<mobile-main frameStyle="{{frameStyle}}" bind:back="back">
+    <view slot="info" class="container main">
+        <view class="one">
+            <form catchsubmit="toSubmit">
+                <view class="content">
+                    <view class="label">logo:</view>
+                    <view class="value">
+                        <vanupload list="{{form.logo}}" count="{{1}}" previewSize="{{80}}" bind:imgUpload="imgUpl" bind:imgDel="imgDel"></vanupload>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">比赛类别:</view>
+                    <view class="value">
+                        <picker mode="selector" bindchange="typeChange" value="{{form.type}}" name="type" range-key='value' range="{{typeList}}">
+                            <view class="input">{{form.type||'请选择比赛类别'}}</view>
+                        </picker>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">比赛名称:</view>
+                    <view class="value">
+                        <textarea name="name" value="{{form.name}}" auto-height placeholder="请输入比赛名称" />
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">比赛开始时间:</view>
+                    <view class="value">
+                        <picker mode="date" name="start_time" value="{{form.start_time}}" bindchange="startChange">
+                            <view class="picker">{{form.start_time||'比赛开始时间'}}</view>
+                        </picker>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">比赛结束时间:</view>
+                    <view class="value">
+                        <picker mode="date" name="end_time" value="{{form.end_time}}" bindchange="endChange">
+                            <view class="picker">{{form.end_time||'比赛结束时间'}}</view>
+                        </picker>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">比赛地点:</view>
+                    <view class="value">
+                        <textarea name="address" value="{{form.address}}" auto-height placeholder="请输入比赛地点" />
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">报名截止日期:</view>
+                    <view class="value">
+                        <picker mode="date" name="sign_date" value="{{form.sign_date}}" bindchange="dateChange">
+                            <view class="picker">{{form.sign_date||'报名截止日期'}}</view>
+                        </picker>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">报名截止时间:</view>
+                    <view class="value">
+                        <picker mode="time" name="sign_time" value="{{form.sign_time}}" bindchange="timeChange">
+                            <view class="picker">{{form.sign_time||'报名截止时间'}}</view>
+                        </picker>
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">费用说明:</view>
+                    <view class="value">
+                        <textarea name="money_remark" value="{{form.money_remark}}" auto-height placeholder="请输入费用说明" />
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">付款方式:</view>
+                    <view class="value">
+                        <input type="text" name="money_mode" value="{{form.money_mode}}" placeholder="请输入付款方式" />
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">联系方式:</view>
+                    <view class="value">
+                        <input type="text" name="contact" value="{{form.contact}}" placeholder="请输入联系方式" />
+                    </view>
+                </view>
+                <view class="content">
+                    <view class="label">报名说明:</view>
+                    <view class="value">
+                        <textarea name="explain" value="{{form.explain}}" auto-height placeholder="请输入报名说明" />
+                    </view>
+                </view>
+                <view class="btn">
+                    <button type="primary" size="mini" formType="submit">提交保存</button>
+                </view>
+            </form>
+        </view>
+    </view>
+</mobile-main>

+ 30 - 1
pages/match/add.wxss

@@ -1 +1,30 @@
-/* pages/match/add.wxss */
+.main {
+  height: var(--twoHeight);
+  background-color: var(--bgColor);
+}
+.main .one .content {
+  display: flex;
+  flex-direction: row;
+  border-bottom: 1px dashed var(--f1Color);
+  padding: 2vw 0;
+  margin: 0 2vw 0 2vw;
+}
+.main .one .content .label {
+  color: var(--labelColor);
+}
+.main .one .content .value {
+  flex-grow: 1;
+  color: var(--txtColor);
+}
+.main .one .content .value textarea {
+  width: 72vw;
+}
+.main .one .btn {
+  text-align: center;
+  margin: 5vw 0 0 0;
+}
+.main .one .btn button {
+  width: 40vw;
+  margin: 0 2vw;
+  padding: 1vw 0;
+}

+ 0 - 0
pages/match/group.less


+ 0 - 0
pages/match/info.less


+ 90 - 16
pages/match/list.js

@@ -1,66 +1,140 @@
-// pages/match/list.js
+const app = getApp()
 Page({
 Page({
-
-    /**
-     * 页面的初始数据
-     */
     data: {
     data: {
+        frameStyle: { useTop: true, name: '赛事管理', leftArrow: true, useBar: false },
+        list: [],
+        total: 0,
+        page: 0,
+        skip: 0,
+        limit: 5,
 
 
     },
     },
-
+    // 返回
+    back: function () {
+        wx.navigateBack({ delta: 1 })
+    },
+    toCommon: function (e) {
+        const that = this;
+        that.setData({ skip: 0, page: 0, list: [] })
+        const { route } = e.currentTarget.dataset;
+        if (route) wx.navigateTo({ url: `/pages/${route}` });
+    },
+    // 修改
+    toEdit: function (e) {
+        const that = this;
+        that.setData({ skip: 0, page: 0, list: [] })
+        let { item } = e.currentTarget.dataset;
+        wx.navigateTo({ url: `/pages/match/add?id=${item._id}` })
+    },
+    // 删除
+    toDel: async function (e) {
+        const that = this;
+        const { item } = e.currentTarget.dataset;
+        wx.showModal({
+            title: '提示',
+            content: '是否确认删除该条数据?',
+            async success(res) {
+                if (res.confirm) {
+                    const arr = await app.$delete(`/newCourt/api/match/${item._id}`);
+                    if (arr.errcode == '0') {
+                        wx.showToast({ title: `删除信息成功`, icon: 'success', duration: 2000 })
+                        that.setData({ skip: 0, page: 0, list: [] })
+                        that.watchLogin()
+                    } else {
+                        wx.showToast({ title: `${arr.errmsg}`, icon: 'error', duration: 2000 })
+                    }
+                }
+            }
+        })
+    },
+    toPage: function () {
+        const that = this;
+        let list = that.data.list;
+        let limit = that.data.limit;
+        if (that.data.total > list.length) {
+            wx.showLoading({ title: '加载中', mask: true })
+            let page = that.data.page + 1;
+            that.setData({ page: page })
+            let skip = page * limit;
+            that.setData({ skip: skip })
+            that.watchLogin();
+            wx.hideLoading()
+        } else { wx.showToast({ title: '没有更多数据了', icon: 'none', duration: 2000 }) }
+    },
     /**
     /**
      * 生命周期函数--监听页面加载
      * 生命周期函数--监听页面加载
      */
      */
-    onLoad(options) {
+    onLoad: function (options) {
 
 
     },
     },
-
+    // 监听用户是否登录
+    watchLogin: async function () {
+        const that = this;
+        wx.getStorage({
+            key: 'user',
+            success: async res => {
+                let info = { skip: that.data.skip, limit: that.data.limit };
+                let arr;
+                arr = await app.$get(`/newCourt/api/match`, { ...info });
+                if (arr.errcode == '0') {
+                    that.setData({ list: [...that.data.list, ...arr.data] })
+                    that.setData({ total: arr.total })
+                }
+                else { wx.showToast({ title: `${arr.errmsg}`, icon: 'error', duration: 2000 }) }
+            },
+            fail: async res => {
+                wx.redirectTo({ url: '/pages/index/index' })
+            }
+        })
+    },
     /**
     /**
      * 生命周期函数--监听页面初次渲染完成
      * 生命周期函数--监听页面初次渲染完成
      */
      */
-    onReady() {
+    onReady: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面显示
      * 生命周期函数--监听页面显示
      */
      */
-    onShow() {
-
+    onShow: function () {
+        const that = this;
+        // 监听用户是否登录
+        that.watchLogin();
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面隐藏
      * 生命周期函数--监听页面隐藏
      */
      */
-    onHide() {
+    onHide: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 生命周期函数--监听页面卸载
      * 生命周期函数--监听页面卸载
      */
      */
-    onUnload() {
+    onUnload: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 页面相关事件处理函数--监听用户下拉动作
      * 页面相关事件处理函数--监听用户下拉动作
      */
      */
-    onPullDownRefresh() {
+    onPullDownRefresh: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 页面上拉触底事件的处理函数
      * 页面上拉触底事件的处理函数
      */
      */
-    onReachBottom() {
+    onReachBottom: function () {
 
 
     },
     },
 
 
     /**
     /**
      * 用户点击右上角分享
      * 用户点击右上角分享
      */
      */
-    onShareAppMessage() {
+    onShareAppMessage: function () {
 
 
     }
     }
 })
 })

+ 4 - 1
pages/match/list.json

@@ -1,3 +1,6 @@
 {
 {
-    "usingComponents": {}
+    "component": true,
+    "usingComponents": {
+        "mobile-main": "/commpents/mobile-frame/index"
+    }
 }
 }

+ 103 - 0
pages/match/list.less

@@ -0,0 +1,103 @@
+.main {
+    height: var(--twoHeight);
+    background-color: var(--bgColor);
+
+    .one {
+        display: flex;
+        flex-direction: row;
+        width: 96vw;
+        padding: 2vw;
+
+        .one_1 {
+            flex-grow: 1;
+
+            input {
+                padding: 1vw 2vw 2vw 2vw;
+                border-radius: 2px;
+                font-size: var(--txtSize);
+                background-color: var(--f1Color);
+            }
+        }
+
+        .one_2 {
+            width: 15vw;
+
+            button {
+                width: 100%;
+                font-size: var(--btnSize);
+                padding: 2vw;
+            }
+        }
+    }
+
+    .two {
+        flex-grow: 1;
+        position: relative;
+        width: 100vw;
+
+        .list {
+            background-color: var(--f9Color);
+            padding: 2vw;
+            margin: 0 2vw 2vw 2vw;
+
+            .name {
+                font-size: var(--titleSize);
+                font-weight: bold;
+                margin: 0 0 1vw 0;
+            }
+
+            .other {
+                margin: 0 0 1vw 0;
+
+                .other_1 {
+                    font-size: var(--txtSize);
+                    margin: 0 0 1vw 0;
+
+                    text {
+                        color: var(--labelColor);
+                    }
+
+                    text:last-child {
+                        color: var(--txtColor);
+                    }
+                }
+            }
+
+            .btn {
+                display: flex;
+                flex-direction: row;
+                justify-content: center;
+                text-align: center;
+                flex-wrap: wrap;
+
+                .btn_1 {
+                    width: 20vw;
+                    margin: 0 1vw 1vw 1vw;
+
+                    button {
+                        width: 100%;
+                        font-size: var(--btnSize);
+                        padding: 2vw;
+                    }
+                }
+            }
+        }
+
+        // .list:last-child {
+        //     margin: 0 2vw 0 2vw;
+        // }
+    }
+}
+
+.scroll-view {
+    position: absolute;
+    top: 0;
+    left: 0;
+    right: 0;
+    bottom: 0;
+
+    .list-scroll-view {
+        display: flex;
+        flex-direction: column;
+    }
+}

+ 39 - 2
pages/match/list.wxml

@@ -1,2 +1,39 @@
-<!--pages/match/list.wxml-->
-<text>pages/match/list.wxml</text>
+<mobile-main frameStyle="{{frameStyle}}" bind:back="back">
+    <view slot="info" class="container main">
+        <view class="one">
+            <view class="one_1">
+                <input type="text" placeholder="请输入关键词" />
+            </view>
+            <view class="one_2">
+                <button type="primary" bindtap="toCommon" data-route="match/add">添加</button>
+            </view>
+        </view>
+        <view class="two">
+            <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="toPage">
+                <view class="list-scroll-view">
+                    <view class="list" wx:for="{{list}}" wx:key="item">
+                        <view class="name">{{item.name}}</view>
+                        <view class="other">
+                            <view class="other_1">
+                                <text>场地裁判:</text>
+                                <text>{{item.referee_name||'暂无'}}</text>
+                            </view>
+                            <view class="other_1">
+                                <text>备注:</text>
+                                <text>{{item.remark||'暂无'}}</text>
+                            </view>
+                            <view class="other_1">
+                                <text>是否启用:</text>
+                                <text>{{item.is_use=='0'?'启用':item.is_use=='1'?'禁用':'暂无'}}</text>
+                            </view>
+                        </view>
+                        <view class="btn">
+                            <view class="btn_1"><button type="primary" bindtap="toEdit" data-item="{{item}}">信息维护</button></view>
+                            <view class="btn_1"><button type="warn" bindtap="toDel" data-item="{{item}}">信息删除</button></view>
+                        </view>
+                    </view>
+                </view>
+            </scroll-view>
+        </view>
+    </view>
+</mobile-main>

+ 82 - 1
pages/match/list.wxss

@@ -1 +1,82 @@
-/* pages/match/list.wxss */
+.main {
+  height: var(--twoHeight);
+  background-color: var(--bgColor);
+}
+.main .one {
+  display: flex;
+  flex-direction: row;
+  width: 96vw;
+  padding: 2vw;
+}
+.main .one .one_1 {
+  flex-grow: 1;
+}
+.main .one .one_1 input {
+  padding: 1vw 2vw 2vw 2vw;
+  border-radius: 2px;
+  font-size: var(--txtSize);
+  background-color: var(--f1Color);
+}
+.main .one .one_2 {
+  width: 15vw;
+}
+.main .one .one_2 button {
+  width: 100%;
+  font-size: var(--btnSize);
+  padding: 2vw;
+}
+.main .two {
+  flex-grow: 1;
+  position: relative;
+  width: 100vw;
+}
+.main .two .list {
+  background-color: var(--f9Color);
+  padding: 2vw;
+  margin: 0 2vw 2vw 2vw;
+}
+.main .two .list .name {
+  font-size: var(--titleSize);
+  font-weight: bold;
+  margin: 0 0 1vw 0;
+}
+.main .two .list .other {
+  margin: 0 0 1vw 0;
+}
+.main .two .list .other .other_1 {
+  font-size: var(--txtSize);
+  margin: 0 0 1vw 0;
+}
+.main .two .list .other .other_1 text {
+  color: var(--labelColor);
+}
+.main .two .list .other .other_1 text:last-child {
+  color: var(--txtColor);
+}
+.main .two .list .btn {
+  display: flex;
+  flex-direction: row;
+  justify-content: center;
+  text-align: center;
+  flex-wrap: wrap;
+}
+.main .two .list .btn .btn_1 {
+  width: 20vw;
+  margin: 0 1vw 1vw 1vw;
+}
+.main .two .list .btn .btn_1 button {
+  width: 100%;
+  font-size: var(--btnSize);
+  padding: 2vw;
+}
+.scroll-view {
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+}
+.scroll-view .list-scroll-view {
+  display: flex;
+  flex-direction: column;
+}

+ 1 - 4
pages/user/info.js

@@ -6,9 +6,7 @@ Page({
         form: {}
         form: {}
     },
     },
     back: function () {
     back: function () {
-        wx.navigateBack({
-            delta: 1,
-        })
+        wx.navigateBack({ delta: 1 })
     },
     },
 
 
     /**
     /**
@@ -54,7 +52,6 @@ Page({
      * 生命周期函数--监听页面隐藏
      * 生命周期函数--监听页面隐藏
      */
      */
     onHide: function () {
     onHide: function () {
-
     },
     },
 
 
     /**
     /**

+ 6 - 0
utils/dict.js

@@ -116,4 +116,10 @@ export const type = [
 export const match_project = [
 export const match_project = [
     { label: '单打', value: '单打' },
     { label: '单打', value: '单打' },
     { label: '双打', value: '双打' },
     { label: '双打', value: '双打' },
+]
+// 赛事类别
+export const matchType = [
+    { label: '团体赛', value: '团体赛' },
+    { label: '单项赛', value: '单项赛' },
+
 ]
 ]