123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- import WxValidate from '../../utils/wxValidate'
- const app = getApp()
- Page({
-
- data: {
- frameStyle: { useTop: true, name: '比赛信息', leftArrow: true, useBar: false },
-
- infoHeight: '',
-
- id: '',
-
- info: {},
-
- userdata: {},
-
- type: '',
-
- blueTeam: {},
- redTeam: {},
-
- match_file: [],
-
- show: false,
- form: {},
- },
-
- initValidate() {
- const rules = { blue_branch: { required: true }, red_branch: { required: true, }, blue_integral: { required: true }, red_integral: { required: true, } }
-
- const messages = { blue_branch: { required: '请输入蓝方比分', }, red_branch: { required: '请输入红方比分', }, blue_integral: { required: '请输入蓝方积分', }, red_integral: { required: '请输入红方积分', } };
- this.WxValidate = new WxValidate(rules, messages)
- },
- back: function () {
- wx.navigateBack({ delta: 0 })
- },
-
- imgUpload: async function (e) {
- const that = this;
- let type = that.data.type;
- let redTeam = that.data.redTeam;
- let blueTeam = that.data.blueTeam;
- let user = that.data.userdata;
- let info = that.data.info;
- if (type == '0') {
- wx.showToast({ title: '不可上传', duration: 2000, icon: 'error', })
- } else if (type == '1') {
- if (redTeam || blueTeam) {
- if (redTeam && redTeam.create_id == user._id || blueTeam && blueTeam.create_id == user._id) {
- let data = that.data.match_file;
- let id = that.data.id;
- data.push(e.detail);
- const arr = await app.$post(`/courtAdmin/api/schedule/${id}`, { match_file: data });
- if (arr.errcode === 0) {
- wx.showToast({ title: `上传图片成功`, icon: 'success', duration: 2000 })
- that.watchLogin();
- } else {
- wx.showToast({ title: arr.errmsg, icon: 'success', duration: 2000 })
- }
- } else {
- wx.showToast({ title: '不可上传', duration: 2000, icon: 'error', })
- }
- }
- } else if (type == '2') {
- let redM = info.red_members.find((i) => i.id == user._id);
- let blueM = info.blue_members.find((i) => i.id == user._id);
- if (redM || blueM) {
- let data = that.data.match_file;
- let id = that.data.id;
- data.push(e.detail);
- const arr = await app.$post(`/courtAdmin/api/schedule/${id}`, { match_file: data });
- if (arr.errcode === 0) {
- wx.showToast({ title: `上传图片成功`, icon: 'success', duration: 2000 })
- that.watchLogin();
- } else {
- wx.showToast({ title: arr.errmsg, icon: 'success', duration: 2000 })
- }
- } else {
- wx.showToast({ title: '不可上传', duration: 2000, icon: 'error', })
- }
- }
- },
-
- imgDel: async function (e) {
- const that = this;
- let type = that.data.type;
- let redTeam = that.data.redTeam;
- let blueTeam = that.data.blueTeam;
- let user = that.data.userdata;
- let info = that.data.info;
- if (type == '0') {
- wx.showToast({ title: '不可删除', duration: 2000, icon: 'error', })
- } else if (type == '1') {
- if (redTeam || blueTeam) {
- if (redTeam && redTeam.create_id == user._id || blueTeam && blueTeam.create_id == user._id) {
- let id = that.data.id;
- let data = that.data.match_file;
- let arr = data.filter((i, index) => index != e.detail.index)
- const res = await app.$post(`/courtAdmin/api/schedule/${id}`, { match_file: arr });
- if (res.errcode === 0) {
- wx.showToast({ title: `删除图片成功`, icon: 'success', duration: 2000 })
- that.watchLogin();
- } else {
- wx.showToast({ title: arr.errmsg, icon: 'success', duration: 2000 })
- }
- } else {
- wx.showToast({ title: '不可上传', duration: 2000, icon: 'error', })
- }
- }
- } else if (type == '2') {
- wx.showToast({ title: '不可删除', duration: 2000, icon: 'error', })
- }
- },
-
- clickme: async function () {
- const that = this;
- let type = that.data.type;
- let redTeam = that.data.redTeam;
- let blueTeam = that.data.blueTeam;
- let user = that.data.userdata;
- if (type == '0' || type == '2') {
- wx.showToast({ title: `不可上传`, icon: 'error', duration: 2000 })
- } else {
- if (redTeam || blueTeam) {
- if (redTeam && redTeam.create_id == user._id || blueTeam && blueTeam.create_id == user._id) {
- that.setData({ form: that.data.info })
- that.setData({ show: true })
- } else {
- wx.showToast({ title: `不可上传`, icon: 'error', duration: 2000 })
- }
- }
- }
- },
-
- formSubmit: async function (e) {
- const that = this;
- let id = that.data.id;
- let 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 res = await app.$post(`/courtAdmin/api/schedule/${id}`, params);
- if (res.errcode == 0) {
- wx.showToast({ title: '保存成功', duration: 2000, icon: 'success' })
- that.formReset();
- that.watchLogin();
- } else {
- wx.showToast({ title: res.errmsg, icon: 'error', duration: 2000 })
- }
- }
- },
-
- formReset: function () {
- const that = this;
- that.setData({ show: false })
- },
-
- onLoad: function (options) {
- const that = this;
- that.setData({ id: options.id })
-
- this.initValidate();
-
- this.searchHeight();
-
- this.watchLogin();
- },
-
- watchLogin: async function () {
- const that = this;
- let id = that.data.id;
- wx.getStorage({
- key: 'token',
- success: async res => {
-
- that.setData({ type: res.data.type, userdata: res.data })
- const arr = await app.$get(`/courtAdmin/api/schedule/${id}`);
- if (arr.errcode === 0) {
-
- that.setData({ info: arr.data })
-
- that.setData({ match_file: arr.data.match_file })
-
- const p1 = await app.$get(`/courtAdmin/api/team/${arr.data.red_id}`);
- const p2 = await app.$get(`/courtAdmin/api/team/${arr.data.blue_id}`);
- if (p1.errcode === 0 && p2.errcode === 0) {
- that.setData({ redTeam: p1.data })
- that.setData({ blueTeam: p2.data })
- }
- }
- },
- fail: res => {
- return wx.redirectTo({ url: '/pages/login/index', })
- }
- })
- },
-
- searchHeight: function () {
- let frameStyle = this.data.frameStyle;
- let client = app.globalData.client;
-
- let infoHeight = client.windowHeight - (client.statusBarHeight + client.getMenu.height + (client.getMenu.top - client.statusBarHeight) * 2);
-
- if (frameStyle.useBar) infoHeight = infoHeight - 50;
- if (infoHeight) this.setData({ infoHeight: infoHeight })
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|