cnf
2025-05-10 386fa0eca75ddc88165f9b73038f2a2239e1072e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const {
  camelize,
  convertStaticStyle
} = require('@dcloudio/uni-cli-shared')
 
module.exports = {
  modules: [require('./format-text'), {
    preTransformNode (el, {
      warn
    }) {
      if (el.attrsMap) {
        if (el.attrsMap.style) {
          el.attrsMap.style = convertStaticStyle(el.attrsMap.style)
        }
        if (process.env.UNI_PLATFORM === 'mp-baidu') { // fixed data-index => dataIndex
          Object.keys(el.attrsMap).forEach(attr => {
            if (attr.indexOf(':data-') === 0) {
              el.attrsMap[camelize(attr)] = el.attrsMap[attr]
              delete el.attrsMap[attr]
            }
          })
        }
      }
      if (el.attrsList && el.attrsList.length) {
        el.attrsList.forEach(attr => {
          if (attr.name === 'style' && attr.value) {
            attr.value = convertStaticStyle(attr.value)
          }
          if (process.env.UNI_PLATFORM === 'mp-baidu') { // fixed data-index => dataIndex
            if (attr.name.indexOf(':data-') === 0) {
              attr.name = camelize(attr.name)
            }
          }
        })
      }
    },
    postTransformNode (el) {
      if (process.env.UNI_PLATFORM === 'mp-alipay') {
        if (el.tag === 'slot') {
          if (!el.children.length) {
            el.children.push({
              type: 1,
              tag: 'view',
              attrsList: [],
              attrsMap: {},
              parent: el,
              children: [],
              plain: true
            })
          }
        }
      }
    }
  }]
}