| 1234567891011121314151617181920212223242526272829303132 |
- Component({
- properties: {
- // changyouhuashi | gift
- name: {
- type: String,
- },
- // string | string[]
- color: {
- type: null,
- observer: function(color) {
- this.setData({
- isStr: typeof color === 'string',
- });
- }
- },
- size: {
- type: Number,
- value: 18,
- observer: function(size) {
- this.setData({
- svgSize: size / 750 * qq.getSystemInfoSync().windowWidth,
- });
- },
- },
- },
- data: {
- svgSize: 18 / 750 * qq.getSystemInfoSync().windowWidth,
- quot: '"',
- isStr: true,
- },
- });
|