智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/df/df61b27133df0475bc0731382d4...

31 lines
760 B

function relative (from, to) {
if (to.indexOf('/') === 0) {
from = ''
}
const fromArr = from.split('/')
const toArr = to.split('/')
fromArr.pop()
while (toArr.length) {
const part = toArr.shift()
if (part !== '' && part !== '.') {
if (part !== '..') {
fromArr.push(part)
} else {
fromArr.pop()
}
}
}
return fromArr.join('/')
}
export function parseRelations (relations, vueComponentOptions) {
if (!relations) {
return
}
Object.keys(relations).forEach(name => {
const relation = relations[name]
relation.name = name
relation.target = relation.target ? String(relation.target) : relative(global.__wxRoute, name)
})
vueComponentOptions.mpOptions.relations = relations
}