showModal 的confirmColor无法正常生效

小程序开发相关产品技术讨论,包括面板、智能小程序、React Native、Ray跨端框架、Panel SDK、微信小程序、小程序开发工具(IDE)及其他开发技术相关等话题


Post Reply
silverlight
Posts: 114

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
Last edited by silverlight on 2024年 Oct 30日 10:48, edited 3 times in total.

Tags:
muhai
Posts: 84

Re: showModal

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

muhai
Posts: 84

Re: showModal 的confirmColor无法正常生效

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

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

Re: showModal 的confirmColor无法正常生效

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这个属性。

muhai
Posts: 84

Re: showModal 的confirmColor无法正常生效

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这个属性。

好的,我们更新下文档~

Post Reply