优化cdn动态加载管理端,修复砍价金额bug,删除部分不规范代码

This commit is contained in:
lemon橪
2021-09-01 10:11:12 +08:00
parent 84cfb26512
commit 71e4c49c3e
59 changed files with 1181 additions and 1527 deletions

View File

@@ -41,7 +41,6 @@
<script>
import * as API_Other from "@/api/other.js";
import QRCode from "qrcodejs2";
export default {
data() {
return {
@@ -66,7 +65,7 @@ export default {
// selected: false,
// },
],
qrcode: "", // 二维码
submitWay: {
// 表单信息
pageShow: this.$route.query.type || false,
@@ -169,20 +168,6 @@ export default {
})
.catch((error) => {});
},
creatQrCode() {
if (this.qrcode) {
return false;
}
// this.qrcode = new QRCode(this.$refs.qrCodeUrl, {
// text: "https://www.baidu.com", // 需要转换为二维码的内容
// width: 100,
// height: 100,
// colorDark: "#000000",
// colorLight: "#ffffff",
// correctLevel: QRCode.CorrectLevel.H,
// });
},
},
};
</script>