|
@@ -12,8 +12,8 @@ Page({
|
|
|
list: [],
|
|
|
dialog: { title: '详细信息', show: false, type: '1' },
|
|
|
info: {},
|
|
|
- // projectList: [],
|
|
|
- // form: {}
|
|
|
+ projectList: [],
|
|
|
+ form: {}
|
|
|
},
|
|
|
initValidate() {
|
|
|
const rules = { grouping_id: { required: true }, project_id: { required: true } }
|
|
@@ -60,22 +60,64 @@ Page({
|
|
|
if (user.errcode = '0') { arr.data.user_name = user.data.name };
|
|
|
// 赛事信息
|
|
|
const match = await app.$get(`/newCourt/api/match/${arr.data.match_id}`);
|
|
|
- if (match.errcode = '0') { arr.data.match_name = match.data.name };
|
|
|
+ if (match.errcode = '0') { arr.data.match_name = match.data.name; arr.data.grouping = match.data.grouping; };
|
|
|
// 赛事组别
|
|
|
let group = match.data.grouping.find((i) => i._id == arr.data.grouping_id);
|
|
|
if (group) { arr.data.grouping_name = group.name; }
|
|
|
// 赛事项目
|
|
|
const project = await app.$get(`/newCourt/api/matchProject/${arr.data.project_id}`)
|
|
|
if (project.errcode = '0') { arr.data.project_name = project.data.name };
|
|
|
- that.setData({ info: arr.data })
|
|
|
+ that.setData({ form: arr.data })
|
|
|
that.setData({ dialog: { title: '信息维护', show: true, type: '2' } })
|
|
|
}
|
|
|
},
|
|
|
+ // 赛事分组
|
|
|
+ groupingChange: async function (e) {
|
|
|
+ const that = this;
|
|
|
+ let data = that.data.form.grouping[e.detail.value];
|
|
|
+ that.setData({ 'form.grouping_id': data._id });
|
|
|
+ that.setData({ 'form.grouping_name': data.name });
|
|
|
+ let project = [];
|
|
|
+ for (const val of data.project) {
|
|
|
+ const arr = await app.$get(`/newCourt/api/matchProject/${val}`);
|
|
|
+ if (arr.errcode == '0') { project.push(arr.data) }
|
|
|
+ }
|
|
|
+ that.setData({ projectList: project });
|
|
|
+ },
|
|
|
+ // 选择组内项目
|
|
|
+ projectChange: function (e) {
|
|
|
+ const that = this;
|
|
|
+ let data = that.data.projectList[e.detail.value];
|
|
|
+ that.setData({ 'form.project_id': data._id });
|
|
|
+ that.setData({ 'form.project_name': data.name });
|
|
|
+ },
|
|
|
+ onSubmit: async function (e) {
|
|
|
+ const that = this;
|
|
|
+ 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 {
|
|
|
+ const arr = await app.$post(`/newCourt/api/enroll/${params.id}`, params);
|
|
|
+ if (arr.errcode == '0') {
|
|
|
+ wx.showToast({ title: `维护信息成功`, icon: 'success', duration: 2000 });
|
|
|
+ that.watchLogin();
|
|
|
+ that.toClose();
|
|
|
+ } else {
|
|
|
+ wx.showToast({ title: `${arr.errMsg}`, icon: 'fail', duration: 2000 });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
// 退款
|
|
|
- toRefund: function (e) {
|
|
|
+ toRefund: async function (e) {
|
|
|
const that = this;
|
|
|
const { item } = e.currentTarget.dataset;
|
|
|
- console.log(item);
|
|
|
+ const res = await app.$post('/newCourt/api/payOrder/toRefund', { id: item._id })
|
|
|
+ if (app.$checkRes(res)) {
|
|
|
+ wx.showToast({ title: '退款成功' })
|
|
|
+ this.search();
|
|
|
+ }
|
|
|
},
|
|
|
// 关闭弹框
|
|
|
toClose: function () {
|