import common from '../../utils/util'; import main from '../../utils/main'; import constant1 from '../../utils/constant'; const app = getApp(); var arrTag = []; var tempCursor = undefined, btnName = ""; var arrSoundMark = []; var isUnload = true; var isEdit = true; var isSave = true; var interval; var timeoutUploadImage = 0; var intervalRecorder = 0; //录音计时器 var recorderManager; var tempRecorderFile = ""; var innerAudioContext; var isViolate = false; //是否是违禁词 var isFirstAdd = true;//是第一个填加 var isAddFolder = false;//用于新增卡单时用 var isCancel=false;//是否放弃题卡内容 Page({ data: { ImagePath: app.globalData.uploadImageUrl, HiddenFieldEdit: true, FieldContent: "", SoundSign: "[读]", LineSign: "[线]", HighlighterSign: "[光]", IsPracticeTime: false, IsRecorder: false, IsIPhoneX: app.globalData.IsIPhoneX, IsAndroid: app.globalData.IsAndroid, IsTagShow:false, PageTitle:"新建题卡", InputHeight:315, IsShowMenu:false, IsHelp:false, HelpArr:["help_board_tips_jiaziliao","help_board_tips_diankaigengduo","help_board_tips_lianxvxinjian","help_board_tips_meihua","help_board_tips_geshi"], IsFontsize:false, IsCollect:0, BtnSaveSelectCss:"", }, onReady: function () { recorderManager = wx.getRecorderManager(); recorderManager.onStart(() => { console.log('recorder start') }); recorderManager.onStop((res) => { console.log('recorder stop', res); tempRecorderFile = res.tempFilePath; }); recorderManager.onError((err) => {}); }, //获取导航栏高度 getBarInfo(e) { var h=e.detail.topBarHeight; h=h*2; var h2=0; var h3=0; if (app.globalData.IsIPad){ h2=-68; h3=-100; } this.setData({ topBarHeight: h, topBarHeightIPad: h2, topBarHeightIPad2: h3, }) }, onLoad: function (options) { var that = this; var fieldNumber = 0; if (options.fieldid) fieldNumber = options.fieldid; var cardtype=options.CardType; if (!cardtype) cardtype=0; else cardtype=Number(cardtype); var folderid=options.FolderID; var foldername=""; if (!folderid) folderid=0; else{ folderid=Number(folderid); foldername=options.FolderName; } that.setData({ Containnerheight: main.getWindowHeight(), UpdateType: options.type, MiaoguoCardID: options.id, FieldNumber: fieldNumber, IsShow: app.globalData.userInfo.IsShow, CardType:cardtype, PracticeCardType: constant1.arrStudyPattern[cardtype]+"题卡", FolderID:folderid, FolderName:foldername, LimitTime:common.formatTime(new Date()), PracticeTimeStr:common.formatDateCHS(common.formatTime(new Date())), FontSize:48, FontSizeName:"标准", OpenType:options.opentype, }); var list = app.globalData.CardList; for (var i = 0; i < list.length; i++) { if (that.data.MiaoguoCardID == list[i].MiaoguoCardID) { wx.setStorageSync("TempCardInfo", list[i]); break; } } app.globalData.TempFieldNumber = 0; app.globalData.TempMiaoguoCardID = that.data.MiaoguoCardID; isViolate = false; isFirstAdd = true; if (app.globalData.IsIPhoneX){ that.setData({ InputHeight: 480, }); } if (options.type=="add3"){ that.gotoAddInfomationDetail(options); } if (options.type.indexOf("add")>=0) common.getStorageValue(that, "IsShowAddHelp", 0, function () {}); }, onShow: function () { var that = this; if (that.data.UpdateType == "add" || that.data.UpdateType == "add3") { that.initAddCard(); } else { var card = {}, content = ""; var list = app.globalData.CardList; for (var i = 0; i < list.length; i++) { if (that.data.MiaoguoCardID == list[i].MiaoguoCardID) { card = main.changeStringToView(list[i].Content); card.MiaoguoCardID = list[i].MiaoguoCardID; if (list[i].CardType==0 || list[i].CardType==1 || list[i].CardType==-1) card.CardType=list[i].CardType; else if (that.data.CardType) card.CardType=that.data.CardType; else card.CardType=0; card.IsCollect=list[i].IsCollect; if (that.data.IsCollect) card.IsCollect=that.data.IsCollect; else if (!card.IsCollect) card.IsCollect=0; card.FontSize=list[i].FontSize; if (that.data.FontSize) card.FontSize=that.data.FontSize; else if (!card.FontSize) card.FontSize=48; card.FolderID=list[i].FolderID; if (that.data.FolderID) { card.FolderID=that.data.FolderID; card.FolderName=that.data.FolderName; } else if (!card.FolderID){ card.FolderID=0; } if (list[i].LimitTime) card.LimitTime=list[i].LimitTime; else if (that.data.LimitTime) card.LimitTime=that.data.LimitTime; if (that.data.FieldNumber && that.data.FieldNumber > 0) content = main.encryptUrl(list[i].Content[that.data.FieldNumber].Content); break; } } var arrTagTemp=[]; if (card.Tags && card.Tags.length>0){ for(var j=0;j0){ app.globalData.FolderList=[]; } } wx.removeStorageSync("TempCardInfo"); }); } else { wx.showToast({ title: '图片上传失败1', image: "../images/universalpic_exclamation_white_120x120.png", mask: true, }); } }); } } else { wx.showToast({ title: '点击太频繁', image: "../images/universalpic_exclamation_white_120x120.png", mask: true, }); } } function changePattern(obj){ if (obj.data.CardType==1){ var cardType=wx.getStorageSync('CardType'); if (cardType==0 && app.globalData.TaskToday.CardNumberUrgent==1){ wx.navigateTo({ url: "../other/menu?Type=0", }); } } } }, formatField: function (field) { var result = {}; for (var i = 1; i <= 3; i++) { result["Field" + i] = ""; if (field.length>0 && field[i]) { for (var key in field[i]) { var item = field[i][key]; var str = ""; if (item.Type == "image") { str = "[图 w='" + item.Width + "' h='" + item.Height + "']" + item.Content + "[/图]"; } else if (item.Type == "line") { for (var j = 0; j < item.Content.length; j++) { if (item.Content[j].key == "normal") str += item.Content[j].value; if (item.Content[j].key == "line") { str += "[线]" + item.Content[j].value + "[/线]"; } if (item.Content[j].key == "highlighter") { str += "[光]" + item.Content[j].value + "[/光]"; } } } else if (item.Type == "sound") { if (item.SoundMark) str = "[读 src='" + item.SoundMark + "']" + item.Content + "[/读]"; else str = "[读]" + item.Content + "[/读]"; } else if (item.Type == "recorder") { if (item.SoundMark) str = "[音 url='" + item.SoundMark + "'][/音]"; } else if (item.Type == "normal") { str = item.Content; } else if (item.Type == "return") { str = "\n"; } result["Field" + i] += str; } } result["Field" + i] = main.changeViewToString(result["Field" + i]); } return result; }, checkImageCount: function (arr) { var count = 0; for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr[i].length; j++) { if (arr[i][j].Type == "image" && arr[i][j].Content) { count++; } } } if (count > 4) { wx.showToast({ title: '只能上传四张图片', image: "../images/universalpic_exclamation_white_120x120.png", }); return false; } else return true; }, uploadImageAll: function (arr, callback) { var that = this; var b = false; var arrSource = [], arrResult = []; for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr[i].length; j++) { if (arr[i][j].Type == "image" && arr[i][j].Content) { arrSource.push(arr[i][j].Content); if (arr[i][j].ContentServer.indexOf(app.globalData.uploadImageUrl) >= 0 || arr[i][j].ContentServer.indexOf("baidu.com") >= 0 || arr[i][j].ContentServer.indexOf("bcebos.com") >= 0) { var result = {}; result.Source = arr[i][j].ContentServer; result.Target = arr[i][j].ContentServer; arrResult.push(result); } else { var source = arr[i][j].Content; that.uploadFileToServer(source, function (data) { if (data) { data = JSON.parse(data); var result = data.result; result.Target = app.globalData.uploadImageUrl + result.Target; arrResult.push(result); } }); } b = true; } } } if (b) { wx.showLoading({ title: '正在上传', mask: true, }); timeoutUploadImage = setTimeout(function () { wx.hideLoading(); }, 30000); } interval = setInterval(function () { //console.log(arrResult.length); if (arrResult.length >= arrSource.length) { wx.hideLoading(); //console.log("arrResult:" + JSON.stringify(arrResult)); clearInterval(interval); var success = true; var ari = 0; for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr[i].length; j++) { if (arr[i][j].Type == "image" && arr[i][j].Content) { var tempUrl = arr[i][j].Content; var serverUrl = ""; for (var k = 0; k < arrResult.length; k++) { if (tempUrl.indexOf(arrResult[k].Source) >= 0) { serverUrl = arrResult[k].Target; break; } } //console.log("serverUrl:" + serverUrl); //console.log("tempUrl:" + tempUrl); if (serverUrl == "") serverUrl = main.getServerImage(tempUrl); main.saveTempImage(serverUrl, tempUrl); arr[i][j].Content = serverUrl; arr[i][j].ContentServer = serverUrl; if (serverUrl == "") { success = false; break; } } } } //console.log(JSON.stringify(arr)); callback(success, arr); } }, 500); }, uploadFileToServer: function (file, callback) { var url = common.Encrypt("MiaoguoUploadFile2"); wx.uploadFile({ url: app.globalData.serverUrl + url, filePath: file, name: 'file', success(res) { callback(res.data); }, fail: function (err) { wx.hideLoading(); wx.showModal({ title: '上传文件失败', showCancel: false, content: JSON.stringify(err), }); } }); }, saveLocalCardList: function (param1) { var that = this; var list = app.globalData.CardList; for (var i = 0; i < list.length; i++) { if (that.data.MiaoguoCardID == list[i].MiaoguoCardID) { for (var j = 0; j < 4; j++) { if (j == 0) { if (param1.tags && param1.tags.length > 0) list[i].Content[j].Content = param1.tags.join(","); } else list[i].Content[j].Content = param1["Field" + j]; } if (param1.LimitTime) list[i].LimitTime = common.formatTime(param1.LimitTime); app.globalData.CardList = list; break; } } }, initAddCard: function () { var card = {}; card.MiaoguoCardID = 0; card.Content = []; for (var i = 0; i < 4; i++) { var obj = {}; obj.ContentType = i; obj.Content = []; card.Content.push(obj); } app.globalData.CardList = [card]; this.setData({ MiaoguoCardID: 0, Field: [ [], [], [], [] ], Tags: [], UpdateType: "add2", BtnSaveSelectCss:"", }); }, onBindError: function (e) { for (var i = 1; i < this.data.Field.length; i++) { for (var j = 0; j < this.data.Field[i].length; j++) { if (this.data.Field[i][j].Type == "image") { this.data.Field[i][j].Url = this.data.Field[i][j].Content; } } } this.setData({ Field: this.data.Field, }); }, deleteItem: function (e) { var that = this; var index = e.currentTarget.dataset.id; if (e.currentTarget.dataset.type==1){ that.setData({ TagIndex: index, }); } else if (e.currentTarget.dataset.type==2){ that.data.TagTemp.splice(index, 1); that.setData({ TagTemp: that.data.TagTemp, TagIndex: -1, }); } else if (e.currentTarget.dataset.type==3){ that.setData({ Tags: that.data.TagTemp, TagsStr:that.data.TagTemp.join("、"), TagIndex: -1, }); var list = app.globalData.CardList; for (var i = 0; i < list.length; i++) { if (that.data.MiaoguoCardID == list[i].MiaoguoCardID) { list[i].Content[0].Content = that.data.Tags; break; } } app.globalData.CardList = list; that.closeTagShow(); } }, onGotoList: function () { var that = this; if (isFirstAdd == true || !that.data.Field) { wx.showModal({ title: '提醒', content: '本功能用于在连续新建题卡时一键复查「上一张题卡」。请在连续新建到第二张时再来试一试。', confirmText: '知道了', showCancel: false, }); } else if (that.data.Field[1].length > 0 || that.data.Field[2].length > 0 || that.data.Field[2].length > 0) { wx.showModal({ title: '提醒', content: '您所做的编辑还没有保存,要放弃保存吗?', confirmText: '取消', cancelText: "不保存", success(res) { if (!res.confirm) { goto(); setTimeout(function () { wx.removeStorageSync("TempCardNoSaved"); }, 1000); } } }); } else { goto(); } function goto() { wx.showLoading({ title: '请稍候', }); setTimeout(function () { wx.hideLoading(); }, 5000); var url = 'GetMiaoguoCardList2?UserID=' + app.globalData.userInfo.UserID; main.getData(url, function (data) { wx.hideLoading(); if (data) { app.globalData.CardList = data.List; that.setData({ UpdateType: "add", }); wx.navigateTo({ url: './mainlist?type=3&Count=' + data.Count, }) } }); } }, //段落编辑************************** //字段输入 bindinputField: function (e) { //console.log("bindinputField:" + e.detail.value + " isEdit:" + isEdit); var that = this; if (app.globalData.IsAndroid && !isEdit) { return; } this.setData({ FieldContent: e.detail.value, }); }, //加符号 addSymbol: function (e) { //console.log("addSymbol"); isEdit = true; var that = this; btnName = e.currentTarget.dataset.id; if (btnName == "[读]") { this.setData({ SoundSign: "[/读]", }); } else if (btnName == "[/读]") { this.setData({ SoundSign: "[读]", }); } else if (btnName == "[线]") { this.setData({ LineSign: "[/线]", }); } else if (btnName == "[/线]") { this.setData({ LineSign: "[线]", }); } else if (btnName == "[光]") { this.setData({ HighlighterSign: "[/光]", }); } else if (btnName == "[/光]") { this.setData({ HighlighterSign: "[光]", }); } if (btnName == "( )") btnName = "( )"; else if (btnName == "_") btnName = "_____"; //console.log("addSymbol_btnName:" + btnName); if (!this.data.Focus) { var obj = { detail: { cursor: tempCursor } }; this.onBindblur(obj); } //console.log("addSymbol:" + this.data.FieldContent); setTimeout(function () { that.setData({ Focus: true, }); }, 300); }, //焦点聚焦 onBindFocus: function () { //console.log("onBindFocus"); btnName = ""; this.setData({ Focus: true, }); }, //失焦 onBindblur: function (e) { var that = this; //console.log("onBindblur:" + isEdit + " Filed:" + this.data.FieldContent); if (app.globalData.IsAndroid && !isEdit) { setTimeout(function () { isEdit = true; //console.log("onBindblur2:" + isEdit); }, 500); return; } isEdit = false; if (app.globalData.IsAndroid && !isEdit) { setTimeout(function () { isEdit = true; //console.log("onBindblur2:" + isEdit); }, 500); } //console.log("onBindblur:"+isEdit); this.updateField(); tempCursor = e.detail.cursor; //console.log("tempCursor:" + tempCursor); if (tempCursor == undefined) tempCursor = this.data["FieldContent"].length; var str1 = "", str2 = ""; if (this.data.FieldContent.length > 0) { str1 = this.data.FieldContent.substr(0, tempCursor); str2 = this.data.FieldContent.substring(tempCursor, this.data.FieldContent.length); } //console.log("str1:" + str1); //console.log("btnName:" + btnName); //console.log("str2:" + str2); var cur = 0; if (btnName) { cur = 1; if (btnName == "[读]" || btnName == "[线]" || btnName == "[光]") { cur = 3; } else if (btnName == "[/读]" || btnName == "[/线]" || btnName == "[/光]") { cur = 4; } else if (btnName === "( )") { cur = 7; } else if (btnName === "_____") { cur = 5; } } this.data.FieldContent = str1 + btnName + str2; this.setData({ FieldContent: this.data.FieldContent, Focus: false, Cursor: tempCursor + cur, }); btnName = ""; }, bindscrollHandler: function () { //console.log("bindscrollHandler"); btnName = ""; }, onSearchField: function (e) { app.globalData.TempFieldNumber = this.data.FieldNumber; wx.navigateTo({ url: './addInfomation', }); this.updateField(); setTimeout(function () { isEdit = true; //console.log("onSearchEnd"); }, 1000); }, clear: function () { var that = this; //console.log("clear"); this.setData({ FieldContent: "", Focus: true, Cursor: 0, }); btnName = ""; isEdit = false; this.updateField(); }, closeAddItem: function (e) { var that = this; var isSave = e.currentTarget.dataset.idsave; if (isSave == "true") { isUnload = false; if (that.data.FieldContent) { var content = that.data.FieldContent; main.postData("MsgSecCheck2", { Content: content, }, function (data) { if (data && data.errcode == 0) { next(that); } else { if (data.errmsg) { wx.showToast({ title: data.errmsg, duration: 2000, image: "../images/universalpic_wrong_white_120x120.png", }); isViolate = true; } } }); } else { next(that); } } else if (isSave == "false") { var content = wx.getStorageSync("TempCardInfoAddItem"); this.setData({ FieldContent: content, }); next(that); } function next(obj) { isViolate = false; obj.updateField(); obj.setData({ HiddenFieldEdit: true, }); var title = "编辑题卡"; if (obj.data.UpdateType == "add2") { title = "新建题卡"; } that.setData({ PageTitle: title, }); that.setBtnSaveCss(); } }, setBtnSaveCss:function(){ var that=this; if (that.data.Field && that.data.Field[1] && that.data.Field[1] != ""){ that.setData({ BtnSaveSelectCss:"MenuBtnSelect", }); } else{ that.setData({ BtnSaveSelectCss:"", }); } }, updateField: function () { var str = this.data.FieldContent; var list = app.globalData.CardList; var card = {}; for (var i = 0; i < list.length; i++) { if (this.data.MiaoguoCardID == list[i].MiaoguoCardID) { list[i].Content[this.data.FieldNumber].Content = str; card = main.changeStringToView(list[i].Content); break; } } app.globalData.CardList = list; this.setData({ Field: card.Field, Tags: card.Tags, }); }, //选择图片上传 uploadImageField: function () { //console.log("uploadImageStart"); var that = this; //若是安卓机 if (app.globalData.IsAndroid) { selectImage(that); } else { wx.showActionSheet({ itemList: ['拍照', '从手机相册选择'], success(res) { if (res.tapIndex == 0) { wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['camera'], success(res2) { wx.showLoading({ title: '请稍候', mask: true, }); setTimeout(function () { wx.hideLoading(); selectImage(that); }, 2000); }, }); } else if (res.tapIndex == 1) { selectImage(that); } }, fail(res) { console.log(res.errMsg) } }); } function selectImage(that) { var sizeType = ['album']; //若是安卓机 if (app.globalData.IsAndroid) sizeType = ['album', 'camera']; wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: sizeType, success(res) { // tempFilePath可以作为img标签的src属性显示图片 const tempFilePaths = res.tempFilePaths; //console.log(tempFilePaths[0]); //that.data.FieldContent = that.data.FieldContent + "[图 url='" + tempFilePaths[0] + "']" + tempFilePaths[0] + "[/图]"; wx.getImageInfo({ src: res.tempFilePaths[0], success(res) { //console.log(res.width) //console.log(res.height) if (tempCursor == undefined) tempCursor = that.data.FieldContent.length; var str1 = "", str2 = ""; if (that.data.FieldContent.length > 0) { str1 = that.data.FieldContent.substr(0, tempCursor); str2 = that.data.FieldContent.substring(tempCursor, that.data.FieldContent.length); } var width = res.width; if (isNaN(width)) width = 650; var height = res.height; if (isNaN(height)) height = 650; var str0 = "[图 w='" + width + "' h='" + height + "']" + tempFilePaths[0] + "[/图]"; that.data.FieldContent = str1 + str0 + str2; tempCursor = that.data.FieldContent.length; //console.log("uploadImageEnd:" + that.data.FieldContent); that.setData({ FieldContent: that.data.FieldContent, Focus: false, }); that.updateField(); if (!wx.getStorageSync("NoRemindImage")) { wx.showModal({ title: '提醒', showCancel: true, content: "“图片记号”以符号[图]开始…以符号[/图]结尾。如要剪切请确保完整性。", confirmText: "好的", cancelText: "不再提醒", success(res) { if (res.confirm) { } else { wx.setStorageSync("NoRemindImage", true); } }, }); } } }); }, fail: function () { } }); } }, showPracticeTime: function () { if (this.data.MiaoguoCardID){ wx.navigateTo({ url: './previewMenu?IsSave=0&ID='+this.data.MiaoguoCardID+'&CardType='+this.data.CardType+"&LimitTime="+this.data.LimitTime, }); } else{ var limitTime=common.formatTime(new Date(),"-",true); if (this.data.LimitTime) limitTime=this.data.LimitTime; var cardType=0; if (this.data.CardType) cardType=this.data.CardType; wx.navigateTo({ url: './previewMenu?IsSave=0&ID=0&CardType='+cardType+'&LimitTime='+limitTime, }); } }, //录音授权 recorderAccredit: function () { var that = this; if (app.globalData.IsRecorderAccredit == 1) that.showRecorder(); else if (app.globalData.IsRecorderAccredit == 0) { recorderManager.stop(); app.globalData.IsRecorderAccredit = 1; that.showRecorder(); } else if (app.globalData.IsRecorderAccredit == -1) { wx.getSetting({ success(res) { if (res.authSetting['scope.record'] === true) { app.globalData.IsRecorderAccredit = 1; that.showRecorder(); } else if (res.authSetting['scope.record'] === false) { wx.navigateTo({ url: '../other/openSetting', }); } } }); } }, showRecorder: function () { var that = this; if (that.checkRecorderCount()) { that.recorderInit(); tempRecorderFile = ""; that.setData({ PageTitle: '录音', }); that.setData({ IsRecorder: true, IsRecorderFinished: false, BtnRecorderName: "按住录音1分钟", RecorderTime: "00:00", RecorderTimeCss: "", RecorderPlayName: "播放", }); innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.onPlay(() => { console.log('开始播放'); that.setData({ RecorderTimeCss: "RecorderPanel1121", RecorderTime: "00:00", RecorderPlayName: "停止", }); }); innerAudioContext.onEnded(() => { console.log('结束播放'); clearInterval(intervalRecorder); that.setData({ RecorderTime: "00:00", RecorderTimeCss: "", RecorderPlayName: "播放", }); }); } }, closeRecorder: function () { var that = this; this.recorderInit(); if (tempRecorderFile) { wx.showModal({ title: '提醒', content: '这段录音还没有上传,要放弃录音吗?', showCancel: true, confirmText: "取消", cancelText: "不上传", success(res) { if (res.cancel) { closeRecorder2(); } }, }) } else { closeRecorder2(); } function closeRecorder2() { that.setData({ PageTitle: '编辑 段落' + that.data.FieldNumber, }); that.setData({ IsRecorder: false, IsRecorderFinished: false, }); tempRecorderFile = ""; } }, //录音初始化 recorderInit: function () { if (innerAudioContext) innerAudioContext.stop(); if (recorderManager) recorderManager.stop(); clearInterval(intervalRecorder); }, checkRecorderCount: function (arr) { var that = this; var count = 0; if (that.data.FieldContent.indexOf("[音 url=") >= 0 || that.data.FieldContent.indexOf("[/音]") >= 0) { count = 1; } if (count > 0) { wx.showToast({ title: '仅能上传一段', image: "../images/universalpic_exclamation_white_120x120.png", }); return false; } else return true; }, btnRecorderStart: function () { var that = this; if (app.globalData.IsRecorderAccredit == 1) { that.setData({ BtnRecorderName: "松手结束", RecorderTimeCss: "RecorderPanel1121", }); that.showRecorderTime(); recorderManager.start(); } }, btnRecorderEnd: function () { var that = this; if (app.globalData.IsRecorderAccredit == 1) { if (that.data.RecorderTime == "00:00") { //小于1秒处理 wx.showToast({ title: '时间过短', image: "../images/universalpic_exclamation_white_120x120.png", }); that.showRecorder(); } else { that.setData({ IsRecorderFinished: true, RecorderTimeCss: "", }); that.recorderInit(); } } else { that.recorderAccredit(); } }, showRecorderTime: function () { var that = this; var second = 0; clearInterval(intervalRecorder); intervalRecorder = setInterval(function () { second++; var secondStr = second.toString(); if (second < 10) secondStr = "0" + secondStr; that.setData({ RecorderTime: "00:" + secondStr, }); if (second >= 59) { that.setData({ IsRecorderFinished: true, RecorderTimeCss: "", }); that.recorderInit(); if (that.data.RecorderPlayName == "播放") { wx.showToast({ title: '录音超时', image: "../images/universalpic_exclamation_white_120x120.png", }); } } }, 1000); }, btnRecorderPlay: function () { var that = this; if (tempRecorderFile && this.data.RecorderPlayName == "播放") { innerAudioContext.src = tempRecorderFile; innerAudioContext.play(); this.showRecorderTime(); } else if (this.data.RecorderPlayName == "停止") { if (innerAudioContext) innerAudioContext.stop(); clearInterval(intervalRecorder); that.setData({ RecorderTime: "00:00", RecorderTimeCss: "", RecorderPlayName: "播放", }); } }, btnRecorderSave: function () { var that = this; this.recorderInit(); wx.showLoading({ title: '正在上传', }); setTimeout(function () { wx.hideLoading(); }, 60000); that.uploadFileToServer(tempRecorderFile, function (data) { if (data) { data = JSON.parse(data); //console.log(data); wx.hideLoading(); var result = data.result; result.Target = app.globalData.uploadImageUrl + result.Target; that.data.FieldContent = that.data.FieldContent + "[音 url='" + result.Target + "'][/音]"; that.data.FieldContent = main.encryptUrl(that.data.FieldContent); that.setData({ FieldContent: that.data.FieldContent, }); tempRecorderFile = ""; that.closeRecorder(); if (!wx.getStorageSync("NoRemindRecorder")) { wx.showModal({ title: '提醒', showCancel: true, content: "“录音记号”以符号[录]开始…以符号[/录]结尾。如要剪切请确保完整性。", confirmText: "好的", cancelText: "不再提醒", success(res) { if (res.confirm) { } else { wx.setStorageSync("NoRemindRecorder", true); } }, }); } } }); }, goto: function (e) { var url=e.currentTarget.dataset.url; wx.navigateTo({ url: url, }); if (url=="./folderEdit?type=add"){ isAddFolder=true; } }, showTagShow:function(){ var tagTemp=this.data.Tags.join(","); this.setData({ IsTagShow:true, TagTemp:tagTemp.split(","), TagIndex:-1, }); this.setData({ PageTitle: '自动记号', }); }, closeTagShow:function(){ this.setData({ IsTagShow:false, }); this.setData({ PageTitle: '编辑题卡', }); }, setCardTypeInit:function(){ this.setData({ CardType:0, PracticeCardType:constant1.arrStudyPattern[0]+"题卡", PracticeTimeStr:"", LimitTime:common.formatTime(new Date(),"-",true), }); wx.showToast({ title: '已恢复默认', image: "../images/universalpic_restore_white_120x120.png", }); }, gotoAddInfomationDetail:function(param){ main.searchInfomation(param.Word,param.SearchType,param.Author,app.globalData.TempStr,function(list,obj){ main.updateSearchList(obj,function(){ app.globalData.TempSearchBackNumber=0; wx.navigateTo({ url: './addInfomationDetail', }); }); }); }, showPanel: function (e) { var that = this; that.hiddenPanel(true); switch(e.currentTarget.dataset.type){ case "help": that.setData({ IsHelp: true, }); break; case "menu": that.setData({ IsShowMenu: true, IsShowAddHelp:1, }); wx.setStorageSync("IsShowAddHelp",that.data.IsShowAddHelp); break; case "folder": that.setData({ IsFolder: true, }); that.getFolderList(); break; case "limittime": var arrLimitTime=constant1.arrLimitTime; for(var i=0;i200){ obj.UrgentCss="MenuBtnDisabled"; } that.setData({ CardTypeTemp: cardtype, CardTypeCss:obj, }); } }, setCardType:function(e){ var that=this; if (that.data.CardTypeTemp==1 || that.data.CardType==-1){ var limittime=common.formatTime(new Date(),"-",true); that.setData({ LimitTime:limittime, PracticeTimeStr:common.formatDateCHS(limittime), }); } that.setData({ CardType: Number(that.data.CardTypeTemp), PracticeCardType: constant1.arrStudyPattern[that.data.CardTypeTemp]+"题卡", }); that.hiddenPanel(); }, deleteCard:function(){ app.globalData.TempStr="deleteCard"; this.onClose(); }, onShareAppMessage: function () { return { title: app.globalData.ShareTitle, path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID, imageUrl: app.globalData.ShareImage, } }, })