[图片] [图片]
[图片] 实际页面内容是下图: [图片]
当前小程序页面分享次数过多,暂时无法查看 上面是报错内容 [图片]
我们是家中小企业,想办公众号迁移公证书,不想跑线下浪费时间,想找线上平台办理。但不知道公众号迁移公证书线上办理平台有哪些?
我们运营着一个电商公众号,每天都有客户咨询和订单处理,想办理迁移但怕影响运营。公众号迁移期间能正常发推文、回复消息吗?另外,迁移公证书具体该怎么办理,流程复杂吗?
问题:用户扫码设备支付,提示风险性访问,导致部分用户不敢访问,影响用户体验,麻烦解除 设备二维码:[图片] 设备二维码内容链接:https://uz953egx18e8.jinxiahui.xyz/?code=79200709267702&captcha=BE8C14A9671186C0FB7569E34F274C45 这是我们工厂的产品图片:[图片] (因为无法上传视频,我随便截图了)
有用户说他没收到通知,但是我们调用发送接口返回的是发送成功的,虽然这个用户是明显恶意的,但是我们也需要给他拿出凭证来
域名被限制访问 https://duanxianxia.com, 您好,本网站已备案,并已悬挂备案号,备案号为:粤ICP备2025400938号-3,公司已取得增值电信许可证:粤B2-20251249 请求解除拦截,感谢 [图片]
您好,域名(https://www.89uc.com),在阿里云注册并备案通过,浏览器访问正常,我是网站开发者,访问时间如图2025/07/12,微信访问网站出现“无法确认该网页的安全性,请谨慎访问”,经检查网页里没有不安全的内容,请核实后帮忙解除拦截,谢谢! [图片] [图片]
请问: 我一小区购物小程序,线上购买,线下提走,不涉及什么快递信息,也要接入订单管理,确认收货之类的这些 api ? 不接入就是不是就不能支付? 另外,假如要接入的话,也没见订单管理具体的接入api?请问在哪里? 能否取消接入订单管理,如果能,请提供一下取消接入的api,我确实是找不到。 谢谢
访问“http://h5.xijietech.cn” 提示“如需浏览,请长按网址复制后使用浏览器访问” 是什么原因,也看不到哪里有违规[图片]
每个游戏都进不去 [图片]
[图片] https://smrk.ruikexie.top:9021/ 网站也备过案了,证书也在有效期。就是访问不了。但是直接访问服务器地址就能连上。
很用心和认真的做小程序,用户体验和功能都做得比价好,用户给了很好的评分,通过这些评价我也更有动力去持续优化和改善 但是最近看到是把这个功能给部分小程序去掉了,很想知道做这个决策的目的是什么?
关于有可能存在违反《微信外部链接内容管理规范》的所以内容都已经处理完毕,运维提交申诉已经超过7个工作日了,无任何反馈 [图片] [图片] [图片]
www.jhhsa.cn
以下 shipping为请求的发货信息,同时分别用两种方案上传,报不同的格式错误,请各路PHP大神指导 [图片] 方案一:报47007错误 [图片] 方案二:报47001错误 [图片]
当点击列表进入详情页时,其他都显示在页面中,唯独income没有显示出来,这是什么问题,怎么解决? [图片][图片] <!--pages/jobs/add/edit-position/edit-position.wxml--> <view class="add-position-group"> <expectation formjobs="{{formData.jobs}}" formjobsCount="{{formData.jobsCount}}" formindustries="{{formData.industries}}" formindustriesCount="{{formData.industriesCount}}" isEditMode="{{isEditMode}}" expectationName="{{expectationName}}" expectationCity="{{expectationCity}}" income="{{income}}" bindjobs="onJobs" bindindustries="onIndustries" bind:namechange="onNameChange" bind:citychange="onCityChange" bind:incomechange="onincomechange"> </expectation> <view class="btn-ground"> <button class="sunbmit-btn" style="width:200rpx;" bindtap="onDeleteConfig">删除</button> <button form-type="submit" type="primary" class="sunbmit-btn" bindtap="onSaveConfig">保存配置</button> </view> </view> // pages/jobs/add/edit-position/edit-position.js const app = getApp(); const db = wx.cloud.database(); const _ = db.command; Page({ data: { formData: { jobs: [], jobsCount: 0, industries: [], industriesCount: 0 }, isEditMode: true, editItemId: '', expectationName: '全职', // 默认职位类型 expectationCity: '请选择工作城市', // 默认城市 income: '' // 初始为空 }, async onLoad(options) { try { await app.loadUserInfo(); this.setData({ editItemId: options.id, }); if (options.id) { await this.loadEditData(options.id); } } catch (error) { console.error("app.loadUserInfo() 出错:", error); } }, //加载编辑数据的方法 async loadEditData(id) { try { const res = await db.collection('resume').where({ _openid: app.globalData.openid, }).field({ expectation: true, _id: false, }).get(); console.log("res", res) console.log("res.data", res.data) console.log("res.data[0]", res.data[0]) if (res.data && res.data.length > 0) { const expectationList = res.data[0].expectation || []; const target = expectationList.find(item => item.id === id); console.log("target", target) console.log("targetincome", target.income) if (target) { this.setData({ expectationName: target.expectationName || '全职', expectationCity: target.expectationCity || '请选择工作城市', income: target.income || '', 'formData.jobs': target.expectationPosition || [], 'formData.jobsCount': target.expectationPosition ? target.expectationPosition.length : 0, 'formData.industries': target.expectationIndustry || [], 'formData.industriesCount': target.expectationIndustry ? target.expectationIndustry.length : 0, }); } } } catch (error) { console.error('加载编辑数据失败:', error); wx.showToast({ title: '加载数据失败', icon: 'none' }); } console.log('after setData income:', this.data.income) // 确认setData后income的值 }, /** * 薪资要求 */ onincomechange(e) { console.log(e) this.setData({ income: e.detail.value }); }, }); <!--components/expectation/expectation.wxml--> <view class="expectation-container"> <view class="add-list"> <view class="add-list-title">薪资要求</view> <view class="list-content"> <selector-tow name="income" pay-type="{{expectationName === '临/兼职' ? 'hourly' : 'monthly'}}" value="{{currentIncome}}" bindchange="onIncomeChange"></selector-tow> </view> </view> </view> // components/expectation/expectation.js Component({ properties: { income: { type: String, value: '', observer: function(newVal) { console.log('income changed in component:', newVal) if (newVal) { this.setData({ currentIncome: newVal }) } } } }, data: { natures: [{id: 0,name: '全职'}, {id: 1,name: '临/兼职'}], selectedNature: '', showPartTimeOnly: false, showFullTimeOnly: false, currentIncome: '' }, lifetimes: { async attached() { console.log('attached - income:',this.properties.income ) // 这里应该能打印出值 if (this.properties.income) { this.setData({ currentIncome: this.properties.income }) } } }, methods: { /** * 薪资要求 */ onIncomeChange(e) { console.log(e) const income = e.detail.value this.setData({ currentIncome: income }) this.triggerEvent('incomechange', { value: income }) } } }); <!--components/selector-tow/selector-tow.wxml--> <view class="section"> <picker mode="multiSelector" range="{{multiArray}}" value="{{multiIndex}}" bindchange="changeMulti" bindcolumnchange="nocolumnchange"> <view class="section-picker"> <view class="picker {{current === '请选择' ? 'address-red' : ''}}"> {{current === '面议' ? '面议' : current}} </view> <icon class="icon"></icon> </view> </picker> </view> // components/selector-tow/selector-tow.js const { hourlyWageList, monthlyPayList } = require('../../utils/util') Component({ /** * 组件的属性列表 */ properties: { payType: { type: String, value: 'monthly' // hourly/monthly }, income:{ type:String, value:'' } }, /** * 组件的初始数据 */ data: { multiArray: [], classArray: [], multiIndex: [0, 0], current: '请选择', }, observers: { 'payType'(type) { const config = type === 'hourly' ? hourlyWageList : monthlyPayList this.setData({ multiArray: config.multiArray, classArray: config.classArray, multiIndex: config.multiIndex, current: config.current }) } }, /** * 组件的方法列表 */ methods: { changeMulti(e) { const [col1, col2] = e.detail.value; const firstValue = this.data.multiArray[0][col1]; const displayValue = firstValue === '面议' ? firstValue : `${firstValue}-${this.data.multiArray[1][col2]}`; this.setData({ multiIndex: e.detail.value, current: displayValue }); this.triggerEvent('change', { value: displayValue }); }, nocolumnchange(e) { const column = e.detail.column const value = e.detail.value const newData = { multiIndex: [...this.data.multiIndex], multiArray: [...this.data.multiArray] } if (column === 0) { newData.multiArray[1] = this.data.classArray[value] newData.multiIndex = [value, 0] this.setData(newData) } } } })
你好,我们公司网站h5网页提醒(如需浏览,请长按网址复制后使用浏览器访问)怎么解决呢?域名是通过备案运营的,SSL安全证书也设置了 我司域名:www.minsu6.com,移动端:m.minsu6.com [图片][图片][图片]
你的小程序"大使会客厅",提审时间2025-07-12 18:18:51,代码发布审核未通过,原因如下: 1:服务类目"工具-备忘录_"与你提交代码审核时设置的功能页面内容不一致: (1):你好,你的小程序涉及时政信息服务,请补充选择:时政信息-时政信息类目。 此小程序为我公司用来发布自己举办的活动的新闻,活动,活动报名等功能。请给予解决。 谢谢
[图片]