From 4113993f62d49f54c153fad601e9260c52cef7bc Mon Sep 17 00:00:00 2001 From: xuesinan <1404152492@qq.com> Date: Mon, 20 Dec 2021 17:41:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=A2=E5=A4=B4=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 350 +---------------------------------------------------- 1 file changed, 3 insertions(+), 347 deletions(-) diff --git a/index.html b/index.html index 11dea05..a2aeb57 100644 --- a/index.html +++ b/index.html @@ -42,68 +42,8 @@ -
+
- - - -
@@ -115,69 +55,12 @@
- +
-
@@ -188,19 +71,6 @@ - -
@@ -288,29 +158,7 @@ .then(function(res) { const { success, code, data, msg } = res; if (success && code === 200) { - // if (!data) { - // that.showOrHide(1, -1, 0, 0); - // } else { - // that.dom.querySelector('.train-name').value = data.name; - // that.dom.querySelector('.train-desc').value = data.description; - // let start = that.format(data.startTime); - // that.dom.querySelector('.train-start-time').value = that.format(data.startTime); - // that.dom.querySelector('.train-end-time').value = that.format(data.endTime); - // that.fileId = data.fileId; - // that.filePath = data.path; - // that.dom.querySelector('.file-name').innerHTML = data.name; - // console.log(data.startTime, start) - - // if (data && data.checkStatus === 0) { - // that.showOrHide(1, 0, 1, 0); - // } else if (data && data.checkStatus === 2) { - // that.showOrHide(1, 2, 1, 1); - // that.dom.querySelector('.reason').innerHTML = data.rejectCause; - // } else { - // that.showOrHide(2, 0, 0, 0); - // } - // } - // that.tempData = data; + } else { console.log('msg: ', msg); } @@ -517,7 +365,6 @@ }, submit() { - // this.tempData let that = this; console.log("that.tempData",that.tempData) let questionList = [], arr = that.tempData; @@ -564,197 +411,6 @@ } }); }, - - /** - * 下载红头文件模板 - */ - // downLoad() { - // var that = this; - // fetch(`https://test.tall.wiki/gateway/sports/file/down`, { - // headers: new Headers({ - // 'Authorization': 'Bearer ' + that.token, - // 'Content-Type': 'application/json; charset=utf-8' - // }), - // method: 'POST', - // body: JSON.stringify({ - // param: { - // projectId: that.projectId, - // type: 0 - // } - // }) - // }) - // .then(function(response) { - // return response.json(); - // }) - // .then(function(res) { - // const { success, code, data, msg } = res; - // if (success && code === 200) { - - // } else { - // console.log('msg: ', msg); - // } - // }); - // }, - - // submit() { - // var that = this; - // let trainName = that.dom.querySelector('.train-name').value; - // let trainDesc = that.dom.querySelector('.train-desc').value; - // let trainStartTime = that.dom.querySelector('.train-start-time').value; - // let trainEndTime = that.dom.querySelector('.train-end-time').value; - // let startDate = new Date(trainStartTime); - // let endDate = new Date(trainEndTime); - // let startTime = startDate.getTime(); - // let endTime = endDate.getTime(); - - // if (!that.fileId) { - // window.alert("请上传红头文件"); - // return false; - // } - - // if (!trainName) { - // window.alert("请填写培训名称"); - // return false; - // } - - // if (!trainStartTime) { - // window.alert("请选择开始时间"); - // return false; - // } - - // if (!trainEndTime) { - // window.alert("请选择结束时间"); - // return false; - // } - - // if (startTime > endTime) { - // window.alert("结束时间不能小于开始时间"); - // return false; - // } - - // fetch(`https://test.tall.wiki/gateway/sports/training/save`, { - // headers: new Headers({ - // 'Authorization': 'Bearer ' + that.token, - // 'Content-Type': 'application/json; charset=utf-8' - // }), - // method: 'POST', - // body: JSON.stringify({ - // param: { - // projectId: that.projectId, - // name: trainName, - // description: trainDesc, - // startTime: startTime, - // endTime: endTime, - // fileId: that.fileId - // } - // }) - // }) - // .then(function(response) { - // return response.json(); - // }) - // .then(function(res) { - // const { success, code, data, msg } = res; - // if (success && code === 200) { - // that.showOrHide(1, 0, 1, 0); - // } else { - // console.log('msg: ', msg); - // } - // }); - // }, - - /** - * 隐藏显示 - * @param int plan 当前培训计划是否加载完成 1 完成 0 未完成 2 已通过 - * @param int status 当前培训计划状态 -1 待提交 0 待审核 1 通过 2 拒绝 - * @param int review 当前是否显示预览 1 是 0 否 - * @param int reject 当前是否显示驳回原因 1 是 0 否 - */ - // showOrHide(plan, status, review, reject) { - // let that = this; - // let trainPlanNull = that.dom.querySelector('.train-plan-null'); // 内容未加载完成 - 制定培训计划 - // let trainPlan = that.dom.querySelector('.train-plan'); // 制定培训计划 - // let trainPlanBtn = that.dom.querySelector('.train-plan-btn'); // 提交按钮 - // let trainPlanStatus = that.dom.querySelector('.train-plan-status'); // 待审核状态 - // let trainPlanStatusRefuse = that.dom.querySelector('.train-plan-status-refuse'); // 已驳回 - // let fileCheck = that.dom.querySelector('.file-check'); // 文件预览 - // let refuseReason = that.dom.querySelector('.refuse-reason'); // 驳回原因 - // let fileDownLoad = that.dom.querySelector('.file-download'); // 文件下载 - // let fileUpload = that.dom.querySelector('.file-upload'); // 文件上传 - - - // if (plan === 1) { - // trainPlan.style.display = 'block'; - // trainPlanNull.style.display = 'none'; - // } else if (plan === 0) { - // trainPlan.style.display = 'none'; - // trainPlanNull.style.display = 'block'; - // } else if (plan === 2) { - // trainPlan.style.display = 'none'; - // trainPlanNull.style.display = 'none'; - // } - - // if (status === -1) { - // trainPlanBtn.style.display = 'block'; - // trainPlanStatus.style.display = 'none'; - // trainPlanStatusRefuse.style.display = 'none'; - // } else if (status === 0) { - // trainPlanBtn.style.display = 'none'; - // trainPlanStatus.style.display = 'block'; - // trainPlanStatusRefuse.style.display = 'none'; - // } else if (status === 1) { - // trainPlanBtn.style.display = 'none'; - // trainPlanStatus.style.display = 'none'; - // trainPlanStatusRefuse.style.display = 'none'; - // fileDownLoad.style.display = 'none'; - // fileUpload.style.display = 'none'; - // } else if (status === 2) { - // trainPlanBtn.style.display = 'none'; - // trainPlanStatus.style.display = 'none'; - // trainPlanStatusRefuse.style.display = 'block'; - // } - - // if (that.fileId && review === 1) { - // fileCheck.style.display = 'flex'; - // } else { - // fileCheck.style.display = 'none'; - // } - - // if (reject === 1) { - // refuseReason.style.display = 'flex'; - // } else { - // refuseReason.style.display = 'none'; - // } - // }, - - // 取消 - // hide(){ - // var statusChoose = this.dom.querySelector('.statusChoose'); - // statusChoose.style.display='none'; - // }, - - // 时间戳转时间格式 - // format(shijianchuo){ - // //shijianchuo是整数,否则要parseInt转换 - // shijianchuo = parseInt(shijianchuo); - // var time = new Date(shijianchuo); - // var y = time.getFullYear(); - // var m = time.getMonth()+1; - // var d = time.getDate(); - // // var h = time.getHours(); - // // var mm = time.getMinutes(); - // // var s = time.getSeconds(); - // return this.add0(y) + '-' + this.add0(m) + '-' + this.add0(d); - // }, - - // add0(m){return m < 10 ? '0' + m : m }, - - // 预览红头文件 - // preview() { - // const pId = this.dom.parentNode.getAttribute('data-pid'); - // const uId = this.dom.parentNode.getAttribute('data-uid'); - // const rId = this.dom.parentNode.getAttribute('data-rid'); - // location.href=`https://test.tall.wiki/ts/file?pid=${pId}&uid=${uId}&rid=${rId}` - // } } p1449927427387301888.init()