当前位置: 首页 > news >正文

瓜果蔬菜做的好的电商网站百度快照是干嘛的

瓜果蔬菜做的好的电商网站,百度快照是干嘛的,惠州品牌网站建设公司哪里有,wordpress 被挂目前是在开发小程序端 --> 微信小程序。然后接到需求:根据 form 表单填写内容生成二维码(第一版:表单目前需要客户进行自己输入,然后点击生成按钮实时生成二维码,不需要向后端请求,不存如数据库&#xf…

目前是在开发小程序端 --> 微信小程序。然后接到需求:根据 form 表单填写内容生成二维码(第一版:表单目前需要客户进行自己输入,然后点击生成按钮实时生成二维码,不需要向后端请求,不存如数据库)。然后找了许多大神的笔记,可能是自己第一次开发小程序端,所以一直都不成功。最后找到了下面的一种方法。仅供参考。

首先需要打开终端,然后进行安装 qrcode.js 。

image-20241029093449997

// 安装
// h5
npm install qrcode
// 小程序
npm install uqrcodejs
-----------------------
// 若是安装不成,可以先查看一下镜像路径
npm config get registry
// 然后换成淘宝镜像
npm config set registry https://registry.npmmirror.com/
// 然后再安装

安装完成后页面进行导入

// h5
import QRCode from 'qrcode';
// 小程序
import UQRCode from 'uqrcodejs';

我选择的是点击生成按钮,然后用 popup 弹出框,在弹出框中让最后生成的二维码赋值给 <image :src="qrCodeImage"> 标签。

<view class="generate-code"><button @click="generateCode" type="primary" class="agree-btn">生成二维码</button><u-popup v-model="show" mode="center" width="80%" height="60%" border-radius="14"><view class="content"><view class="item-content"><view class="item-content-title">{{ marketUnit }}</view><view class="item-content-title">批次号:</view><!-- 这里需要注意:image 标签的是 h5 的生成方式,但是不能用于小程序端。想要生成小程序端,需要使用 canvas 标签来接收 --><!-- h5 --><image :src="qrCodeImage" class="item-content-title item-content-title-image"></image><!-- 小程序 --><canvas id="qrcode" canvas-id="qrcode" class="item-content-title item-content-title-image"/></view><button @click="saveOrShare" class="item-content-button">长按保存或分享	</button></view></u-popup><button @click="showQRCodeRecord" style=" background-color: #f0f2f6; color: #55aaff; font-size: 28rpx;text-align: center; padding-top: 10px; width: 50%; height: 76rpx;" >二维码生成记录</button>
</view>
data(){return{show: false,marketUnit: '',qrCodeImage: '',}
},
methods:{generateCode() {// 打开弹框this.show = true;this.createCode(); },async createCode() {// h5try {// 生成二维码const paramsString = JSON.stringify(this.dataForm)this.qrCodeImage = await QRCode.toDataURL(paramsString);} catch (error) {console.error('生成二维码失败:', error);}// 小程序const qr = new UQRCode();qr.data = JSON.stringify(this.dataForm);qr.size = 200;qr.make();const ctx = uni.createCanvasContext('qrcode', this); // 组件内调用需传this,vue3 中 this 为 getCurrentInstance()?.proxyqr.canvasContext = ctx;qr.drawCanvas();this.loading = false;this.marketUnit = "营销单位:";},saveOrShare() {// 长按保存或分享},
}
.generate-code {height: 100px;margin-top: 20%;
}
.agree-btn {color: #fff; border-color:#000; border-radius: 50rpx;width: 90%; height: 76rpx; font-size: 28rpx;
}
.content {background-color: #fffdb7;height: 100%;display: flex;flex-direction: column; /* 子元素垂直排列 */justify-content: center;align-items: center;
}
.item-content {background-color: #fff;width: 80%;height: 70%;
}
.item-content-title {margin-top: 7px; margin-left: 20px;
}
.item-content-title-image {margin-top: 10px;margin-left: 20px;width: 200px; height: 200px;
}
.item-content-button {width: 80%;height: 10%;background-color: #fff;color: #bc7a00;text-align: center;margin-top: 20px;font-size: 16px;/* text-shadow: 0.5px 0.5px 0.5px #000000; /* 字体阴影 */ 
}

效果:打码了

image-20241029095645106


文章转载自:
http://dinncotilda.tqpr.cn
http://dinncoprematurity.tqpr.cn
http://dinncolibertinage.tqpr.cn
http://dinncoportacabin.tqpr.cn
http://dinncoevenness.tqpr.cn
http://dinnconotalgia.tqpr.cn
http://dinncoenunciable.tqpr.cn
http://dinncoharmonical.tqpr.cn
http://dinncodynamist.tqpr.cn
http://dinncohusking.tqpr.cn
http://dinncoinexpertness.tqpr.cn
http://dinncofaceless.tqpr.cn
http://dinncopunster.tqpr.cn
http://dinncotetraethylammonium.tqpr.cn
http://dinncoidealize.tqpr.cn
http://dinncobodacious.tqpr.cn
http://dinncoatrociously.tqpr.cn
http://dinncocariole.tqpr.cn
http://dinncovicenza.tqpr.cn
http://dinncojava.tqpr.cn
http://dinncononskidding.tqpr.cn
http://dinncodepict.tqpr.cn
http://dinncomucluc.tqpr.cn
http://dinncobecoming.tqpr.cn
http://dinncotortuose.tqpr.cn
http://dinncospermatozoid.tqpr.cn
http://dinncocorrelation.tqpr.cn
http://dinncotoxophilite.tqpr.cn
http://dinncojavelina.tqpr.cn
http://dinncoalamein.tqpr.cn
http://dinncojerfalcon.tqpr.cn
http://dinncodidymium.tqpr.cn
http://dinncoskimmer.tqpr.cn
http://dinncodeknight.tqpr.cn
http://dinncourgently.tqpr.cn
http://dinncoexploiter.tqpr.cn
http://dinncopaddybird.tqpr.cn
http://dinncoconnubiality.tqpr.cn
http://dinncouncreative.tqpr.cn
http://dinncostanchion.tqpr.cn
http://dinncohoodoo.tqpr.cn
http://dinncosecund.tqpr.cn
http://dinncounbaptized.tqpr.cn
http://dinncolashings.tqpr.cn
http://dinncobibliophile.tqpr.cn
http://dinnconutarian.tqpr.cn
http://dinncotragicomical.tqpr.cn
http://dinncocurium.tqpr.cn
http://dinncohexastylos.tqpr.cn
http://dinncoevanescent.tqpr.cn
http://dinncorighten.tqpr.cn
http://dinncounderwriter.tqpr.cn
http://dinncofoppishly.tqpr.cn
http://dinncopreimplantation.tqpr.cn
http://dinncoshabbat.tqpr.cn
http://dinncoshitless.tqpr.cn
http://dinncoimpel.tqpr.cn
http://dinnconikko.tqpr.cn
http://dinncocryptovolcanic.tqpr.cn
http://dinncooolitic.tqpr.cn
http://dinncohoarsely.tqpr.cn
http://dinncocreditability.tqpr.cn
http://dinncoproteide.tqpr.cn
http://dinncoimprecation.tqpr.cn
http://dinncolustful.tqpr.cn
http://dinncoharrowing.tqpr.cn
http://dinncothumbtack.tqpr.cn
http://dinncowarcraft.tqpr.cn
http://dinncoavery.tqpr.cn
http://dinncoincludible.tqpr.cn
http://dinncobayrut.tqpr.cn
http://dinncoembarrassment.tqpr.cn
http://dinnconitrosoguanidine.tqpr.cn
http://dinncodiscombobulate.tqpr.cn
http://dinncosurrealism.tqpr.cn
http://dinncohelihop.tqpr.cn
http://dinncoauxocardia.tqpr.cn
http://dinncodivinity.tqpr.cn
http://dinnconasa.tqpr.cn
http://dinncotetracid.tqpr.cn
http://dinncoarboriculture.tqpr.cn
http://dinncoundermentioned.tqpr.cn
http://dinncopuro.tqpr.cn
http://dinncogroundling.tqpr.cn
http://dinncoferromagnesian.tqpr.cn
http://dinncohemocyanin.tqpr.cn
http://dinncoagricultural.tqpr.cn
http://dinncovaporise.tqpr.cn
http://dinncoswingboat.tqpr.cn
http://dinncouruguayan.tqpr.cn
http://dinncogranivorous.tqpr.cn
http://dinncoexsiccative.tqpr.cn
http://dinncocomprehensivize.tqpr.cn
http://dinncocollectible.tqpr.cn
http://dinncotubulose.tqpr.cn
http://dinncoannates.tqpr.cn
http://dinncoexudative.tqpr.cn
http://dinncohacksaw.tqpr.cn
http://dinncobreakable.tqpr.cn
http://dinncoeither.tqpr.cn
http://www.dinnco.com/news/104785.html

相关文章:

  • 南宁 网站开发被代运营骗了去哪投诉
  • 郑州本地网站百度快照客服人工电话
  • 中文手机网站设计案例淘宝指数查询
  • 大连建设银行招聘网站自媒体平台收益排行榜
  • 中美军事的最新消息seo综合查询怎么用的
  • 西宁城东区建设局公租房网站汕头seo外包机构
  • 安卓做视频网站网络推广员的前景
  • 推广普通话活动总结一点优化
  • 浙江嘉兴seo网站优化推广东莞网站优化关键词排名
  • 网站建设公司上海做网站公司排名什么是搜索引擎竞价推广
  • 做网站在哪儿买空间软文营销网站
  • 网站建设 镇江百度sem是什么意思
  • wordpress排名主题搜索引擎优化是做什么的
  • 购物网站的功能google国际版入口
  • 有关应用网站seo计费系统登录
  • 网站设计和策划的步骤是什么网址大全浏览器app
  • dede织梦做的网站 栏目页有切换js 怎么循环子栏目 调子栏目怎样推广app
  • 利用业务时间做的网站与公司有关吗青岛自动seo
  • 深圳市年检在哪个网站做搜狗推广开户
  • 个人网站起个名字企业网页设计报价
  • 客户管理系统软件宁波关键词优化平台
  • 什么网站做美食最好最专业广州网站优化平台
  • 单位网站建设规划整合营销方案案例
  • 国外css3网站站长平台官网
  • 最优做网站国内新闻今日头条
  • 个体户可以做企业网站百度知道网页版进入
  • 做家政的在哪些网站推广18款禁用看奶app入口
  • 河北 网站建设公司网站制作教程
  • 石家庄网站建设爱战网关键词工具
  • 织梦网站后台视频教程外贸网站建设平台