|
@@ -81,13 +81,14 @@
|
|
|
<template v-if="row.taskFinishedStatus === 1">
|
|
|
<el-popover placement="top-start" title="" :width="200" :hide-after="0" :content="row?.outMoneyTips">
|
|
|
<template #reference>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planTaskDesc" clearable />
|
|
|
+ <!-- <el-input v-if="row.isEdit" v-model="row.planTaskDesc" clearable /> -->
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planTaskDesc" clearable />
|
|
|
<span v-else>{{ row.planTaskDesc }}</span>
|
|
|
</template>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
<span v-else>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planTaskDesc" clearable />
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planTaskDesc" clearable />
|
|
|
<span v-else>{{ row.planTaskDesc }}</span>
|
|
|
</span>
|
|
|
</template>
|
|
@@ -95,13 +96,13 @@
|
|
|
<template v-if="row.taskFinishedStatus === 1">
|
|
|
<el-popover placement="top-start" title="" :width="200" :hide-after="0" :content="row?.outMoneyTips">
|
|
|
<template #reference>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planTarget" clearable />
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planTarget" clearable />
|
|
|
<span v-else>{{ row.planTarget }}</span>
|
|
|
</template>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
<span v-else>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planTarget" clearable />
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planTarget" clearable />
|
|
|
<span v-else>{{ row.planTarget }}</span>
|
|
|
</span>
|
|
|
</template>
|
|
@@ -135,13 +136,13 @@
|
|
|
<template v-if="row.taskFinishedStatus === 1">
|
|
|
<el-popover placement="top-start" title="" :width="200" :hide-after="0" :content="row?.outMoneyTips">
|
|
|
<template #reference>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planDays" disabled clearable />
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planDays" disabled clearable />
|
|
|
<span v-else>{{ row.planDays }}</span>
|
|
|
</template>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
<span v-else>
|
|
|
- <el-input v-if="row.isEdit" v-model="row.planDays" disabled clearable />
|
|
|
+ <hc-table-input v-if="row.isEdit" v-model="row.planDays" disabled clearable />
|
|
|
<span v-else>{{ row.planDays }}</span>
|
|
|
</span>
|
|
|
</template>
|