111
This commit is contained in:
parent
e681aeda25
commit
c252e08d6a
|
@ -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,
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -37,8 +37,8 @@
|
|||
v-model="channelInfo.storeHide"
|
||||
active-text="展示"
|
||||
inactive-text="隐藏"
|
||||
:active-value="true"
|
||||
:inactive-value="false"
|
||||
:active-value="false"
|
||||
:inactive-value="true"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注:" prop="remark">
|
||||
|
|
|
@ -78,12 +78,19 @@
|
|||
<div class="tj" v-show="titindex==0">
|
||||
<div class="mintit">基础信息</div>
|
||||
<div class="infobox">
|
||||
<div class="img_box">
|
||||
<div class="img_box" style="right: 100px;">
|
||||
<!-- <canvas ref="qrcodeCanvas"></canvas> -->
|
||||
<!-- <div id="payQrcode"></div> -->
|
||||
|
||||
<div id="qrcode" ref="qrcode" style="margin-bottom: 20px;"></div>
|
||||
<el-button type="primary" @click="downloadimg()" style="margin-left: 30px;" >下载图片</el-button>
|
||||
<el-button type="primary" @click="downloadimg()" style="margin-left: 0px;" >下载图片</el-button>
|
||||
</div>
|
||||
<div class="img_box" style="right: -10px;">
|
||||
<!-- <canvas ref="qrcodeCanvas"></canvas> -->
|
||||
<!-- <div id="payQrcode"></div> -->
|
||||
|
||||
<img :src="chooselist.qrCodeUrlCircleBlue" alt="" style="margin-bottom: 20px;">
|
||||
<el-button type="primary" @click="downloadImage(chooselist.qrCodeUrlCircleBlue)" style="margin-left: 0px;" >下载图片</el-button>
|
||||
</div>
|
||||
<div class="infoli">
|
||||
<div class="li">渠道名称:{{ chooselist.name }} </div>
|
||||
|
@ -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 {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user