diff --git a/.env.development b/.env.development index 2a5e48a..275d6fc 100644 --- a/.env.development +++ b/.env.development @@ -4,8 +4,8 @@ ENV = 'development' # base api # VUE_APP_BASE_API = '/dev-api' # VUE_APP_BASE_API = 'http://106.75.49.247:20400' -VUE_APP_BASE_API = 'https://yruibao.com/admin' -# VUE_APP_BASE_API = 'http://192.168.2.26:20401' +# VUE_APP_BASE_API = 'https://yruibao.com/admin' +VUE_APP_BASE_API = 'http://192.168.2.26:20401' # vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable, diff --git a/.env.production b/.env.production index 7119b75..4cfe70a 100644 --- a/.env.production +++ b/.env.production @@ -4,5 +4,5 @@ ENV = 'production' # base api # VUE_APP_BASE_API = '/prod-api' # VUE_APP_BASE_API = 'http://106.75.49.247:20400' -VUE_APP_BASE_API = 'https://yruibao.com/admin' -# VUE_APP_BASE_API = 'http://192.168.2.26:20401' +# VUE_APP_BASE_API = 'https://yruibao.com/admin' +VUE_APP_BASE_API = 'http://192.168.2.26:20401' diff --git a/src/api/marketing.js b/src/api/marketing.js index 7bc639f..44ddecb 100644 --- a/src/api/marketing.js +++ b/src/api/marketing.js @@ -79,7 +79,7 @@ export function userUpdateApi(params, data) { */ export function changeRepaymentStatus(params,data) { return request({ - url: `admin/user/installmentBill/update/?id=${params}`, + url: `admin/user/installmentBill/offlineRepayment/?id=${params}`, method: 'post', // params, data, diff --git a/src/views/channel/creatChannel.vue b/src/views/channel/creatChannel.vue index 789b186..154ccfd 100644 --- a/src/views/channel/creatChannel.vue +++ b/src/views/channel/creatChannel.vue @@ -37,8 +37,8 @@ v-model="channelInfo.storeHide" active-text="展示" inactive-text="隐藏" - :active-value="true" - :inactive-value="false" + :active-value="false" + :inactive-value="true" /> diff --git a/src/views/channel/index.vue b/src/views/channel/index.vue index 9696d39..868e450 100644 --- a/src/views/channel/index.vue +++ b/src/views/channel/index.vue @@ -78,12 +78,19 @@
基础信息
-
+
- 下载图片 + 下载图片 +
+
+ + + + + 下载图片
渠道名称:{{ chooselist.name }}
@@ -254,6 +261,22 @@ export default { render: qRender, }); }, + async downloadImage(imageUrl) { + try { + const response = await fetch(imageUrl); + const blob = await response.blob(); + const url = window.URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = 'image.jpg'; // 可以根据需要修改文件名 + document.body.appendChild(a); + a.click(); + window.URL.revokeObjectURL(url); + document.body.removeChild(a); + } catch (error) { + console.error('下载图片出错:', error); + } + }, downloadimg() { // 获取生成二维码的canvas元素 const canvas = document.querySelector("#qrcode canvas"); @@ -355,7 +378,7 @@ export default { // await this.generateQRCode(row.url) if (this.$refs.qrcode) this.$refs.qrcode.innerHTML = ""; this.$nextTick(function () { - this.qrcode(150, 150, row.url, "canvas"); + this.qrcode(100, 100, row.url, "canvas"); console.log(QRCode.CorrectLevel.L); }); @@ -506,12 +529,12 @@ export default { .img_box{ right: 70px; position: absolute; - width: 100px; - height: 100px; + width: 80px; + height: 80px; img{ - width: 150px; - height: 150px; - background-color: red; + width: 100px; + height: 100px; + // background-color: red; } } .infoli { diff --git a/src/views/examine/index.vue b/src/views/examine/index.vue index d0e9711..76d91cf 100644 --- a/src/views/examine/index.vue +++ b/src/views/examine/index.vue @@ -3,26 +3,18 @@
- - - - {{ - item.label - }} + + + + {{ + item.label + }}
-
剩余待领取订单数量:{{ - allOrderNum }}
+
剩余待领取订单数量:{{ + allOrderNum }}
@@ -31,144 +23,100 @@ - + - 确认领取 + 确认领取 - - - 全部 {{ '(' + orderChartType.all ? orderChartType.all : 0 + ')' - }} - 未支付 {{ '(' + orderChartType.unPaid ? - orderChartType.unPaid : 0 + ')' - }} - 待审核 {{ '(' + orderChartType.audit ? orderChartType.audit : 0 - + ')' - }} + + + 全部 {{ '(' + orderChartType.all ? orderChartType.all : 0 + + ')' + }} + 未支付 {{ '(' + orderChartType.unPaid ? + orderChartType.unPaid : 0 + ')' + }} + 待审核 {{ '(' + orderChartType.audit ? orderChartType.audit + : 0 + + ')' + }} 待签约 {{ '(' + orderChartType.awaitSign ? - orderChartType.awaitSign : 0 + - ')' }} + orderChartType.awaitSign : 0 + + ')' }} 未发货 {{ '(' + orderChartType.notShipped ? - orderChartType.notShipped : 0 - + ')' }} + orderChartType.notShipped : 0 + + ')' }} 使用中 {{ '(' + orderChartType.inUse ? - orderChartType.inUse : 0 + ')' - }} + orderChartType.inUse : 0 + ')' + }} 待评价 {{ '(' + orderChartType.bargain ? - orderChartType.bargain : 0 + ')' - }} + orderChartType.bargain : 0 + ')' + }} 交易完成 {{ '(' + orderChartType.complete ? - orderChartType.complete : 0 + - ')' }} - 待核销 + orderChartType.complete : 0 + + ')' }} + 待核销 {{ '(' + orderChartType.toBeWrittenOff ? orderChartType.toBeWrittenOff : 0 + ')' }} - 退款中 {{ '(' + orderChartType.refunding ? - orderChartType.refunding : 0 + - ')' }} - 已退款 {{ '(' + orderChartType.refunded ? - orderChartType.refunded : 0 + ')' - }} + 退款中 {{ '(' + orderChartType.refunding ? + orderChartType.refunding : 0 + + ')' }} + 已退款 {{ '(' + orderChartType.refunded ? + orderChartType.refunded : 0 + ')' + }} 已驳回 {{ '(' + orderChartType.auditReject ? - orderChartType.auditReject - : 0 + ')' }} - 已删除 {{ '(' + orderChartType.deleted ? - orderChartType.deleted : 0 + ')' - }} - 已审核 {{ '(' + orderChartType.deleted ? - orderChartType.deleted : 0 + ')' - }} + orderChartType.auditReject + : 0 + ')' }} + 已删除 {{ '(' + orderChartType.deleted ? + orderChartType.deleted : 0 + ')' + }} + 已审核 {{ '(' + orderChartType.deleted ? + orderChartType.deleted : 0 + ')' + }} - - - {{ - item.text - }} + + + {{ + item.text + }} - + -
+
- - + + - - + +
- 导出 + 导出
- + - + --> + - +