qa-education-exam-weapp/pages/exam/examination/func.wxs

13 lines
299 B
Plaintext
Raw Normal View History

2026-04-17 16:26:28 +08:00
// 支持es4语法
var filter = {
totranType: function(value){
if(value == '1') return '单选'
if(value == '1') return '多选'
if(value == '1') return '判断'
if(value == '1') return '填空'
}
}
// 导出对外暴露的属性
module.exports = {
totranType: filter.totranType
}