Commit 6b577f4f by 姜雷

修改区域mixin

parent 6b6448a2
...@@ -23,5 +23,16 @@ export default { ...@@ -23,5 +23,16 @@ export default {
return ''; return '';
} }
}, },
getAreaOperatorInfo(id) {
let item = this.areaList.find(area => area.id === id);
if (item) {
return {
rechargeOperateId: item.rechargeOperateId,
rechargeOperateName: item.rechargeOperateName,
};
} else {
return null;
}
},
}, },
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment