Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

在表格最后一列,弹出的气泡确认框会抖一下 #2216

Open
1 task
ssqf opened this issue Mar 10, 2023 · 4 comments
Open
1 task

在表格最后一列,弹出的气泡确认框会抖一下 #2216

ssqf opened this issue Mar 10, 2023 · 4 comments

Comments

@ssqf
Copy link

ssqf commented Mar 10, 2023

Basic Info

  • Package Name And Version: @arco-design/web-vue@2.43.2
  • Browser: chrome110.0.0.0

screenshots

 <template #optional="{ rowIndex, record }">
        <a-popconfirm @ok="reSendRecordByID(record.ID)">
          <template #content>
            <div>确定补发该记录?</div>
            <a-space>
              <p :style="{ width: 'max-content' }">补发平台:</p>
              <a-select v-model="selectPName" :style="{ width: '160px' }">
                <a-option value="">所有平台</a-option>
                <a-option v-for="item of selectPNameList" :key="item" :value="item" :label="item" />
              </a-select>
            </a-space>
          </template>
          <a-button class="operBtn" type="text" status="success">补发</a-button>
        </a-popconfirm>

        <a-popconfirm content="确定删除该记录?" type="warning" @ok="delVisitRecord(rowIndex, record.ID)">
          <a-button class="operBtn" type="text" status="danger">删除</a-button>
        </a-popconfirm>
      </template>
@JawilX
Copy link

JawilX commented Mar 17, 2023

我也碰到了,position设置成tr能避免

@ZhangTomLiang
Copy link

也同样遇到了这个问题

@liquehuo
Copy link

liquehuo commented Aug 24, 2023

+1 我看 arco design 代码issue 里面有提到,好像是修复了,为啥这里还是这样? (arco-design/arco-design#986)

@nuagecen
Copy link

我也遇到这个问题了,看了一下源码好像是因为trigger第一次计算宽度的时候默认是 html。然后 zoom-in-fade-out 这个动画的放大就会超出 body 从而产生滚动条。不知道官方有没有合适方法

跑了一下源码,发现不用 zoom-in-fade-out, 换成 fade-in 就好了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants