|
|
@@ -69,7 +69,7 @@
|
|
|
<span v-else-if="item.prop === 'progressLevel'">
|
|
|
<el-select
|
|
|
v-model="row.progressLevel"
|
|
|
- :disabled="row.progressStatus == 30"
|
|
|
+ :disabled="row.progressStatus == 30 || row.progressStatus == 40"
|
|
|
placeholder="请选择"
|
|
|
@change="changeprogressLevel($event, row)">
|
|
|
<el-option label="最高" value="10" />
|
|
|
@@ -98,7 +98,7 @@
|
|
|
<span v-else>{{ row[item.prop] }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" fixed="right" label="操作" show-overflow-tooltip width="120">
|
|
|
+ <el-table-column align="center" fixed="right" label="操作" show-overflow-tooltip width="180">
|
|
|
<template #default="{ row }">
|
|
|
<el-button
|
|
|
v-if="row.progressStatus != 30 && row.progressStatus != 40"
|
|
|
@@ -232,11 +232,11 @@
|
|
|
<!-- 详情 -->
|
|
|
<detailWork ref="detailWork" />
|
|
|
<!-- 销售发起部署安装任务 -->
|
|
|
- <StartInstall ref="StartInstall" @fetch-data="fetchWorkListPage1" />
|
|
|
+ <StartInstall ref="StartInstall" @fetch-data="fetchData" />
|
|
|
<!-- 确认安装信息 -->
|
|
|
- <ConfirmInstall ref="ConfirmInstall" @fetch-data="fetchWorkListPage1" />
|
|
|
+ <ConfirmInstall ref="ConfirmInstall" @fetch-data="fetchData" />
|
|
|
<!-- 安装审核 -->
|
|
|
- <AuditInstall ref="AuditInstall" @fetch-data="fetchWorkListPage1" />
|
|
|
+ <AuditInstall ref="AuditInstall" @fetch-data="fetchData" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|