mirror of
http://123.56.153.49:3000/haibing/litemall.git
synced 2025-06-07 14:05:39 +00:00
13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
![]() |
/* eslint-disable */
|
||
|
var array = require('../wxs/array.wxs');
|
||
|
|
||
|
function isActive (activeList, itemId) {
|
||
|
if (array.isArray(activeList)) {
|
||
|
return activeList.indexOf(itemId) > -1;
|
||
|
}
|
||
|
|
||
|
return activeList === itemId;
|
||
|
}
|
||
|
|
||
|
module.exports.isActive = isActive;
|