|
|
|
@ -0,0 +1,453 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container" ref="main">
|
|
|
|
|
<div ref="search">
|
|
|
|
|
<MyInput v-model="queryParams.name" @clickSearch="handleSearch" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
:height="tableHeigth + 'px'"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="序号"
|
|
|
|
|
align="center"
|
|
|
|
|
type="index"
|
|
|
|
|
prop="id"
|
|
|
|
|
width="55"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="活动名称" align="center" prop="name" />
|
|
|
|
|
<el-table-column label="志愿者" align="center" prop="userName" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="活动参与时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="activityTime"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="活动时长" align="center" prop="points">
|
|
|
|
|
<template slot-scope="scope"> {{ scope.row.points }} 小时 </template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="活动积分" align="center" prop="points" />
|
|
|
|
|
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span
|
|
|
|
|
:style="{
|
|
|
|
|
color: scope.row.issuanceStatus ? '#67C23A' : '#F56C6C',
|
|
|
|
|
}"
|
|
|
|
|
>
|
|
|
|
|
{{ scope.row.issuanceStatus ? "已发放" : "未发放" }}
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="操作"
|
|
|
|
|
align="center"
|
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button size="mini" type="text" @click="handleInfo(scope.row)"
|
|
|
|
|
>查看</el-button
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="handleFabu(scope.row)"
|
|
|
|
|
v-if="scope.row.issuanceStatus == false"
|
|
|
|
|
>发放</el-button
|
|
|
|
|
> -->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 发布对话框 -->
|
|
|
|
|
<el-dialog :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
<div slot="title" class="dialog-title">
|
|
|
|
|
<span class="title-line"></span>
|
|
|
|
|
{{ title }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-box">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="info-form-title">
|
|
|
|
|
<span></span>
|
|
|
|
|
证书信息
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">活动名称:</div>
|
|
|
|
|
<div class="item-value">{{ form.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">志愿者:</div>
|
|
|
|
|
<div class="item-value">{{ form.userName }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">活动参与时间:</div>
|
|
|
|
|
<div class="item-value">{{ form.activityTime }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">状态:</div>
|
|
|
|
|
<div class="item-value">
|
|
|
|
|
{{ form.issuanceStatus ? "已发放" : "未发放" }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-form-title">
|
|
|
|
|
<span></span>
|
|
|
|
|
收货信息
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">姓名:</div>
|
|
|
|
|
<div class="item-value">{{ form.userName }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">手机号:</div>
|
|
|
|
|
<div class="item-value">{{ form.phonenumber }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
<div class="item-lable">详细地址:</div>
|
|
|
|
|
<div class="item-value">{{ form.mailAddress }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click="cancel">关 闭</el-button>
|
|
|
|
|
<el-button type="warning" @click="submitPaper()"
|
|
|
|
|
>发放纸制证书</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="submitElectron()"
|
|
|
|
|
>发放电子证书</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<!-- 纸制证书 -->
|
|
|
|
|
<el-dialog :visible.sync="infoOpen" width="500px" append-to-body>
|
|
|
|
|
<div slot="title" class="dialog-title">
|
|
|
|
|
<span class="title-line"></span>
|
|
|
|
|
邮政信息
|
|
|
|
|
</div>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
|
<el-form-item label="快递公司" prop="courierCompanies">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.courierCompanies"
|
|
|
|
|
placeholder="请输入快递公司"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="快递单号" prop="trackingNumber">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.trackingNumber"
|
|
|
|
|
placeholder="请输入快递公司"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">提 交</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<!-- 查看 -->
|
|
|
|
|
<el-dialog :visible.sync="infoShow" width="600px" append-to-body>
|
|
|
|
|
<div slot="title" class="dialog-title">
|
|
|
|
|
<span class="title-line"></span>
|
|
|
|
|
查看
|
|
|
|
|
</div>
|
|
|
|
|
<div class="conversionInfo">
|
|
|
|
|
<div class="basicInfo">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<img src="@/assets/images/huodong.png" alt="" />
|
|
|
|
|
<span>活动详情</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info">
|
|
|
|
|
<div class="lists">
|
|
|
|
|
<div class="list-left">
|
|
|
|
|
<div>活动名称:</div>
|
|
|
|
|
<div>{{ form.name }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-right">
|
|
|
|
|
<div>志愿者:</div>
|
|
|
|
|
<div>{{ form.userName }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lists">
|
|
|
|
|
<div class="list-left">
|
|
|
|
|
<div>活动参与时间:</div>
|
|
|
|
|
<div>{{ form.activityTime }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-left">
|
|
|
|
|
<div>状态:</div>
|
|
|
|
|
<div>{{ form.issuanceStatus ? "已发放" : "未发放" }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="logisticsInfo" v-show="form.type == 2">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<img src="@/assets/images/huodong.png" alt="" />
|
|
|
|
|
<span>纸制证书</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info">
|
|
|
|
|
<div class="lists">
|
|
|
|
|
<div class="list-left">
|
|
|
|
|
<div>快递公司:</div>
|
|
|
|
|
<div>{{ form.courierCompanies }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-right">
|
|
|
|
|
<div>快递单号:</div>
|
|
|
|
|
<div>{{ form.trackingNumber }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="logisticsInfo" v-show="form.type == 1">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<img src="@/assets/images/huodong.png" alt="" />
|
|
|
|
|
<span>电子证书</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info zs-box" ref="zs">
|
|
|
|
|
<div class="top-text">
|
|
|
|
|
<span>{{ form.userName }}</span> 先生/女士:
|
|
|
|
|
<p>
|
|
|
|
|
您在苏州工业园区累计志愿服务0小时,感谢您的无私奉献,特发此证,以兹鼓励。
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="bottom-text">
|
|
|
|
|
<div class="lable-value">
|
|
|
|
|
<div class="lable">签发单位:</div>
|
|
|
|
|
<div class="value">苏州工业园区宣传和统战部</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lable-value">
|
|
|
|
|
<div class="lable"></div>
|
|
|
|
|
<div class="value">苏州工业园区新时代文明实践中心</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="lable-value">
|
|
|
|
|
<div class="lable"></div>
|
|
|
|
|
<div class="value">
|
|
|
|
|
{{ $moment().format("YYYY年MM月DD日") }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="zs-z"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="small"
|
|
|
|
|
style="margin-top: 10px"
|
|
|
|
|
@click="downloadContentAsImage()"
|
|
|
|
|
>下载电子证书</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
dsbrecordsList,
|
|
|
|
|
dsbrecordsInfo,
|
|
|
|
|
getYcInfo,
|
|
|
|
|
ycIssue,
|
|
|
|
|
getYcList,
|
|
|
|
|
} from "@/api/volunteer/gxhzs/hdzsff/index.js";
|
|
|
|
|
import html2canvas from "html2canvas";
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
infoShow: false,
|
|
|
|
|
infoOpen: false,
|
|
|
|
|
form: {},
|
|
|
|
|
rules: {
|
|
|
|
|
courierCompanies: [
|
|
|
|
|
{ required: true, message: "请输入快递公司", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
trackingNumber: [
|
|
|
|
|
{ required: true, message: "请输入快递公司", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
open: false,
|
|
|
|
|
title: "",
|
|
|
|
|
tableHeigth: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
tableData: [],
|
|
|
|
|
total: 1,
|
|
|
|
|
queryParams: {
|
|
|
|
|
name: undefined,
|
|
|
|
|
UId: undefined,
|
|
|
|
|
issuanceStatus: true,
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.queryParams.UId = this.$store.getters.userId;
|
|
|
|
|
// //给表格一个固定值
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.tableHeigth =
|
|
|
|
|
this.$refs.main.offsetHeight - 40 - this.$refs.search.offsetHeight - 73;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/**下载电子证书 */
|
|
|
|
|
downloadContentAsImage() {
|
|
|
|
|
const content = this.$refs.zs; // 获取目标<div>的DOM节点
|
|
|
|
|
// 创建一个Canvas元素,并设置宽高等于目标<div>的尺寸
|
|
|
|
|
const canvas = document.createElement("canvas");
|
|
|
|
|
canvas.width = content.offsetWidth;
|
|
|
|
|
canvas.height = content.offsetHeight;
|
|
|
|
|
const context = canvas.getContext("2d");
|
|
|
|
|
// 使用Canvas绘制目标<div>中的内容
|
|
|
|
|
html2canvas(content).then((canvas) => {
|
|
|
|
|
// 将Canvas转换为DataURL
|
|
|
|
|
const dataURL = canvas.toDataURL("image/png");
|
|
|
|
|
// 使用FileSaver.js保存DataURL为图片文件
|
|
|
|
|
saveAs(dataURL, "download.png");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**搜索 */
|
|
|
|
|
handleSearch(keyWord) {
|
|
|
|
|
this.queryParams = {
|
|
|
|
|
issuanceStatus: true,
|
|
|
|
|
name: keyWord,
|
|
|
|
|
UId: this.$store.getters.userId,
|
|
|
|
|
// creType: 1, //1:一次性证书发放,2:个性化证书发放
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
};
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/**查详情 */
|
|
|
|
|
async handleInfo(row) {
|
|
|
|
|
let res = await this.getInfo(row.id);
|
|
|
|
|
this.form = res.data;
|
|
|
|
|
this.infoShow = true;
|
|
|
|
|
// console.log("详情", res);
|
|
|
|
|
},
|
|
|
|
|
async getInfo(id) {
|
|
|
|
|
let res = await getYcInfo(id);
|
|
|
|
|
return res;
|
|
|
|
|
},
|
|
|
|
|
//发放按钮
|
|
|
|
|
async handleFabu(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
let res = await this.getInfo(row.id);
|
|
|
|
|
this.form = res.data;
|
|
|
|
|
this.title = "发放查看";
|
|
|
|
|
this.open = true;
|
|
|
|
|
},
|
|
|
|
|
//点击制造或者电子验证收货信息是否完整
|
|
|
|
|
isComplete() {
|
|
|
|
|
if (
|
|
|
|
|
!this.form.userName ||
|
|
|
|
|
!this.form.mailAddress ||
|
|
|
|
|
!this.form.phonenumber
|
|
|
|
|
) {
|
|
|
|
|
this.$modal.msgError("请前往地址管理中添加详细地址!");
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/**纸制 */
|
|
|
|
|
submitPaper() {
|
|
|
|
|
let isTrue = this.isComplete();
|
|
|
|
|
if (isTrue) {
|
|
|
|
|
this.infoOpen = true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/**纸制提交 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
let data = {
|
|
|
|
|
courierCompanies: this.form.courierCompanies,
|
|
|
|
|
id: this.form.id,
|
|
|
|
|
trackingNumber: this.form.trackingNumber,
|
|
|
|
|
type: 2, // 1:电子证书 2:纸制证书
|
|
|
|
|
};
|
|
|
|
|
this.subIssue(data);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//发放
|
|
|
|
|
subIssue(data) {
|
|
|
|
|
ycIssue(data).then((res) => {
|
|
|
|
|
this.infoOpen = false;
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("发放成功");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**电子 */
|
|
|
|
|
submitElectron() {
|
|
|
|
|
let _this = this;
|
|
|
|
|
this.$modal
|
|
|
|
|
.confirm(`您确定要发放“${this.form.name}”证书吗?`)
|
|
|
|
|
.then(function () {
|
|
|
|
|
let data = {
|
|
|
|
|
id: _this.form.id,
|
|
|
|
|
type: 1, // 1:电子证书 2:纸制证书
|
|
|
|
|
};
|
|
|
|
|
_this.subIssue(data);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**关闭 */
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
/**重置 */
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
id: null,
|
|
|
|
|
activityId: null,
|
|
|
|
|
certificateId: null,
|
|
|
|
|
uId: null,
|
|
|
|
|
content: null,
|
|
|
|
|
createId: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
activityTime: null,
|
|
|
|
|
updateId: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
userId: null,
|
|
|
|
|
deptId: null,
|
|
|
|
|
type: null,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
/** 查询发放记录列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getYcList(this.queryParams).then((response) => {
|
|
|
|
|
this.tableData = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import "@/assets/styles/myTable.scss";
|
|
|
|
|
.info-form-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
font-family: "Alibaba-PuHuiTi-Regular";
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
span {
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 17px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
background: #f8414d;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|