案件列表信息,详情,修改,压缩包
This commit is contained in:
@@ -58,6 +58,9 @@ export function checkRole(value) {
|
||||
export function statusRole(value) {
|
||||
let caseStatus = sessionStorage.getItem('caseStatus');
|
||||
caseStatus = JSON.parse(caseStatus);
|
||||
if(caseStatus.length == 0){
|
||||
return false
|
||||
}
|
||||
caseStatus.forEach(item => {
|
||||
if(item == value){
|
||||
return true
|
||||
|
||||
@@ -59,9 +59,12 @@
|
||||
<el-table-column label="创建时间" align="center" prop="createTime" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" @click="eidtNodeprocess(scope.row)" type="text" icon="el-icon-edit"
|
||||
v-if="statusRole(scope.row.caseFlowId)">修改</el-button>
|
||||
<el-button size="mini" @click="eidtNodeprocess(scope.row)" type="text" icon="el-icon-edit">修改</el-button>
|
||||
<el-button size="mini" @click="checkDetail(scope.row)" type="text" icon="el-icon-view">查看详情</el-button>
|
||||
<el-button size="mini" @click="consultantApplica(scope.row)" type="text"
|
||||
icon="el-icon-tickets">法律顾问用印申请</el-button>
|
||||
<el-button size="mini" @click="departmentApplica(scope.row)" type="text"
|
||||
icon="el-icon-edit-outline">部门长用印申请</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -189,6 +192,18 @@ export default {
|
||||
this.loading = false;
|
||||
})
|
||||
},
|
||||
// 法律顾问用印申请
|
||||
consultantApplica(row) {
|
||||
this.$modal.confirm("你确定要用印申请吗?").then((res) => {
|
||||
|
||||
}).catch(() =>{
|
||||
|
||||
})
|
||||
},
|
||||
// 部门长用印申请
|
||||
departmentApplica(){
|
||||
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user