Browse Source

完成店铺二维码

wzy 10 months ago
parent
commit
b35918a017

+ 1 - 0
package.json

@@ -25,6 +25,7 @@
 		"normalize.css": "7.0.0",
 		"nprogress": "0.2.0",
 		"path-to-regexp": "2.4.0",
+		"qrcode": "^1.5.3",
 		"screenfull": "^5.0.2",
 		"swiper": "^5.4.5",
 		"vue": "2.6.10",

+ 1 - 0
src/views/customer/customerList/index.vue

@@ -60,6 +60,7 @@
           show-overflow-tooltip
         />
         <el-table-column prop="labelName" label="客户标签" show-overflow-tooltip />
+        <el-table-column prop="userGrade" label="客户等级" show-overflow-tooltip />
         <el-table-column label="操作" show-overflow-tooltip fixed="right" width="200">
           <template slot-scope="scope">
             <div class="btnList">

+ 3 - 3
src/views/liveMenu/liveRoom/index.vue

@@ -767,13 +767,13 @@ export default {
 </script>
 
 <style lang="scss" scpoed>
-img {
+.liveRoomPage {
+	padding: 32px 20px;
+  img {
 	width: 100px;
 	height: 100px;
 }
 
-.liveRoomPage {
-	padding: 32px 20px;
 
 	nav {
 		.search {

+ 4 - 1
src/views/order/pending/index.vue

@@ -20,6 +20,7 @@
                   <el-option label="买家账户" value="2" />
                   <el-option label="收件人姓名" value="3" />
                   <el-option label="收件人手机号" value="4" />
+                  <el-option label="下单号码" value="6" />
                   <!-- <el-option label="商品ID" value="5" /> -->
                 </el-select>
               </el-input>
@@ -56,10 +57,12 @@
           <el-table-column label="订单id" width="220">
             <template slot-scope="scope">{{ scope.row.orderId }}</template>
           </el-table-column>
+          <el-table-column prop="orderFormid" label="订单编号" width="220" />
+          <el-table-column prop="customerPhone" label="下单号码" width="220" />
           <el-table-column prop="scanType" label="订单类型" show-overflow-tooltip>
             <template slot-scope="scope">
               <span v-if="scope.row.scanType == 1">常规订单</span>
-              <span v-if="scope.row.scanType == 2">商家收款订单(扫码)</span>
+              <span v-if="scope.row.scanType == 2">收款订单</span>
             </template>
           </el-table-column>
           <el-table-column prop="price" label="支付金额(元)" width="220" />

+ 7 - 12
src/views/shop/paymentCode/index.vue

@@ -111,7 +111,7 @@ export default {
                 height: this.$refs.businessCardCanvas?.offsetHeight
             }).then((canvas) => {
                 this.canvasImg = canvas.toDataURL('image/png');
-                console.log(this.canvasImg);
+                // console.log(this.canvasImg);
                 this.srcList.push(this.canvasImg)
             }).catch(() => {
                 console.log("生成图片错误");
@@ -123,14 +123,7 @@ export default {
                 cancelButtonText: '取消',
                 type: 'warning'
             }).then(() => {
-                this.setImgSize(662, 795)
-                // const filename = `${this.codeInfo.shopName}的商家收款码.png`
-                // const link = document.createElement('a')
-                // link.href = this.canvasImg
-                // link.download = filename
-                // document.body.appendChild(link)
-                // link.click()
-                // document.body.removeChild(link)
+                this.setImgSize(463, 595)
             }).catch(() => {
                 this.$message({
                     type: 'info',
@@ -241,11 +234,13 @@ img {
                 width: 100% !important;
                 height: 88px !important;
                 background-color: #fff;
-                margin-top: 80px !important;
+                position: absolute;
+                left: 0;
+                bottom: 0;
                 border-radius: 0 0 9px 9px !important;
                 text-align: center !important;
                 line-height: 88px !important;
-                font-size: 32px !important;
+                font-size: 24px !important;
             }
         }
 
@@ -315,7 +310,7 @@ img {
             }
 
             .explain-text {
-                font-size: 30px;
+                font-size: 28px;
                 color: #000000;
             }
         }

+ 318 - 0
src/views/shop/storeCode/index.vue

@@ -0,0 +1,318 @@
+<template>
+    <div class="storeCode">
+        <div class="paymentCode-left">
+            <div class="paymentCode-title">店铺商家二维码</div>
+            <template v-if="canvasImg == ''">
+                <!-- v-if="canvasImg == ''" -->
+                <div ref="paymentCodeCanvas" id="paymentCodeCanvas">
+                    <div class="paymentCode-img" ref="businessCardCanvas" id="businessCardCanvas">
+                        <div class="paymentCode-img-title">扫码消费有补贴</div>
+                        <div class="img-box">
+                            <img :src="codeInfo.shopCode" alt="">
+                        </div>
+                        <div class="img-button">{{ codeInfo.shopName }}</div>
+                    </div>
+                </div>
+            </template>
+            <template v-else>
+                <div class="paymentCode-img-box">
+                    <el-image style="width: 463px; height: 595px" :src="canvasImg" :preview-src-list="srcList">
+                    </el-image>
+                </div>
+            </template>
+            <div class="paymentCode-open">
+                <div class="open-icon">
+                    <img src="@/assets/images/scan.png" alt="">
+                </div>
+                <div class="open-text">打开微信扫一扫即可进入店铺</div>
+            </div>
+            <div class="paymentCode-btn" @click="downloadCode">下载收款码</div>
+        </div>
+    </div>
+</template>
+
+<script>
+import { shopSysGetById } from "@/api/shopSys"
+import QRCode from 'qrcode';
+//  引入 cookie 的库
+import Cookies from 'js-cookie'
+import html2canvas from 'html2canvas'
+export default {
+    created () {
+        this.generateCode()
+    },
+    data() {
+        return {
+            codeInfo: {
+                shopName:'',
+                shopCode:''
+            },
+            canvasImg: '',
+            srcList: [],
+            //  支持支付方式数据
+            payList: [
+                {
+                    url: require('@/assets/images/mode-img/1.png'),
+                    text: '团蜂佣金'
+                },
+                {
+                    url: require('@/assets/images/mode-img/2.png'),
+                    text: '团蜂代金券'
+                },
+                {
+                    url: require('@/assets/images/mode-img/3.png'),
+                    text: '建行支付'
+                },
+                {
+                    url: require('@/assets/images/mode-img/4.png'),
+                    text: '团蜂交易金'
+                },
+                {
+                    url: require('@/assets/images/mode-img/5.png'),
+                    text: '微信支付'
+                },
+                {
+                    url: require('@/assets/images/mode-img/6.png'),
+                    text: '支付宝'
+                },
+            ],
+            //  没有 logo 的二维码图片
+            qCodeImg: '',
+            shopLogo:''
+        }
+    },
+    // updated() {
+    // },
+    methods: {
+        //  生成二维码
+        async setQRcode() {
+            //  https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/shop/shop-detail?shopId=494
+            //  获取本地存储的商家 id
+            let shopId = Cookies.get('shopID');
+            let urlCode = `https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/shop/shop-detail?shopId=${shopId}`
+            //  根据 qcode 生成二维码链接
+            // let imgCode = await QRCode.toDataURL(`https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/shop/shop-detail?shopId=${shopId}`)
+            // console.log(imgCode);
+            const qrCodeCanvas = document.createElement('canvas');
+            qrCodeCanvas.width = 300; // 根据需要调整二维码尺寸
+            qrCodeCanvas.height = 300; // 根据需要调整二维码尺寸
+            await QRCode.toCanvas(qrCodeCanvas, urlCode);
+            const ctx = qrCodeCanvas.getContext('2d');
+            const logo = new Image();
+            //  本地头像
+            logo.src = this.shopLogo;
+            //  解决跨域 重要
+            logo.setAttribute('crossOrigin', 'anonymous');
+            logo.onload = () => {
+                const logoSize = qrCodeCanvas.width * 0.26; // 根据需要调整logo尺寸
+                const logoX = (qrCodeCanvas.width - logoSize) / 2;
+                const logoY = (qrCodeCanvas.height - logoSize) / 2;
+                // 绘制二维码
+                ctx.drawImage(logo, logoX, logoY, logoSize, logoSize);
+                // 将生成的二维码插入到页面中
+                this.codeInfo.shopCode = qrCodeCanvas.toDataURL();
+                this.$nextTick(()=>{
+                    this.generateImage()
+                })
+            };
+        },
+        async generateCode() {
+            const res = await shopSysGetById({ })
+            this.codeInfo.shopName =  res.data.shopName
+            this.shopLogo =  res.data.shopLogo
+            //  生成 qCode 二维码
+            this.setQRcode()
+        },
+        generateImage() {
+            html2canvas(this.$refs.paymentCodeCanvas, {
+                dpi: 300,
+                useCORS: false,
+                allowTaint: true,
+                logging: false,
+                scale: 1,
+                windowHeight: this.$refs.businessCardCanvas?.offsetHeight,
+                width: this.$refs.businessCardCanvas?.offsetWidth,
+                height: this.$refs.businessCardCanvas?.offsetHeight
+            }).then((canvas) => {
+                this.canvasImg = canvas.toDataURL('image/png');
+                this.srcList.push(this.canvasImg)
+            }).catch(() => {
+                console.log("生成图片错误");
+            });
+        },
+        downloadCode() {
+            this.$confirm('您确定需要下载商家二维码吗?', '提示', {
+                confirmButtonText: '确定',
+                cancelButtonText: '取消',
+                type: 'warning'
+            }).then(() => {
+                this.setImgSize(463, 595)
+            }).catch(() => {
+                this.$message({
+                    type: 'info',
+                    message: '取消下载成功'
+                });
+            });
+        },
+        //  设置图片大小
+        setImgSize(width, height) {
+            const canvas = document.createElement('canvas')
+            const ctx = canvas.getContext('2d')
+
+            // 设置canvas尺寸
+            canvas.width = width
+            canvas.height = height
+
+            // 绘制图片到canvas上
+            const img = new Image()
+            img.src = this.canvasImg
+            img.onload = () => {
+                ctx.drawImage(img, 0, 0, canvas.width, canvas.height)
+
+                // 将canvas内容转换为base64格式的图片数据
+                const imageData = canvas.toDataURL('image/png')
+
+                // 创建下载链接并设置文件名
+                const filename = `${this.codeInfo.shopName}的店铺二维码.png`
+                const link = document.createElement('a')
+                link.href = imageData
+                link.download = filename
+
+                // 将下载链接添加到页面并点击下载
+                document.body.appendChild(link)
+                link.click()
+                document.body.removeChild(link)
+            }
+        },
+    }
+}
+</script>
+
+<style lang="scss" scoped>
+* {
+    margin: 0;
+    padding: 0;
+}
+
+img {
+    margin: 0;
+    padding: 0;
+}
+
+.storeCode {
+    display: flex;
+    justify-content: center;
+    gap: 117px;
+    padding-top: 50px;
+
+    .paymentCode-left {
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        flex-direction: column;
+
+        .paymentCode-title {
+            font-size: 28px;
+            color: #000;
+            font-weight: 500;
+            margin-bottom: 20px;
+        }
+
+        .paymentCode-img {
+            width: 463px;
+            height: 595px;
+            display: flex;
+            flex-direction: column;
+            align-items: center;
+            background-color: #EF530E;
+            border-radius: 10px;
+            position: relative;
+
+            .paymentCode-img-title {
+                display: block !important;
+                width: 100%;
+                height: 76px !important;
+                color: #fff !important;
+                font-size: 50px !important;
+                margin: 32px 0 24px !important;
+                font-weight: 700 !important;
+                font-style: italic !important;
+                box-sizing: border-box;
+                text-align: center;
+                line-height: 76px;
+            }
+
+            .img-box {
+                width: 300px;
+                height: 300px;
+
+                img {
+                    width: 100% !important;
+                    height: 100% !important;
+                }
+            }
+
+
+            .img-button {
+                width: 100% !important;
+                height: 88px !important;
+                background-color: #fff;
+                position: absolute;
+                left: 0;
+                bottom: 0;
+                border-radius: 0 0 9px 9px !important;
+                text-align: center !important;
+                line-height: 88px !important;
+                font-size: 24px !important;
+            }
+        }
+
+        .paymentCode-img-box {
+            width: 463px;
+            height: 595px;
+
+            img {
+                width: 100% !important;
+                height: 100% !important;
+            }
+        }
+
+        .paymentCode-open {
+            display: flex;
+            align-items: center;
+            gap: 20px;
+            margin-top: 30px;
+
+            .open-icon {
+                width: 50px;
+                height: 50px;
+
+                img {
+                    width: 100% !important;
+                    height: 100% !important;
+                }
+            }
+
+            .open-text {
+                font-size: 28px;
+                color: #3D3D3D;
+            }
+        }
+
+        .paymentCode-btn {
+            width: 315px;
+            height: 67px;
+            background-color: #EF530E;
+            color: #fff;
+            border-radius: 10px;
+            text-align: center;
+            line-height: 67px;
+            margin-top: 32px;
+            font-size: 28px;
+            cursor: pointer;
+        }
+    }
+
+
+}
+</style>