|
@@ -42,6 +42,11 @@
|
|
|
>H5统计链接</el-button
|
|
|
>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item v-if="year === '2022'">
|
|
|
+ <el-button type="primary" @click="onCreateQRCode2"
|
|
|
+ >杭州H5统计链接</el-button
|
|
|
+ >
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<auth auths="export/organDoubleEleven2021Statis">
|
|
|
<el-button type="primary" @click="onExport">导出</el-button>
|
|
@@ -273,6 +278,8 @@ export default {
|
|
|
},
|
|
|
qrcodeStatus: false,
|
|
|
codeUrl: "",
|
|
|
+ qrcodeStatus2: false,
|
|
|
+ codeUrl2: "",
|
|
|
year: "2021",
|
|
|
};
|
|
|
},
|
|
@@ -341,6 +348,11 @@ export default {
|
|
|
this.codeUrl = vaildTeachingUrl() + "/#/statistic-20211111";
|
|
|
}
|
|
|
},
|
|
|
+ onCreateQRCode2(row) {
|
|
|
+ // 生成报名二维码
|
|
|
+ this.qrcodeStatus = true;
|
|
|
+ this.codeUrl = vaildTeachingUrl() + "/#/statistic-20221111?type=hz";
|
|
|
+ },
|
|
|
gotoDetail(row) {
|
|
|
// console.log('跳转详情')
|
|
|
if (this.year === "2022") {
|