| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div id="shuikutianbaoId">
- <el-dialog :title="'督查填报信息'" width="60%" :before-close="closeDialog" :visible.sync="dialogFormVisible">
- <el-container>
- <el-main id="dxdcListMain" style="padding:5px 20px;">
- <el-tabs v-model="currentViewId" type="card" @tab-click="tabIndexChange">
- <el-tab-pane
- :label="option.label"
- :name="option.label"
- v-for="option in options"
- :key="option.value">
- <component
- :is="option.value"
- :currentObjectRgstrId="currentObjectRgstrId"
- :currentObjectName="currentObjectName"
- :currentYdbCode="currentYdbCode"
- :currentObjectId="currentObjectId"
- :activeLabel="activeLabel"
- ></component>
- </el-tab-pane>
- </el-tabs>
- </el-main>
- </el-container>
- </el-dialog>
- </div>
- </template>
- <script>
- import request from "@util/gw_ajax_request.js";
- import jichuxinxi from "./duchajichuxinxi_ydb.vue"
- import problemList from './problemListYdb.vue'
- export default {
- components: {
- jichuxinxi:jichuxinxi,
- problemList:problemList
- },
- props: ['currentYdbCode','currentObjectName'],
- data() {
- return {
- options: [
- {
- value: "jichuxinxi",
- label: "基础信息纠错"
- },
- {
- value: "problemList",
- label: '问题清单'
- }
- ],
- value: "",
- dialogShow:false,
- currentViewId: "基础信息纠错",
- dialogFormVisible:true,
- activeLabel: ''
- };
- },
- computed: {
- persId() {
- return localStorage.getItem("userid")
- ? localStorage.getItem("userid")
- : "1098101939614724096";
- }
- },
- mounted() {},
- watch: {},
- methods: {
- closeDialog(){
- this.$emit('cancelHandler')
- }
- }
- };
- </script>
- <style>
- </style>
|