12345678910111213141516171819202122232425262728293031323334353637 |
- var convertLive = function (status) {
- var statusText
- switch (status) {
- case 0:
- statusText = '未直播'
- break;
- case 1:
- statusText = '直播中'
- break;
- case 2:
- statusText = '直播结束'
- break;
- default:
- statusText = '未知状态'
- }
- return statusText
- }
- var convert = function (status) {
- var statusText
- switch (status) {
- case 1:
- statusText = '仪式'
- break;
- case 2:
- statusText = '活动'
- break;
- default:
- statusText = '未知'
- }
- return statusText
- }
- module.exports = {
- convertLive: convertLive,
- convert: convert
- }
|