0918
This commit is contained in:
@ -92,8 +92,8 @@
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="操作" min-width="180" fixed="right">
|
||||
<template #default="scope">
|
||||
<el-button type="text" @click="handleViewDetail(scope.row)" size="small" class="action-btn">查看详情</el-button>
|
||||
<el-button type="text" @click="handleEvaluate(scope.row)" size="small" class="action-btn">评价</el-button>
|
||||
<el-button type="text" @click="handleViewDetail(scope.row)" class="action-btn">查看详情</el-button>
|
||||
<el-button type="text" @click="handleEvaluate(scope.row)" class="action-btn">评价</el-button>
|
||||
<el-button
|
||||
type="text"
|
||||
@click="handleCancel(scope.row)"
|
||||
@ -103,12 +103,8 @@
|
||||
>
|
||||
取消
|
||||
</el-button>
|
||||
<el-button type="text" @click="handleCommunicate(scope.row)" size="small" class="action-btn" v-if="scope.row.status === '执行中'">
|
||||
沟通
|
||||
</el-button>
|
||||
<el-button type="text" @click="handleArchive(scope.row)" size="small" class="action-btn" v-if="scope.row.status === '已完成'">
|
||||
归档
|
||||
</el-button>
|
||||
<el-button type="text" @click="handleCommunicate(scope.row)" class="action-btn" v-if="scope.row.status === '执行中'"> 沟通 </el-button>
|
||||
<el-button type="text" @click="handleArchive(scope.row)" class="action-btn" v-if="scope.row.status === '已完成'"> 归档 </el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@ -203,7 +199,7 @@
|
||||
<el-input v-model="createForm.resultDescription" type="textarea" :rows="3" placeholder="请描述该工单完成后预期达成的成果" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="需要执行人?*" prop="needAssignee">
|
||||
<el-form-item label="是否需要执行人" prop="needAssignee">
|
||||
<el-radio-group v-model="createForm.needAssignee">
|
||||
<el-radio label="true">是,指定执行人</el-radio>
|
||||
<el-radio label="false">否,由系统分配</el-radio>
|
||||
|
||||
Reference in New Issue
Block a user