2023-02-21 22:40:56 +08:00

31 lines
493 B
JavaScript

// components/tox-icon/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
ghsLevel: {
type: Number,
value: 99,
observer(ghsLevel) {
this.setData({
ghsLevel,
});
},
},
},
/**
* 组件的初始数据
*/
data: {
iconUrl: 'https://webplus-cn-hangzhou-s-603871eef968dd14ced82ed5.oss-cn-hangzhou.aliyuncs.com/hextech/static/tox.svg',
},
/**
* 组件的方法列表
*/
methods: {
}
})