| | |
| | | </span> |
| | | </template> |
| | | </el-dialog> |
| | | <DailogSearch ref="Shows"></DailogSearch> |
| | | </template> |
| | | <script lang="ts"> |
| | | import { defineComponent, ref, reactive } from 'vue'; |
| | | import { Search } from '@element-plus/icons-vue'; |
| | | import DailogSearch from '../../../../components/DailogSearch/DailogSearch.vue'; |
| | | export default defineComponent({ |
| | | components: { DailogSearch }, |
| | | setup() { |
| | | const dialogVisible = ref<boolean>(false); |
| | | const form = reactive({ |
| | |
| | | const activeName = ref('1'); |
| | | // 表格 |
| | | |
| | | // 安全目标指标弹窗 |
| | | const Shows = ref(); |
| | | const daiInpt = () => { |
| | | Shows.value.openDailog(); |
| | | }; |
| | | return { |
| | | form, |
| | | dialogVisible, |
| | | openDailog, |
| | | activeName, |
| | | Shows, |
| | | daiInpt, |
| | | Search, |
| | | }; |
| | | }, |