0

我在 Modal.method() 中使用它但不起作用,基本上如下:

  const modal = this.$confirm({
          dialogStyle: {top:'500px'},
          title: '',
          content: 'test',
          zIndex: 1010,
          okText: '确认',
          closable: false,
          cancelButtonProps: { style: { display: 'none' } },
          onOk: () => {
            this.drawVisible = false
            modal.destroy()
          }
     })

它可以工作,基本上如下:

  <a-modal
       width="400px"
       :zIndex="1010"
       v-model="ticketVisible"
       :maskClosable="false"
       :closable="false"
       :dialogStyle="{ top:'10px'}"
    >
      <div style="color:red;font-size:15px;"> test</div>
      <footer slot="footer">
        <a-button type="primary" @click="() => {drawVisible=false,ticketVisible = false}">确定</a-button>
      </footer>
    </a-modal>

那么当我使用 antd.Modal.confirm() 时如何调整位置?

4

0 回答 0