| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <div>
- <!--上年度问题-->
- <el-dialog title="上年度问题录入" :close-on-click-modal="false" width="60%" :visible.sync="problemLastYearVisible" @close="dialogClose">
- <div>
- <problemLyList showOrEdit="edit" :swhsId="swhsId" :swhsCode="swhsCode"
- :currentObjectRgstrId="currentObjectRgstrId"
- :currentResCode="currentResCode"
- :currentAdcode="currentAdcode"
- :currentObjectId="currentObjectId"
- :showOrEdit="showOrEdit"
- :gdX="gdX"
- :gdY="gdY"></problemLyList>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import problemLyList from '../../duChaRenYuan/SydTbLastYear_Wtqd'
- import request from '../../../utils/gw_ajax_request'
- export default {
- name: "problemLastYear",
- props:["problemLastYearVisible","swhsId","swhsCode","currentObjectRgstrId",
- "currentAdcode",
- "currentResCode",
- "currentObjectId",
- "showOrEdit",
- "gdX","gdY","baseForm"],
- components:{
- problemLyList
- },
- data(){
- return {
- searchResult:[],
- pageNum: 1,
- pageSize: 10
- }
- },
- methods:{
- //上年度addProblem
- addProblem(){
- },
- dialogClose(){
- this.$emit('closeDialog')
- },
- search(){
- },
- handleSizeChange(pageSize) {
- this.pageSize = pageSize;
- this.search();
- },
- }
- }
- </script>
- <style scoped>
- </style>
|