|
@@ -112,7 +112,7 @@
|
|
|
width="80"
|
|
|
label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button v-if="isAuth('business:approval:approval') && Number(scope.row.state) !== 3 && checkUser(scope.row)" type="text" size="small" @click="addOrUpdateHandle(scope.row)">处理</el-button>
|
|
|
+ <el-button v-if="isAuth('business:approval:approval') && Number(scope.row.state) !== 3 && Number(scope.row.state) !== 0 && checkUser(scope.row)" type="text" size="small" @click="addOrUpdateHandle(scope.row)">处理</el-button>
|
|
|
<el-button v-if="isAuth('business:approval:info') && (Number(scope.row.state) === 3 || !checkUser(scope.row))" type="text" size="small" @click="detailHandle(scope.row)">查看</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -129,7 +129,7 @@
|
|
|
</template>
|
|
|
<!-- 弹窗, 新增 / 修改 -->
|
|
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getApprovalList" @onChose="onChose"/>
|
|
|
- <el-dialog width="60%" :visible.sync="approveDialogVisible">
|
|
|
+ <el-dialog width="1000px" :visible.sync="approveDialogVisible">
|
|
|
<approve-component-batch ref="approve" @approveFinished="approveChose" />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -350,6 +350,8 @@
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-
|
|
|
+<style lang="scss" scoped>
|
|
|
+.batch-dialog-class{
|
|
|
+ min-width: 1000px;
|
|
|
+}
|
|
|
</style>
|