|
|
|
@ -402,24 +402,20 @@ |
|
|
|
width="150" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<font v-if="scope.row.ntype!='1'"> |
|
|
|
{{ "¥" + getAmountDesc(scope.row.budgetCost) }},{{ |
|
|
|
scope.row.budgetWorkload |
|
|
|
}}人时 |
|
|
|
</font> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column sortable prop="rate" label="进度" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<font v-if="scope.row.ntype!='1'"> |
|
|
|
<el-link |
|
|
|
<el-link :disabled="scope.row.ntype=='1'" |
|
|
|
style="border-radius: 30px" |
|
|
|
:type="scope.row.rate >= 100 ? 'success' : 'warning'" |
|
|
|
@click="drawerVisible = true" |
|
|
|
> |
|
|
|
{{ (scope.row.rate != null ? scope.row.rate : 0) + "%" }} |
|
|
|
</el-link> |
|
|
|
</font> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
@ -455,8 +451,7 @@ |
|
|
|
show-overflow-tooltip |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<font v-if="scope.row.ntype!='1'"> |
|
|
|
<el-link @click="drawerVisible = true" |
|
|
|
<el-link @click="drawerVisible = true" :disabled="scope.row.ntype=='1'" |
|
|
|
>{{ getDateString(scope.row.startTime) }} ~ {{ |
|
|
|
getDateString(scope.row.endTime) |
|
|
|
}} |
|
|
|
@ -467,7 +462,6 @@ |
|
|
|
</div> |
|
|
|
--> |
|
|
|
|
|
|
|
</font> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
|