|
|
@@ -90,6 +90,12 @@
|
|
|
<template #needSigneeSign="scope">
|
|
|
<span>{{ scope.row.needSigneeSign === true ? '是' : scope.row.needSigneeSign === false ? '否' : '-' }}</span>
|
|
|
</template>
|
|
|
+ <template #planEndTime="scope">
|
|
|
+ <span>{{ scope.row.planEndTime ? scope.row.planEndTime : '-' }}</span>
|
|
|
+ </template>
|
|
|
+ <template #planStartTime="scope">
|
|
|
+ <span>{{ scope.row.planStartTime ? scope.row.planStartTime : '-' }}</span>
|
|
|
+ </template>
|
|
|
<template #action="scope">
|
|
|
<div class="action-container--div" style="justify-content: left">
|
|
|
<ActionButton text="查看" @click="handleView(scope.row.id)" />
|