Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
红
红星美凯龙管理在线APP IOS
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张杰
红星美凯龙管理在线APP IOS
Commits
51b33c41
Commit
51b33c41
authored
Jan 27, 2016
by
admin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
屏蔽了在线抽查的版本
parent
78eb2f59
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
18 deletions
+18
-18
UserInterfaceState.xcuserstate
...userdata/admin.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
Url.h
redstar/Classes/Macro/Url.h
+2
-2
FunctionViewController.m
redstar/Classes/Module/Function/FunctionViewController.m
+1
-1
AddPictureTableCell.m
...le/Function/Picture/AddPicture/Cell/AddPictureTableCell.m
+1
-1
HomeViewController.m
...r/Classes/Module/Home/ViewController/HomeViewController.m
+14
-14
No files found.
redstar.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate
View file @
51b33c41
No preview for this file type
redstar/Classes/Macro/Url.h
View file @
51b33c41
...
...
@@ -13,10 +13,10 @@
// #define kRedStarURL @"http://218.244.151.129:7580/"
// 正式环境
//
#define kRedStarURL @"http://219.235.234.225:7580/"
#define kRedStarURL @"http://219.235.234.225:7580/"
// 最新正式环境
#define kRedStarURL @"http://219.235.234.212:7580/"
//
#define kRedStarURL @"http://219.235.234.212:7580/"
// 检查更新
#define kCheckUpdateURL @"redstar-server/rest/ipapk?type=ipa"
...
...
redstar/Classes/Module/Function/FunctionViewController.m
View file @
51b33c41
...
...
@@ -60,7 +60,7 @@
[
self
.
pictureBtn
setTitle
:
@"口碑标准"
forState
:
UIControlStateNormal
];
[
self
.
questionBtn
setTitle
:
@"问题知识"
forState
:
UIControlStateNormal
];
[
self
.
rankBtn
setTitle
:
@"口碑巡检"
forState
:
UIControlStateNormal
];
[
self
.
spotBtn
setTitle
:
@"在线抽查"
forState
:
UIControlStateNormal
];
//
[self.spotBtn setTitle:@"在线抽查" forState:UIControlStateNormal];
//self.lineView.backgroundColor = kSeparateLineViewColor;
}
...
...
redstar/Classes/Module/Function/Picture/AddPicture/Cell/AddPictureTableCell.m
View file @
51b33c41
...
...
@@ -51,7 +51,7 @@
UILabel
*
titleLabel
=
[[
UILabel
alloc
]
init
];
titleLabel
.
translatesAutoresizingMaskIntoConstraints
=
NO
;
titleLabel
.
font
=
[
UIFont
systemFontOfSize
:
16
.
0
];
titleLabel
.
text
=
@"
问题与建议描述
"
;
titleLabel
.
text
=
@"
口碑内容
"
;
titleLabel
.
textColor
=
kOnLineCellTitleColor
;
[
self
.
contentView
addSubview
:
titleLabel
];
...
...
redstar/Classes/Module/Home/ViewController/HomeViewController.m
View file @
51b33c41
...
...
@@ -109,8 +109,8 @@ typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
self
.
navigationItem
.
titleView
=
customLab
;
self
.
titleArray
=
[
NSMutableArray
array
];
self
.
sectionArray
=
[
NSMutableArray
arrayWithObjects
:
@"口碑报告"
,
@"商场风采"
,
@"优秀案例"
,
@"巡店报告"
,
@"问题知识"
,
@"口碑巡检"
,
@"在线抽查"
,
nil
];
//
self.sectionArray = [NSMutableArray arrayWithObjects:@"口碑报告",@"商场风采",@"优秀案例",@"巡店报告", @"问题知识",@"口碑巡检",nil];
//
self.sectionArray = [NSMutableArray arrayWithObjects:@"口碑报告",@"商场风采",@"优秀案例",@"巡店报告", @"问题知识",@"口碑巡检",@"在线抽查",nil];
self
.
sectionArray
=
[
NSMutableArray
arrayWithObjects
:
@"口碑报告"
,
@"商场风采"
,
@"优秀案例"
,
@"巡店报告"
,
@"问题知识"
,
@"口碑巡检"
,
nil
];
self
.
allRankListArray
=
[
NSMutableArray
array
];
self
.
taskListDataArray
=
[
NSMutableArray
array
];
...
...
@@ -171,18 +171,18 @@ typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
[
_sectionArray
removeObject
:
@"口碑巡检"
];
}
if
([
permissions
containsObject
:
@"500701"
]
||
[
permissions
containsObject
:
@"500702"
])
{
[
self
.
titleArray
addObject
:
@"在线抽查"
];
if
([
permissions
containsObject
:
@"500701"
])
{
[
self
requestLookOnLineList
];
}
else
if
([
permissions
containsObject
:
@"500702"
]){
[
self
requestSpotCheckList
];
}
}
else
{
[
_sectionArray
removeObject
:
@"在线抽查"
];
}
//
if ([permissions containsObject:@"500701"] || [permissions containsObject:@"500702"]) {
//
[self.titleArray addObject:@"在线抽查"];
//
//
if ([permissions containsObject:@"500701"]) {
//
[self requestLookOnLineList];
//
} else if ([permissions containsObject:@"500702"]){
//
[self requestSpotCheckList];
//
}
//
//
} else {
//
[_sectionArray removeObject:@"在线抽查"];
//
}
// if ([permissions containsObject:@"500702"]) {
// [self.titleArray addObject:@"在线抽查"];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment