openDrawn.vue
758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<template>
  <a-modal
    :title="title"
    :width="1000"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭"
    wrapClassName="ant-modal-cust-warp"
    style="top:5%;height: 100%;overflow-y: hidden">
  <div>
  <iframe id="frm" src="http://172.16.0.137:8087/sipmweb/web/search/detail?rid=610bfcfb77d37fc3bd60e6c529f66c2b&id=01_7D2CC06FB2734F649874F2E867F0B2F0&t=DWGSW" ></iframe>
</div>
  </a-modal>
</template>
<script>
export default {
  name: "openDrawn",
  data () {
    return {
      title:"操作",
      visible: false,
    }
  },
  computed() {
  },
  created() {
  },
  methods:{
    add(){
       this.visible=true
    },
  }
}
</script>
<style scoped>
</style>