84b65e335e105c6b4e180dcf6de740df337faf2a.svn-base 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <div>
  3. <!--上年度问题-->
  4. <el-dialog title="上年度问题录入" :close-on-click-modal="false" width="60%" :visible.sync="problemLastYearVisible" @close="dialogClose">
  5. <div>
  6. <problemLyList showOrEdit="edit" :swhsId="swhsId" :swhsCode="swhsCode"
  7. :currentObjectRgstrId="currentObjectRgstrId"
  8. :currentResCode="currentResCode"
  9. :currentAdcode="currentAdcode"
  10. :currentObjectId="currentObjectId"
  11. :showOrEdit="showOrEdit"
  12. :gdX="gdX"
  13. :gdY="gdY"></problemLyList>
  14. </div>
  15. </el-dialog>
  16. </div>
  17. </template>
  18. <script>
  19. import problemLyList from '../../duChaRenYuan/SydTbLastYear_Wtqd'
  20. import request from '../../../utils/gw_ajax_request'
  21. export default {
  22. name: "problemLastYear",
  23. props:["problemLastYearVisible","swhsId","swhsCode","currentObjectRgstrId",
  24. "currentAdcode",
  25. "currentResCode",
  26. "currentObjectId",
  27. "showOrEdit",
  28. "gdX","gdY","baseForm"],
  29. components:{
  30. problemLyList
  31. },
  32. data(){
  33. return {
  34. searchResult:[],
  35. pageNum: 1,
  36. pageSize: 10
  37. }
  38. },
  39. methods:{
  40. //上年度addProblem
  41. addProblem(){
  42. },
  43. dialogClose(){
  44. this.$emit('closeDialog')
  45. },
  46. search(){
  47. },
  48. handleSizeChange(pageSize) {
  49. this.pageSize = pageSize;
  50. this.search();
  51. },
  52. }
  53. }
  54. </script>
  55. <style scoped>
  56. </style>