|
@@ -27,7 +27,10 @@
|
|
|
</div>
|
|
|
<div class="open-text">打开微信扫一扫可付款</div>
|
|
|
</div>
|
|
|
- <div class="paymentCode-btn" @click="downloadCode">下载收款码</div>
|
|
|
+ <div style="display: flex;align-items: center;justify-content: space-between;">
|
|
|
+ <div class="paymentCode-btn" @click="downloadCode">下载收款码</div>
|
|
|
+ <div v-if="codeInfo.codeId" class="paymentCode-btn" @click="handleRenewCode">更新收款码</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="paymentCode-right">
|
|
|
<div class="paymentCode-explain">
|
|
@@ -50,7 +53,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getQrcode } from "@/api/shop"
|
|
|
+import { getQrcode, updatePaymentCodeGenerate } from "@/api/shop"
|
|
|
import html2canvas from 'html2canvas'
|
|
|
export default {
|
|
|
created() {
|
|
@@ -135,6 +138,22 @@ export default {
|
|
|
});
|
|
|
});
|
|
|
},
|
|
|
+ handleRenewCode() {
|
|
|
+ this.$confirm('您确定需要更新商家二维码吗?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(async () => {
|
|
|
+ await updatePaymentCodeGenerate({ codeId: this.codeInfo.codeId })
|
|
|
+ this.generateCode()
|
|
|
+ this.$message({ message: '操作成功!', type: 'success' })
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消更新成功'
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
// 设置图片大小
|
|
|
setImgSize(width, height) {
|
|
|
const canvas = document.createElement('canvas')
|
|
@@ -287,8 +306,9 @@ img {
|
|
|
}
|
|
|
|
|
|
.paymentCode-btn {
|
|
|
- width: 315px;
|
|
|
+ width: 215px;
|
|
|
height: 67px;
|
|
|
+ margin: 0 8px;
|
|
|
background-color: #EF530E;
|
|
|
color: #fff;
|
|
|
border-radius: 10px;
|