- 接口联调
|
|
@ -259,6 +259,7 @@
|
|||
30D74BF42FEB6F5B0050EB2C /* LocationPickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D74BF12FEB6F5B0050EB2C /* LocationPickerView.swift */; };
|
||||
30D74D1F2FEBB09B0050EB2C /* CreateScheduleVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D74D1E2FEBB09B0050EB2C /* CreateScheduleVM.swift */; };
|
||||
30D87CDB2FDFA9EE00E958FD /* MQTTService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */; };
|
||||
55B240013034000100786001 /* MemberWeatherService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55B240023034000100786002 /* MemberWeatherService.swift */; };
|
||||
30D87CDD2FDFF07500E958FD /* InteractionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDC2FDFF07500E958FD /* InteractionView.swift */; };
|
||||
30D87CDF2FDFF1A100E958FD /* QuickMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87CDE2FDFF1A100E958FD /* QuickMessageView.swift */; };
|
||||
30D87D042FE1336300E958FD /* NavigationVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D87D012FE1336300E958FD /* NavigationVC.swift */; };
|
||||
|
|
@ -696,6 +697,7 @@
|
|||
30D74BF12FEB6F5B0050EB2C /* LocationPickerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationPickerView.swift; sourceTree = "<group>"; };
|
||||
30D74D1E2FEBB09B0050EB2C /* CreateScheduleVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreateScheduleVM.swift; sourceTree = "<group>"; };
|
||||
30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MQTTService.swift; sourceTree = "<group>"; };
|
||||
55B240023034000100786002 /* MemberWeatherService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MemberWeatherService.swift; sourceTree = "<group>"; };
|
||||
30D87CDC2FDFF07500E958FD /* InteractionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InteractionView.swift; sourceTree = "<group>"; };
|
||||
30D87CDE2FDFF1A100E958FD /* QuickMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QuickMessageView.swift; sourceTree = "<group>"; };
|
||||
30D87D012FE1336300E958FD /* NavigationVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationVC.swift; sourceTree = "<group>"; };
|
||||
|
|
@ -1863,6 +1865,7 @@
|
|||
isa = PBXGroup;
|
||||
children = (
|
||||
30D87CDA2FDFA9EE00E958FD /* MQTTService.swift */,
|
||||
55B240023034000100786002 /* MemberWeatherService.swift */,
|
||||
);
|
||||
path = MQTT;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -2673,6 +2676,7 @@
|
|||
30B74B412FF2437E00F6744D /* GroupMemberListVC.swift in Sources */,
|
||||
305A76FD2FCA8C7000227D26 /* EmptyDataSetSource.swift in Sources */,
|
||||
30D87CDB2FDFA9EE00E958FD /* MQTTService.swift in Sources */,
|
||||
55B240013034000100786001 /* MemberWeatherService.swift in Sources */,
|
||||
30EFF3CD2FDA668A00EB35D4 /* MyProfileView.swift in Sources */,
|
||||
305A76FE2FCA8C7000227D26 /* EmptyDataSetView.swift in Sources */,
|
||||
30C4C0192FDBF094009215C1 /* RemoveMemberVC.swift in Sources */,
|
||||
|
|
|
|||
|
|
@ -13,14 +13,14 @@ enum PigeonAPI {
|
|||
/// - toUsers: 收件人加密 id
|
||||
/// - msgType: 2 语音 3 文案
|
||||
/// - msg: 文案留言,或语音 file id
|
||||
/// - bgImg: 自定义背景图 file id;图片模版不传
|
||||
/// - bgImg: 自定义背景图 file id;图片模版传 0
|
||||
/// - expireTime: 过期秒数,0 表示服务端默认 7 天
|
||||
case send(
|
||||
groupKey: String,
|
||||
toUsers: [String],
|
||||
msgType: Int,
|
||||
msg: String,
|
||||
bgImg: String,
|
||||
bgImg: Int64,
|
||||
expireTime: Int,
|
||||
extra: [String: Any]?
|
||||
)
|
||||
|
|
@ -63,7 +63,7 @@ extension PigeonAPI: MultiTargetProtocol {
|
|||
params["to_user"] = toUsers
|
||||
params["msg_type"] = msgType
|
||||
params["msg"] = msg
|
||||
params["bg_img"] = bgImg.isEmpty ? 0 : bgImg
|
||||
params["bg_img"] = bgImg
|
||||
params["expire_time"] = expireTime
|
||||
if let extra {
|
||||
params["extra"] = extra
|
||||
|
|
|
|||
|
|
@ -25,6 +25,12 @@ enum UserAPI {
|
|||
/// 用户当前状态
|
||||
case userStatus
|
||||
|
||||
/// 成员今日手机使用数据
|
||||
case phoneUsageToday(userId: String, groupKey: String)
|
||||
|
||||
/// 成员手机使用报告
|
||||
case phoneUsageReport(userId: String, groupKey: String)
|
||||
|
||||
/// 用户IM Token
|
||||
case imToken
|
||||
|
||||
|
|
@ -86,6 +92,9 @@ enum UserAPI {
|
|||
|
||||
/// 关系列表
|
||||
case relations
|
||||
|
||||
/// 意见反馈
|
||||
case feedback(type: String, content: String, contact: String, images: [String])
|
||||
}
|
||||
|
||||
extension UserAPI: MultiTargetProtocol {
|
||||
|
|
@ -98,6 +107,10 @@ extension UserAPI: MultiTargetProtocol {
|
|||
return "api/user"
|
||||
case .userStatus:
|
||||
return "mapi/user/status"
|
||||
case .phoneUsageToday:
|
||||
return "mapi/phone/usage/today"
|
||||
case .phoneUsageReport:
|
||||
return "mapi/phone/usage/report"
|
||||
case .imToken:
|
||||
return "mapi/openim/user/token/get"
|
||||
case .signInInfo:
|
||||
|
|
@ -130,12 +143,14 @@ extension UserAPI: MultiTargetProtocol {
|
|||
return "mapi/user/signin/setemail"
|
||||
case .relations:
|
||||
return "mapi/user/relations"
|
||||
case .feedback:
|
||||
return "api/user/feedback"
|
||||
}
|
||||
}
|
||||
|
||||
var method: Moya.Method {
|
||||
switch self {
|
||||
case .userInfo, .userStatus, .signInInfo, .notice, .followList, .relations:
|
||||
case .userInfo, .userStatus, .phoneUsageToday, .phoneUsageReport, .signInInfo, .notice, .followList, .relations:
|
||||
return .get
|
||||
case .changePhone, .setGender:
|
||||
return .put
|
||||
|
|
@ -161,6 +176,20 @@ extension UserAPI: MultiTargetProtocol {
|
|||
case .userStatus:
|
||||
return .requestPlain
|
||||
|
||||
case let .phoneUsageToday(userId, groupKey):
|
||||
let params: Parameters = [
|
||||
"user_id": userId,
|
||||
"group_key": groupKey
|
||||
]
|
||||
return .requestParameters(parameters: params, encoding: URLEncoding.queryString)
|
||||
|
||||
case let .phoneUsageReport(userId, groupKey):
|
||||
let params: Parameters = [
|
||||
"user_id": userId,
|
||||
"group_key": groupKey
|
||||
]
|
||||
return .requestParameters(parameters: params, encoding: URLEncoding.queryString)
|
||||
|
||||
case .imToken:
|
||||
var params = Parameters()
|
||||
params["platform_id"] = 1
|
||||
|
|
@ -237,6 +266,15 @@ extension UserAPI: MultiTargetProtocol {
|
|||
|
||||
case .relations:
|
||||
return .requestPlain
|
||||
|
||||
case let .feedback(type, content, contact, images):
|
||||
let params: Parameters = [
|
||||
"type": type,
|
||||
"content": content,
|
||||
"contact": contact,
|
||||
"images": images
|
||||
]
|
||||
return .requestParameters(parameters: params, encoding: JSONEncoding())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_alipay.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_alipay@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_alipay.imageset/catalog_alipay@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_dewu.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_dewu@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_dewu.imageset/catalog_dewu@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_doubao.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_doubao@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_doubao.imageset/catalog_doubao@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_douyin.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_douyin@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_douyin.imageset/catalog_douyin@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_douyin_mall.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_douyin_mall@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_douyin_mall.imageset/catalog_douyin_mall@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_happy_landlord.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_happy_landlord@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
|
After Width: | Height: | Size: 15 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_hongguo_comic.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_hongguo_comic@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
|
After Width: | Height: | Size: 9.3 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_hongguo_short_drama.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_hongguo_short_drama@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
|
After Width: | Height: | Size: 9.7 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_iqiyi.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_iqiyi@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_iqiyi.imageset/catalog_iqiyi@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_jcc@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_jcc.imageset/catalog_jcc@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 19 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_jd@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_jd.imageset/catalog_jd@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_kuaishou.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_kuaishou@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_kuaishou.imageset/catalog_kuaishou@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_meituan.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_meituan@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_meituan.imageset/catalog_meituan@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_peace_elite.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_peace_elite@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_peace_elite.imageset/catalog_peace_elite@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_qq@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_qq.imageset/catalog_qq@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_taobao.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_taobao@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_taobao.imageset/catalog_taobao@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_tomato_novel.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_tomato_novel@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_tomato_novel.imageset/catalog_tomato_novel@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_wangzhe.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_wangzhe@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_wangzhe.imageset/catalog_wangzhe@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 19 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_wechat.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_wechat@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_wechat.imageset/catalog_wechat@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_weibo.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_weibo@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_weibo.imageset/catalog_weibo@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_xianyu.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_xianyu@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_xianyu.imageset/catalog_xianyu@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_xiaohongshu.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_xiaohongshu@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_xiaohongshu.imageset/catalog_xiaohongshu@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_youku.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_youku@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_youku.imageset/catalog_youku@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
8
QuickLocation/Assets.xcassets/AppRestrict/catalog_zhuanzhuan.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"images" : [
|
||||
{ "idiom" : "universal", "scale" : "1x" },
|
||||
{ "filename" : "catalog_zhuanzhuan@2x.png", "idiom" : "universal", "scale" : "2x" },
|
||||
{ "idiom" : "universal", "scale" : "3x" }
|
||||
],
|
||||
"info" : { "author" : "xcode", "version" : 1 }
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/AppRestrict/catalog_zhuanzhuan.imageset/catalog_zhuanzhuan@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
22
QuickLocation/Assets.xcassets/CheckPermission/permission_location_icon.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_location_icon@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_location_icon@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
22
QuickLocation/Assets.xcassets/CheckPermission/permission_pair_icon.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_pair_icon@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_pair_icon@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
22
QuickLocation/Assets.xcassets/CheckPermission/permission_screen_icon.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_screen_icon@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "permission_screen_icon@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 992 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"provides-namespace" : true
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "bubble_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "bubble_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Explore/bubble_card.imageset/bubble_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
QuickLocation/Assets.xcassets/Explore/bubble_card.imageset/bubble_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "header_bg@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "header_bg@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 137 B |
|
After Width: | Height: | Size: 189 B |
22
QuickLocation/Assets.xcassets/Explore/lock_distract_card.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "lock_distract_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "lock_distract_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Explore/lock_distract_card.imageset/lock_distract_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
QuickLocation/Assets.xcassets/Explore/lock_distract_card.imageset/lock_distract_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 18 KiB |
22
QuickLocation/Assets.xcassets/Explore/pigeon_message_card.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "pigeon_message_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "pigeon_message_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Explore/pigeon_message_card.imageset/pigeon_message_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
QuickLocation/Assets.xcassets/Explore/pigeon_message_card.imageset/pigeon_message_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 18 KiB |
22
QuickLocation/Assets.xcassets/Explore/search_location_card.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "search_location_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "search_location_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Explore/search_location_card.imageset/search_location_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
QuickLocation/Assets.xcassets/Explore/search_location_card.imageset/search_location_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "sign_in_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "sign_in_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Explore/sign_in_card.imageset/sign_in_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
QuickLocation/Assets.xcassets/Explore/sign_in_card.imageset/sign_in_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "sos_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "sos_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 16 KiB |
22
QuickLocation/Assets.xcassets/Group/chat_location_map.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "chat_location_map@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "chat_location_map@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Group/chat_location_map.imageset/chat_location_map@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
QuickLocation/Assets.xcassets/Group/chat_location_map.imageset/chat_location_map@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
22
QuickLocation/Assets.xcassets/Group/create_action_card.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "create_action_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "create_action_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Group/create_action_card.imageset/create_action_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
QuickLocation/Assets.xcassets/Group/create_action_card.imageset/create_action_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "join_action_card@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "join_action_card@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Group/join_action_card.imageset/join_action_card@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
QuickLocation/Assets.xcassets/Group/join_action_card.imageset/join_action_card@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 34 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "message_tick@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "message_tick@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Group/message_tick.imageset/message_tick@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 798 B |
BIN
QuickLocation/Assets.xcassets/Group/message_tick.imageset/message_tick@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
22
QuickLocation/Assets.xcassets/Home/member_interaction.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "mouse@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "mouse@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
QuickLocation/Assets.xcassets/Home/member_interaction.imageset/mouse@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 652 B |
BIN
QuickLocation/Assets.xcassets/Home/member_interaction.imageset/mouse@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 5.1 KiB |