|
@@ -23,6 +23,9 @@
|
|
|
<el-table-column label="创建人" show-overflow-tooltip align="center">
|
|
|
<template slot-scope="scope">{{ scope.row.createName }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="创建时间" show-overflow-tooltip align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.createTime.substring(0,10) }}</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="邀请码" show-overflow-tooltip align="center">
|
|
|
<template slot-scope="scope">{{ scope.row.shareCode }}</template>
|
|
|
</el-table-column>
|
|
@@ -112,7 +115,7 @@ export default {
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
}).then(() => {
|
|
|
- createShareCode(this.$route.query.id).then((response) => {
|
|
|
+ createShareCode(this.$route.query.id,this.$route.query.compName).then((response) => {
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "生成成功!",
|