difenduandada
2024-12-31 34abe6963b344c882358274957f4b992456fee40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"use strict";
cc._RF.push(module, 'ba6c6J8nMNO2r2ExY5r4YCa', 'friend_const');
// Scripts/mod/friend/friend_const.js
 
"use strict";
 
var _FriendGroupName;
 
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
 
// --------------------------------------------------------------------
// @author: zhangyusong@syg.com(必填, 创建模块的人员)
// @description:
//      
// <br/>Create: new Date().toISOString()
// --------------------------------------------------------------------
var FriendConst = {
  Type: {
    MyFriend: 1,
    Award: 2,
    ApplyList: 3,
    BlackList: 4
  },
  FriendGroupType: {
    friend: 1,
    //我的好友
    cross_friend: 2,
    //跨服好友
    black_list: 3 //黑名单
 
  },
  FriendGroupName: (_FriendGroupName = {}, _defineProperty(_FriendGroupName, 1, "我的好友"), _defineProperty(_FriendGroupName, 2, "跨服好友"), _defineProperty(_FriendGroupName, 3, "黑名单"), _FriendGroupName) // apply_lev_limit = 5
 
};
module.exports = FriendConst;
 
cc._RF.pop();