Page 1 of 1

showModal 的confirmColor无法正常生效

Posted: 2024年 Oct 30日 10:10
by silverlight

import { showModal } from '@ray-js/ray';
我在修改确认和取消的文字颜色时,发现只有在ide修改了颜色,但是安卓和ios的真机调试中,颜色并没有得到修改。

Code: Select all

    showModal({
      title: '提示',
      content: `${newcontent}`,
      showCancel: false,
      confirmText:`${Strings.getLang('confirm')}`,
      confirmColor: '#3CC51F',
      success: (res) => {
        if (res.confirm) {
          console.log('用户点击确定');
        } else if (res.cancel) {
          console.log('用户点击取消');
        }
      },
      fail: (error) => {
        console.log('调用失败', error);
      },
    })

这是ide中的颜色,得到了修改

model颜色问题.png

但是真机调试并没有得到修改,安卓和ios都一样

model颜色问题.jpg

Re: showModal

Posted: 2024年 Oct 30日 10:19
by muhai

你好,你的反馈已收到,我们将尽快答复你。


Re: showModal 的confirmColor无法正常生效

Posted: 2024年 Oct 30日 10:23
by muhai

当前版本不支持confirmColor配置,后续版本将会支持ty.showModal设置confirmColor。现在你可以用 :

  1. SmartUI 对话框组件 https://developer.tuya.com/material/sma ... mId=dialog
  2. 涂鸦风格对话框组件 https://developer.tuya.com/material/lib ... e=TyDialog

Re: showModal 的confirmColor无法正常生效

Posted: 2024年 Oct 30日 10:32
by silverlight
muhai 2024年 Oct 30日 10:23

当前版本不支持confirmColor配置,后续版本将会支持ty.showModal设置confirmColor。现在你可以用 :

  1. SmartUI 对话框组件 https://developer.tuya.com/material/sma ... mId=dialog
  2. 涂鸦风格对话框组件 https://developer.tuya.com/material/lib ... e=TyDialog

好的,就是开发文档和接口代码中,都显示存在confirmColor这个属性。


Re: showModal 的confirmColor无法正常生效

Posted: 2024年 Oct 30日 10:42
by muhai
silverlight 2024年 Oct 30日 10:32
muhai 2024年 Oct 30日 10:23

当前版本不支持confirmColor配置,后续版本将会支持ty.showModal设置confirmColor。现在你可以用 :

  1. SmartUI 对话框组件 https://developer.tuya.com/material/sma ... mId=dialog
  2. 涂鸦风格对话框组件 https://developer.tuya.com/material/lib ... e=TyDialog

好的,就是开发文档和接口代码中,都显示存在confirmColor这个属性。

好的,我们更新下文档~