|
@@ -129,6 +129,12 @@ const confirmHandle = (id: string, index: number) => {
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
+ <el-table-column label="项目进度" width="200">
|
|
|
+ <template #default="scope">
|
|
|
+ <span v-if="!scope.row.is_edit">{{ scope.row.process }}%</span>
|
|
|
+ <el-input v-else v-model="scope.row.process" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="实际完成时间" prop="actualFinishTime" width="260">
|
|
|
<template #default="scope">
|
|
|
<span v-if="!scope.row.is_edit">{{ scope.row.actualFinishTime }}</span>
|
|
@@ -140,12 +146,6 @@ const confirmHandle = (id: string, index: number) => {
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="项目进度" width="200">
|
|
|
- <template #default="scope">
|
|
|
- <span v-if="!scope.row.is_edit">{{ scope.row.process }}%</span>
|
|
|
- <el-input v-else v-model="scope.row.process" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
>
|
|
|
<el-table-column label="操作" width="200">
|
|
|
<template #default="scope">
|