edit.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <div class="app-container" v-loading="loading">
  3. <el-tabs stretch v-model="activeName" @tab-click="handleClick">
  4. <el-tab-pane label="加计年度企业基本信息" name="1">
  5. <year-edit :type="type" :info.sync="form"></year-edit>
  6. </el-tab-pane>
  7. <el-tab-pane label="企业研发项目情况表" name="2" :disabled="entDisabled">
  8. <ent-edit :type="type" :info.sync="form"></ent-edit>
  9. </el-tab-pane>
  10. <el-tab-pane label="上传文件" name="3" :disabled="encDisabled">
  11. <enclosure-edit :type="type"></enclosure-edit>
  12. </el-tab-pane>
  13. </el-tabs>
  14. <div class="oper" v-if="oper == 'audit'">
  15. <el-button @click="handleAudit('4')" type="primary">审核通过</el-button>
  16. <el-button @click="handleAudit('1')" type="danger">审核驳回</el-button>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. import YearEdit from "./components/year-edit.vue"
  22. import EntEdit from "./components/ent-edit.vue"
  23. import EnclosureEdit from "./components/enclosure-edit.vue"
  24. import { devProjectApi } from "@/api/enterprise/project/project"
  25. import {submitDeclareApi} from "@/api/enterprise/declare/declare"
  26. export default {
  27. name: "projectEdit",
  28. computed: {
  29. userType() {
  30. return this.$store.state.user.userType
  31. },
  32. },
  33. components: {
  34. YearEdit,
  35. EntEdit,
  36. EnclosureEdit
  37. },
  38. data() {
  39. return {
  40. oper: this.$route.query.oper || "",
  41. activeName: "1",
  42. loading: false,
  43. id: undefined,
  44. entDisabled: false,
  45. encDisabled: false,
  46. type: "",
  47. form: {},
  48. source: ""
  49. };
  50. },
  51. created() {
  52. this.id = this.$route.query.id || undefined;
  53. this.type = this.$route.query.type || ""
  54. this.source = this.$route.query.source || ""
  55. this.activeName = this.$route.query.activeName || "1"
  56. if(this.id) {
  57. this.getData()
  58. }
  59. if(this.type == 'year' || this.source == 'add') {
  60. this.entDisabled = true
  61. this.encDisabled = true
  62. }else {
  63. this.entDisabled = false
  64. this.encDisabled = false
  65. }
  66. },
  67. methods: {
  68. getEntData() {
  69. },
  70. handleClick(tab,event) {
  71. },
  72. async getData() {
  73. devProjectApi(this.id).then(res => {
  74. this.form = res.data || {}
  75. })
  76. },
  77. handleAudit(type) {
  78. let _self = this
  79. this.$confirm('是否确认提交审核该数据?', "警告", {
  80. confirmButtonText: "确定",
  81. cancelButtonText: "取消",
  82. type: "warning"
  83. }).then(function() {
  84. return submitDeclareApi(_self.id,type);
  85. }).then(() => {
  86. _self.$message({
  87. message: '提交成功',
  88. type: 'success'
  89. });
  90. _self.$router.go(-1)
  91. })
  92. },
  93. }
  94. };
  95. </script>