|
@@ -84,7 +84,7 @@
|
|
|
v-if='this.majorId'
|
|
|
@click='openUrl'>打开二维码</el-button>
|
|
|
<el-button plain
|
|
|
- @click="exportis">导出</el-button>
|
|
|
+ @click="exportis">导出</el-button>
|
|
|
</el-form>
|
|
|
<!-- 提示语 -->
|
|
|
<p class="subMsg"
|
|
@@ -352,9 +352,9 @@ export default {
|
|
|
}
|
|
|
// 判断乐团是否已经开启缴费
|
|
|
if (status == 2 || status == 3 || status == 4) {
|
|
|
- this.paymentStatus = false
|
|
|
+ this.paymentStatus = false
|
|
|
} else {
|
|
|
- this.paymentStatus = true
|
|
|
+ this.paymentStatus = true
|
|
|
}
|
|
|
this.majorId = id;
|
|
|
// 发请求 获取学生列表数据
|
|
@@ -507,12 +507,12 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
qrcode () {
|
|
|
-
|
|
|
+ let date = new Date().getTime()
|
|
|
setTimeout(() => {
|
|
|
this.qrcodes = new QRCode(document.getElementById("qrCode"), {
|
|
|
width: 200, // 设置宽度,单位像素
|
|
|
height: 200, // 设置高度,单位像素
|
|
|
- text: `https://pay.dayaedu.com/#/order?classId=${this.majorId}&schoolName=${this.actionTearm}` // 设置二维码内容或跳转地址
|
|
|
+ text: `https://pay.dayaedu.com/#/order?classId=${this.majorId}&schoolName=${this.actionTearm}&?${date}` // 设置二维码内容或跳转地址
|
|
|
})
|
|
|
}, 100)
|
|
|
if (document.getElementById("qrCode")) {
|
|
@@ -525,8 +525,8 @@ export default {
|
|
|
// this.tableId = curTbl;
|
|
|
// console.log(curTbl);
|
|
|
console.log(this.tableData)
|
|
|
- if(this.tableData.length <= 0) {
|
|
|
- return false
|
|
|
+ if (this.tableData.length <= 0) {
|
|
|
+ return false
|
|
|
}
|
|
|
this.method5('tableid');
|
|
|
},
|