应用层PC端前端服务

departmentReviews.vue 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div>
  3. <!-- 部门长批量审核 -->
  4. <el-dialog title="部门长批量审核" :visible="caseVisablearHead" destroy-on-close width="30%" @close="cancel" center>
  5. <div slot="footer" class="dialog-footer">
  6. <el-button type="primary" class="endbutton"><span>同 意</span></el-button>
  7. <el-button type="danger" class="endbutton"><span>驳 回</span></el-button>
  8. <el-button class="endbutton" @click="cancel"><span>取 消</span></el-button>
  9. </div>
  10. </el-dialog>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. props: ["caseVisablearHead","queryParams"],
  16. dicts: ["manager_type"],
  17. data() {
  18. return {
  19. };
  20. },
  21. watch: {
  22. caseVisablearHead(val) {
  23. if (val) {
  24. this.ruleForm = {};
  25. }
  26. }
  27. },
  28. created() {
  29. },
  30. methods: {
  31. cancel() {
  32. this.$emit("cancelCaseHead");
  33. },
  34. },
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. ::v-deep .el-dialog {
  39. background: #ffffff;
  40. border-radius: 20px;
  41. }
  42. </style>