|
@@ -39,7 +39,7 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
+
|
|
|
<el-form-item label="开始时间" prop="startTime">
|
|
|
<el-date-picker
|
|
|
style="width: 205px"
|
|
@@ -151,20 +151,12 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="会议开始时间"
|
|
|
- align="center"
|
|
|
- prop="startTime"
|
|
|
- >
|
|
|
+ <el-table-column label="会议开始时间" align="center" prop="startTime">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.startTime, "{y}-{m}-{d}") }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="会议结束时间"
|
|
|
- align="center"
|
|
|
- prop="endTime"
|
|
|
- >
|
|
|
+ <el-table-column label="会议结束时间" align="center" prop="endTime">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.endTime, "{y}-{m}-{d}") }}</span>
|
|
|
</template>
|
|
@@ -179,6 +171,20 @@
|
|
|
class-name="small-padding fixed-width"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-document-remove"
|
|
|
+ @click="handleMark(scope.row, '1')"
|
|
|
+ >去打分</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-search"
|
|
|
+ @click="handleLookMark(scope.row, '2')"
|
|
|
+ >查看打分表</el-button
|
|
|
+ >
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
@@ -481,6 +487,20 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 去打分
|
|
|
+ handleMark(row, type) {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/invest/meeting/mark",
|
|
|
+ query: { id: row.id, formType: type },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 查看打分表
|
|
|
+ handleLookMark(row, type) {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/invest/meeting/mark",
|
|
|
+ query: { id: row.id, formType: type },
|
|
|
+ });
|
|
|
+ },
|
|
|
// 选择部门人
|
|
|
openSelectDept(type) {
|
|
|
if (type == 2) {
|
|
@@ -588,7 +608,7 @@ export default {
|
|
|
this.form.meetingType = this.meetingType;
|
|
|
}
|
|
|
this.open = true;
|
|
|
- this.title = "添加会议记录";
|
|
|
+ this.title = "添加会议";
|
|
|
setTimeout(() => {
|
|
|
that.$refs.fileItems.fileList = [];
|
|
|
}, 200);
|
|
@@ -603,7 +623,7 @@ export default {
|
|
|
this.form.projectStage = response.data.tProjectPool.projectStage;
|
|
|
this.form.projectGroup = response.data.tProjectPool.projectGroup;
|
|
|
this.open = true;
|
|
|
- this.title = "修改会议记录";
|
|
|
+ this.title = "修改会议";
|
|
|
setTimeout(() => {
|
|
|
this.$refs.fileItems.getListFileBusinessId(id);
|
|
|
}, 200);
|