From 7baffff3352ff2be19426ae8c285738fa3c192a7 Mon Sep 17 00:00:00 2001 From: wangxia <779219182@qq.com> Date: Tue, 9 Dec 2025 11:00:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/addJob/index.vue | 26 ++++++++--------- pages/home/index.vue | 74 +++++++++++++++++++++++------------------------ pages/home/order.vue | 34 +++++++++++----------- pages/message/index.vue | 18 ++++++------ pages/person/index.vue | 38 ++++++++++++------------ pages/workBench/index.vue | 24 +++++++-------- 6 files changed, 107 insertions(+), 107 deletions(-) diff --git a/pages/addJob/index.vue b/pages/addJob/index.vue index 7d641c7..ef08892 100644 --- a/pages/addJob/index.vue +++ b/pages/addJob/index.vue @@ -313,7 +313,7 @@ }, onShow() { let that = this; - console.log('==============',this.G.store()) + // console.log('==============',this.G.store()) if (uni.getStorageSync("apply-token")) { that.checkRecordingPermission(); @@ -388,7 +388,7 @@ RecordApp.UniWebViewActivate(this); //App环境下必须先切换成当前页面WebView RecordApp.RequestPermission( () => { - console.log("已获得录音权限,可以开始录音了"); + // console.log("已获得录音权限,可以开始录音了"); that.msgType = "voice"; that.isAuth = true; }, @@ -495,7 +495,7 @@ RecordApp.Start( set, () => { - console.log("已开始录音"); + // console.log("已开始录音"); //【稳如老狗WDT】可选的,监控是否在正常录音有onProcess回调,如果长时间没有回调就代表录音不正常 //var wdt=this.watchDogTimer=setInterval ... 请参考示例Demo的main_recTest.vue中的watchDogTimer实现 @@ -519,14 +519,14 @@ recPause() { if (RecordApp.GetCurrentRecOrNull()) { RecordApp.Pause(); - console.log("已暂停"); + // console.log("已暂停"); } }, //继续录音 recResume() { if (RecordApp.GetCurrentRecOrNull()) { RecordApp.Resume(); - console.log("继续录音中..."); + // console.log("继续录音中..."); } }, @@ -580,7 +580,7 @@ // encoding: 'binary', responseType: "arraybuffer", // 指定响应类型为数组缓冲区 success: (res) => { - console.log("读取音频文件成功", res); + // console.log("读取音频文件成功", res); resolve(new Int8Array(res.data)); }, fail: (err) => { @@ -627,7 +627,7 @@ }, updateTextareaHeight() {}, linechange(e) { - console.log('获取行数变化:',e.detail) + // console.log('获取行数变化:',e.detail) let that = this; that.isFocus = true; setTimeout(()=>{ @@ -709,9 +709,9 @@ const touch = e.touches[0]; let _x = touch.clientX, _y = touch.clientY; - console.log('y 坐标:',_y,' 按妞:',that.writeStyle) + // console.log('y 坐标:',_y,' 按妞:',that.writeStyle) let _bool = that.writeStyle.split(':')[1].split('px')[0] - console.log('Y临界值:',uni.getSystemInfoSync().windowHeight - _bool - 72) + // console.log('Y临界值:',uni.getSystemInfoSync().windowHeight - _bool - 72) if (_y > uni.getSystemInfoSync().windowHeight - _bool - 72) { that.voiceStatus = 0; that.spec = true; @@ -768,7 +768,7 @@ let that = this; setTimeout(() => { that.voiceStatus = 0; // 标记为正在录音 - console.log("that.isFluency", that.isFluency); + // console.log("that.isFluency", that.isFluency); if (!that.isFluency) { that.isSending = false; // 语音识别开始 @@ -800,7 +800,7 @@ sendAudioAI($msg) { let that = this; if (that.isSending) { - console.log("正在发送消息,忽略重复发送请求"); + // console.log("正在发送消息,忽略重复发送请求"); return; } that.isSending = true; @@ -817,7 +817,7 @@ sendBaseData($sendMessage = "", $type) { let that = this; if (!$sendMessage) { - console.log("防抖"); + // console.log("防抖"); return false; } that.saveHistory(0, $sendMessage, () => { @@ -843,7 +843,7 @@ uni.vibrateShort({ type: $type, fail(err){ - console.log('震动失败:',err) + // console.log('震动失败:',err) } }); }, diff --git a/pages/home/index.vue b/pages/home/index.vue index 00718dd..13e5155 100644 --- a/pages/home/index.vue +++ b/pages/home/index.vue @@ -176,7 +176,7 @@ export default { // that.getInviteList(); // } // } - console.log('uni.getStorageSync("apply-supplierAccount")', uni.getStorageSync("apply-supplierAccount")); + // console.log('uni.getStorageSync("apply-supplierAccount")', uni.getStorageSync("apply-supplierAccount")); that.updateJobInfo(); } // #ifdef MP-WEIXIN @@ -184,14 +184,14 @@ export default { // #endif }, mounted() { - console.log("mountedmountedmountedmountedmountedmounted"); + // console.log("mountedmountedmountedmountedmountedmounted"); const query = uni.createSelectorQuery().in(this); - console.log("query", query); + // console.log("query", query); // 选择指定的 DOM 元素 query .select(".tabbar") .boundingClientRect((res) => { - console.log("resresresrserserserser", res); + // console.log("resresresrserserserser", res); this.tabbarHeight = res.height; uni.setStorageSync("TABBAR_HEIGHT", res.height); }) @@ -312,7 +312,7 @@ export default { watch: { "tabInfo.list": { handler(val) { - console.log("tabInfo.list", val); + // console.log("tabInfo.list", val); }, deep: true, immediate: true, @@ -338,10 +338,10 @@ export default { onReachBottom() { let that = this; - console.log("onReachBottom", that.query.isFinish); + // console.log("onReachBottom", that.query.isFinish); this.G.isLogin(); if (this.G.isLogin()) { - console.log("that.query.size", that.query.size); + // console.log("that.query.size", that.query.size); if (that.query.isFinish == -1 || that.query.isFinish == that.query.size) { that.query.page++; that.getList("concat"); @@ -419,7 +419,7 @@ export default { .createSelectorQuery() .select("#tttop") .boundingClientRect((data) => { - console.log("data", data); + // console.log("data", data); if(data){ if (data.top <= 0) { that.toTop = true; @@ -445,7 +445,7 @@ export default { }, reachBottom() { let that = this; - console.log("onReachBottom", that.query.isFinish); + // console.log("onReachBottom", that.query.isFinish); if(uni.getStorageSync("apply-token")){ if (that.query.isFinish == -1 || that.query.isFinish == that.query.size) { that.query.page++; @@ -462,8 +462,8 @@ export default { getList($type = "init") { let that = this; this.loading = true; - console.log("job_list __F________________________", 1); - console.log("that.tabInfo.active", that.tabInfo.active); + // console.log("job_list __F________________________", 1); + // console.log("that.tabInfo.active", that.tabInfo.active); let time = new Date().getTime(); that.G.Post( that.api.job_list, @@ -480,7 +480,7 @@ export default { (res) => { that.isTrigger = false; that.computeCode = 1; - console.log("job_list __________________________", (new Date().getTime() - time) / 1000); + // console.log("job_list __________________________", (new Date().getTime() - time) / 1000); // res.recordCount = 0; // res.recordList = []; @@ -498,7 +498,7 @@ export default { that.query.list = []; if (res.recordList.length > 0) { that.query.list = res.recordList.map((item, index) => { - // console.log(item) + // // console.log(item) return { ...item, title: item.jobName, @@ -541,7 +541,7 @@ export default { }) ); } - console.log("首页 列表:", that.query.list); + // console.log("首页 列表:", that.query.list); } ); }, @@ -561,7 +561,7 @@ export default { pageNum: that.attentionConfig.num, }, (res) => { - console.log(res); + // console.log(res); if (that.attentionList.length > 0) { res.forEach((item) => { item.checked = false; @@ -673,7 +673,7 @@ export default { }, shareJob(e) { - console.log(e); + // console.log(e); this.currentJob = e; }, /** @@ -689,32 +689,32 @@ export default { }, handleUpdateTab(e) { - console.log("e", e); + // console.log("e", e); this.G.isLogin(); if (this.G.isLogin()) { if (this.loading == true) { return; } - console.log("一级tab切换"); + // console.log("一级tab切换"); this.tabInfo.active = e; this.speed = -1; this.loading = true; this.query.page = 1; this.getList(); } else { - console.log("请先登录"); + // console.log("请先登录"); } }, checkAllChange(e) { - console.log(e); + // console.log(e); this.attentionList.forEach((item) => { item.checked = e.value; }); this.upInfo = this.getListNum(); }, checkChange(e) { - console.log(e); - console.log(this.attentionList); + // console.log(e); + // console.log(this.attentionList); var check = true; this.attentionList.forEach((item) => { if (item.id == e.id) { @@ -760,7 +760,7 @@ export default { agencyIds: that.upInfo.list.join(","), }, (res) => { - console.log(res); + // console.log(res); uni.showToast({ title: "关注成功", icon: "", @@ -775,7 +775,7 @@ export default { // setTimeout(() => {}, 2000); }, onScrollToLower() { - console.log(123); + // console.log(123); let that = this; that.attentionConfig.num++; @@ -786,24 +786,24 @@ export default { * 筛选相关======================================================== */ deleteSex() { - console.log("deleteSex"); + // console.log("deleteSex"); this.getFilterData.sex = -1; this.getList(); }, deleteAge() { - console.log("deleteAge"); + // console.log("deleteAge"); this.getFilterData.ageRangeStr = ""; this.getList(); }, deleteJobCategoryLabel(id) { - console.log(id); + // console.log(id); this.getFilterData.jobCategoryLabelObjects = this.getFilterData.jobCategoryLabelObjects.filter((obj) => obj.id != id); const idsArray = this.getFilterData.jobCategoryLabelObjects.map((obj) => obj.id); // 将数组转换为字符串 this.getFilterData.jobCategoryLabelIds = idsArray.join(","); - console.log("deleteJobCategoryLabel", this.getFilterData); + // console.log("deleteJobCategoryLabel", this.getFilterData); this.getList(); }, @@ -812,7 +812,7 @@ export default { const idsArray = this.getFilterData.jobSpecialLabelObjects.map((obj) => obj.id); // 将数组转换为字符串 this.getFilterData.jobSpecialLabelIds = idsArray.join(","); - console.log("deleteJobSpecialLabel", this.getFilterData); + // console.log("deleteJobSpecialLabel", this.getFilterData); this.getList(); }, clearFilter1() { @@ -824,21 +824,21 @@ export default { this.scrollTo = ""; this.getFilterData.sex = -1; this.getFilterData.ageRangeStr = ""; - console.log("this.getFilterData", this.getFilterData); + // console.log("this.getFilterData", this.getFilterData); this.$refs.filterChild.clearFilter(); this.getList(); setTimeout(() => { that.scrollTo = "listBox"; - console.log("aaaaaaaaa"); + // console.log("aaaaaaaaa"); }, 1); }, receiveFromChild(data) { - console.log(data); + // console.log(data); this.whichOneShow = ""; this.query.page = 1; this.getFilterData = JSON.parse(JSON.stringify(data)); - console.log("getFilterData in receiveFromChild", this.getFilterData); + // console.log("getFilterData in receiveFromChild", this.getFilterData); this.getList(); // this.messageFromChild = data.message; }, @@ -861,10 +861,10 @@ export default { if (this.query.sortTag === 2) { // 60 * 60 * 24 if (that.currentInfo.latitude && new Date().getTime() - that.currentInfo.timestamp < 1000 * 10) { - console.log("inTime"); + // console.log("inTime"); this.getList(); } else { - console.log("outTime"); + // console.log("outTime"); this.getLocation().then(() => { this.getList(); }); @@ -874,8 +874,8 @@ export default { } }, checkLength(e) { - console.log("e", e); - console.log("keyword", this.keyword); + // console.log("e", e); + // console.log("keyword", this.keyword); if (e.length == 0) { this.keyword = ""; this.searchJob(); diff --git a/pages/home/order.vue b/pages/home/order.vue index acff6b7..e753d57 100644 --- a/pages/home/order.vue +++ b/pages/home/order.vue @@ -122,7 +122,7 @@ export default { this.G.setNavStyle(); let that = this; uni.$on("getTownsman", (data) => { - console.log("getTownsman", data); + // console.log("getTownsman", data); // 前端本地处理根据身份证号获取年龄 if (data.info.idCard && (data.info.idCard.length == 15 || data.info.idCard.length == 18)) { let infoByIDcard = this.G.getInfoByIDcard(data.info.idCard); @@ -142,7 +142,7 @@ export default { index: that.persenInfo.length, }; } - console.log("that.persenInfo", that.persenInfo); + // console.log("that.persenInfo", that.persenInfo); that.$forceUpdate(); }); uni.$on("changeJobInfo", function (data) { @@ -151,7 +151,7 @@ export default { that.currentJobInfo = data.info; that.jobType = data.info.jobType; - console.log("data.info", data.info); + // console.log("data.info", data.info); that.getJobDetail(data.info); that.$forceUpdate(); }); @@ -167,8 +167,8 @@ export default { }, onLoad(options) { let that = this; - console.log("options", options); - console.log("options.jobId", options.jobId); + // console.log("options", options); + // console.log("options.jobId", options.jobId); let params = options.params ? JSON.parse(options.params) : {}; if (params.jobId) { that.currentJobInfo = JSON.parse(JSON.stringify(params)); @@ -188,7 +188,7 @@ export default { setTimeout(() => { that.IS_CREATOR = uni.getStorageSync("IS_CREATOR") == 1 ? true : false; that.updateInfo.interviewTimeStr = ""; - console.log("获取面试时间:", that.updateInfo.interviewTimeStr); + // console.log("获取面试时间:", that.updateInfo.interviewTimeStr); // 设置默认时间 let hour = new Date().getHours(); if (hour < 20 && hour >= 6) { @@ -252,7 +252,7 @@ export default { }, methods: { getTownsManInfo(info) { - console.log("info", info); + // console.log("info", info); uni.$emit("getTownsman", { info, }); @@ -272,14 +272,14 @@ export default { } else { policyStr = "薪资待遇:" + (res.record.salaryDetail || "-") + "\n\n"; } - console.log("政策列表:", res); + // console.log("政策列表:", res); that.setFormList(policyStr); } ); }, setFormList(policyStr) { let that = this; - // console.log("that.updateInfo", that.updateInfo); + // // console.log("that.updateInfo", that.updateInfo); if (that.isFans == 2) { that.jobData = [ { @@ -406,26 +406,26 @@ export default { }); }, getInviteTime(e) { - console.log("获取预约面试时间:", e); + // console.log("获取预约面试时间:", e); this.updateInfo.interviewTimeStr = e; }, updateDom() {}, chooseAddress(e) { let that = this; - console.log(e); + // console.log(e); this.updateInfo.interviewLat = e.lat; this.updateInfo.interviewLng = e.lng; this.updateInfo.interviewAddress = e.address; this.jobData[1].value = this.updateInfo.interviewAddress; // billForm.value.storeAddr = e.address; - console.log("this.updateInfo", this.updateInfo); - console.log("e", e); + // console.log("this.updateInfo", this.updateInfo); + // console.log("e", e); this.$forceUpdate(); }, changeAddress(e) { this.updateInfo.interviewAddress = e; - console.log("this.updateInfo", this.updateInfo); - console.log("e", e); + // console.log("this.updateInfo", this.updateInfo); + // console.log("e", e); // this.info.address = e; this.$forceUpdate(); }, @@ -466,7 +466,7 @@ export default { index: $index, }; } - console.log("params", params); + // console.log("params", params); if (info) { uni.navigateTo({ url: "/root/home/editTownsman?" + that.G.objToStr(params), @@ -549,7 +549,7 @@ export default { // _upAgencyName = that.detailRes.userName; // } // submitInfo.upAgencyName = _upAgencyName ? _upAgencyName : ''; - console.log("submitInfo", submitInfo); + // console.log("submitInfo", submitInfo); that.G.Post("/yishoudan/common/order/addBatch", submitInfo, (res) => { // uni.hideLoading(); uni.showToast({ diff --git a/pages/message/index.vue b/pages/message/index.vue index 051a792..b857894 100644 --- a/pages/message/index.vue +++ b/pages/message/index.vue @@ -74,10 +74,10 @@ const openTel2 = ref(null); onMounted(() => { // const query = uni.createSelectorQuery(); // query.select("#openTel2").exec(function (res) { - // console.log("resresres", res); + // // console.log("resresres", res); // }); // setTimeout(() => { - // console.log("openTel2.value", openTel2.value); + // // console.log("openTel2.value", openTel2.value); // openTel2.value.handleClick(); // }, 1000); }); @@ -99,7 +99,7 @@ const userInfo = ref({}); onLoad(() => {}); onShow(() => { isLogin.value = uni.getStorageSync("apply-token") ? true : false; - console.log("count.value", count.value); + // console.log("count.value", count.value); corpUserFlag.value = uni.getStorageSync("apply-userinfo").corpUserFlag; userInfo.value = uni.getStorageSync("apply-userinfo"); // 单独刷新系统通知 @@ -130,11 +130,11 @@ onShow(() => { // 重置选中会话 uni.$UIKitStore?.uiStore.selectConversation(""); const conversationId = uni.$UIKitStore.uiStore.selectedConversation; - console.log("conversationId", conversationId); + // console.log("conversationId", conversationId); // 手动重置会话列表(im在切换团队的时候如果列表为空, 则因为监听不到列表变化不会重新渲染页面, 需要重新获取列表) uni.$UIKitStore.conversationStore.getConversationListActive(0, 100).then((res) => { - console.log("reresresresress", res); - console.log("contactListcontactListcontactListcontactListcontactList", contactList.value.conversationList); + // console.log("reresresresress", res); + // console.log("contactListcontactListcontactListcontactListcontactList", contactList.value.conversationList); contactList.value.conversationList = res.conversationList; }); @@ -167,11 +167,11 @@ const goPage = ($path) => { } }; const openTel1 = ($tel) => { - console.log("openTel2", openTel2.value); + // console.log("openTel2", openTel2.value); uni.requestSubscribeMessage({ tmplIds: ["UPYUMYWBtgWD3ZZHVEJC9qX04ahF81-yBPdsDzArp_4"], success(res) { - console.log("ssssssssssssssssssssssssss", res); + // console.log("ssssssssssssssssssssssssss", res); }, }); }; @@ -207,7 +207,7 @@ const getScrollInfo = (e) => { }; const updateType = (e) => { - console.log(e); + // console.log(e); resetScroll.value = 1; globalData.value.messageTab = e; }; diff --git a/pages/person/index.vue b/pages/person/index.vue index e840fab..deb323c 100644 --- a/pages/person/index.vue +++ b/pages/person/index.vue @@ -407,7 +407,7 @@ export default { getNewApplyNum() { let that = this; this.G.Get(this.api.order_getNewApplyNumNotViewed, {}, (res) => { - console.log(res, "getNewApplyNum"); + // console.log(res, "getNewApplyNum"); that.applyNum = res; }); }, @@ -480,7 +480,7 @@ export default { let userInfo = uni.getStorageSync("apply-userinfo"); that.isLogin = true; that.userInfo = { ...userInfo }; - console.log(that.userInfo, "that.userInfo"); + // console.log(that.userInfo, "that.userInfo"); that.userInfo.avatar = that.userInfo.user.imgSrc; that.userInfo.name = userInfo.userName || userInfo.aliasName; that.userInfo.tel = that.userInfo.user.tel; @@ -554,7 +554,7 @@ export default { type: 1, }, (res) => { - console.log("item.", res); + // console.log("item.", res); that.pageSpeed = 1; if (uni.getStorageSync("apply-supplierAccount") == 1) { // 有 @@ -605,7 +605,7 @@ export default { let that = this; this.G.isLogin(); if (this.G.isLogin()) { - console.log("数据展示:", item.name); + // console.log("数据展示:", item.name); switch (item.name) { case "全部职位": uni.navigateTo({ @@ -641,9 +641,9 @@ export default { handleClickItem(e) { this.G.isLogin(); if (this.G.isLogin()) { - console.log("e", e); + // console.log("e", e); if (e.item.path == "qiehuan") { - console.log("切换团队"); + // console.log("切换团队"); this.showTeamToggle = true; } else { uni.navigateTo({ @@ -658,7 +658,7 @@ export default { getTeamList() { let that = this; that.G.Get(that.api.user_getTeamList, {}, (res) => { - console.log("res", res); + // console.log("res", res); res.forEach((item) => { if (item.id == that.userInfo.user.agencyId) { item.checked = true; @@ -671,9 +671,9 @@ export default { let that = this; uni.setStorageSync("apply-agencyId", _item.id); that.G.checkTokenNew().then((res) => { - console.log(" checkToken res", res); + // console.log(" checkToken res", res); that.G.Get(that.api.login_agencyInfo, {}, (aRes) => { - console.log(" checkToken aRes", aRes); + // console.log(" checkToken aRes", aRes); uni.setStorageSync("IS_CREATOR", aRes.agency.userId == res.user.id || res.admin == true ? 1 : 2); // 1是创建者 2是普通成员 that.showTeamToggle = false; that.setUserInfo(); @@ -688,7 +688,7 @@ export default { */ toogleTeam(item) { let that = this; - console.log(item); + // console.log(item); if (wx.getStorageSync("apply-agencyId") == item.id) { return false; } @@ -696,7 +696,7 @@ export default { title: "切换中...", }); that.G.Get(that.api.user_toggleTeam + `/${item.id}`, {}, (res) => { - console.log("res", res); + // console.log("res", res); that.checkToken(item); uni.hideLoading(); uni.showToast({ @@ -713,9 +713,9 @@ export default { getAuthInfo() { let that = this; - console.log("this.agencyInfo.id", this.agencyInfo); + // console.log("this.agencyInfo.id", this.agencyInfo); this.G.Get(this.api.get_supplier_info, { agencyId: this.agencyInfo.id || "" }, (res) => { - console.log("resresresresresres", res); + // console.log("resresresresresres", res); that.authInfo = res; }); }, @@ -727,7 +727,7 @@ export default { classify: 1, }, (res) => { - console.log("res", res); + // console.log("res", res); if (res) { that.map = res; let resdata = res.classify1num; @@ -803,7 +803,7 @@ export default { type: 1, }, (res) => { - console.log("item.", res); + // console.log("item.", res); that.userNum = res; } ); @@ -811,7 +811,7 @@ export default { getNum() { let that = this; that.G.Get(that.api.bind_getApplyNum, {}, (res) => { - console.log("获取待处理数量:", res); + // console.log("获取待处理数量:", res); if (res.approvePassHasNotRed > 0) { that.readed = false; } else { @@ -823,14 +823,14 @@ export default { index: 2, text: String(res.approvePassHasNotRed + applyNum), fail(err) { - console.log("err", err); + // console.log("err", err); }, }); } else { uni.removeTabBarBadge({ index: 2, fail(err) { - console.log("err", err); + // console.log("err", err); }, }); } @@ -838,7 +838,7 @@ export default { }); }, goOrder(e) { - console.log("e", e); + // console.log("e", e); uni.setStorageSync("applyType", e.item.type ? e.item.type : 0); uni.switchTab({ url: "/pages/workBench/index", diff --git a/pages/workBench/index.vue b/pages/workBench/index.vue index 030418d..3abf3be 100644 --- a/pages/workBench/index.vue +++ b/pages/workBench/index.vue @@ -142,11 +142,11 @@ export default { // }, 200); } - console.log(123123123); + // console.log(123123123); }, created() { let that = this; - // console.log(4567456456); + // // console.log(4567456456); // // 导航栏高度信息 // that.navInfo = that.G.getNavInfo(); // if (uni.getStorageSync("apply-supplierAccount") == 1) { @@ -163,7 +163,7 @@ export default { // that.tabActive = 0; // } that.isLogin = uni.getStorageSync("apply-token") ? true : false; - // console.log("that.isLogin", that.isLogin); + // // console.log("that.isLogin", that.isLogin); // that.loginInfo = uni.getStorageSync("apply-userinfo"); // this.getList(); @@ -214,7 +214,7 @@ export default { }, getList($type = "init") { let that = this; - console.log("是否登录", that.isLogin); + // console.log("是否登录", that.isLogin); if (!that.isLogin) { return false; } @@ -230,7 +230,7 @@ export default { statusStr: that.tabInfo[that.tabActive].childList[that.menuActive].tip, }, (res) => { - console.log("res", res); + // console.log("res", res); // return if (res.recordCount == 0) { that.loading = false; @@ -290,7 +290,7 @@ export default { ); }, goTel($item) { - console.log($item); + // console.log($item); if ($item) { uni.makePhoneCall({ phoneNumber: $item, @@ -301,7 +301,7 @@ export default { let that = this; if (that.isLogin) { that.G.Get(that.api.user_getGZHstatus, { type: "BMZS" }, (res) => { - console.log(res); + // console.log(res); that.GZHInfo = res; }); } @@ -320,7 +320,7 @@ export default { // 一级tab切换 handleUpdateTab(e) { let that = this; - console.log("e", e); + // console.log("e", e); this.tabActive = e; this.menuActive = 0; this.menuList = this.tabInfo[this.tabActive].childList; @@ -334,7 +334,7 @@ export default { // 二级tab切换 handleUpdateMenu($item, $index) { let that = this; - console.log("$item", $item); + // console.log("$item", $item); this.menuActive = $item; this.loading = true; this.speed = -1; @@ -346,8 +346,8 @@ export default { }, getSearch(type) { let that = this; - console.log("typetypetype", type); - console.log("getSearch", that.keyword); + // console.log("typetypetype", type); + // console.log("getSearch", that.keyword); if (type == "clear" && !that.keyword) { that.getList(); } else if (type == "search") { @@ -356,7 +356,7 @@ export default { }, goDetail($item, $index) { let that = this; - console.log("$item", $item); + // console.log("$item", $item); // return uni.navigateTo({ // url: "/root/detail/apply?id=" + $item.id + "&type=" + (that.tabActive + 1),