relatedContract.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <el-dialog title="关联合同" width="90%" :append-to-body="true" :visible.sync="isShowDlg" v-dialogDrag :close-on-click-modal="false" :modal-append-to-body="false" center @close="handleClose">
  3. <allocation-lable :tableList="datalist" typeLable="关联合同" @isPreviewHistoryDetail="isPreviewHistoryDetail" @allocationDetail="allocationDetail" />
  4. <el-col :span="24" class="toolbar">
  5. <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChange" />
  6. </el-col>
  7. <rai-history-contract :isPreview.sync="isPreview" :dealList.sync="dealList" />
  8. <allocation-detail :allocationDetailVisible.sync="allocationDetailVisible" :allocationDetailForm.sync="allocationDetailForm" />
  9. </el-dialog>
  10. </template>
  11. <script>
  12. import { contractInterface } from "@/api/api.js";
  13. import AllocationLable from "./allocationLable.vue";
  14. import mPage from "@/components/mPage.vue";
  15. import RaiHistoryContract from "./raiHistoryContract.vue";
  16. import AllocationDetail from "./allocationDetail.vue";
  17. export default {
  18. name: "",
  19. components: { AllocationLable, RaiHistoryContract, mPage, AllocationDetail },
  20. props: {
  21. isShowDlg: {
  22. type: Boolean,
  23. default: false,
  24. },
  25. listDlg: {
  26. type: Object,
  27. default: {},
  28. },
  29. },
  30. data() {
  31. return {
  32. datalist: [],
  33. page_no: 1,
  34. total: 0, //条数
  35. PageSize: 10, //每页显示几条
  36. dealList: [],
  37. isPreview: false,
  38. allocationDetailVisible: false,
  39. allocationDetailForm: {},
  40. };
  41. },
  42. computed: {},
  43. watch: {
  44. isShowDlg: {
  45. handler(newVal) {
  46. newVal && this.getList();
  47. },
  48. },
  49. },
  50. created() {},
  51. mounted() {},
  52. methods: {
  53. // 关闭弹框
  54. handleClose() {
  55. this.$emit("update:isShowDlg", false);
  56. this.$emit("update:listDlg", false);
  57. },
  58. // 获取数据
  59. async getList() {
  60. console.log(this.listDlg);
  61. const res = await contractInterface.getAllocationContract({
  62. ResearcherRealName: this.listDlg.RealName,
  63. PageSize: this.PageSize,
  64. CurrentIndex: this.page_no,
  65. });
  66. if (res.Ret === 200) {
  67. this.datalist = res.Data.List;
  68. this.total = res.Data.Paging.Totals;
  69. }
  70. },
  71. // 非标准预览
  72. isPreviewHistoryDetail(res) {
  73. this.isPreview = true;
  74. this.dealList = res.Data.List;
  75. },
  76. //分页
  77. handleCurrentChange(page) {
  78. this.page_no = page;
  79. this.getList();
  80. },
  81. // 派点详情
  82. allocationDetail(item) {
  83. this.allocationDetailVisible = true;
  84. this.allocationDetailForm = item;
  85. this.allocationDetailForm.isDlgType = "关联合同";
  86. },
  87. },
  88. };
  89. </script>
  90. <style scoped lang="scss">
  91. .content-box-table-detail {
  92. height: 400px;
  93. overflow: hidden;
  94. overflow-y: auto;
  95. position: relative;
  96. margin-top: 20px;
  97. .table-cont-top {
  98. position: sticky;
  99. top: 0;
  100. left: 0;
  101. }
  102. .table-cont {
  103. display: flex;
  104. }
  105. .head-column {
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. border: 1px solid #dcdfe6;
  110. background-color: #ebeef5;
  111. color: #333333;
  112. font-weight: 500;
  113. margin-top: -1px;
  114. margin-left: -0.5px;
  115. }
  116. .head-column-item {
  117. width: 107px;
  118. height: 48px;
  119. }
  120. .head-column-item-Proportion {
  121. width: 73px;
  122. height: 48px;
  123. }
  124. }
  125. </style>