openDrawn.vue 758 Bytes
<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>