Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GeliBusinessPlatform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ljy
GeliBusinessPlatform
Commits
4085da11
Commit
4085da11
authored
Aug 27, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Plain Diff
合并1.6.1
parents
3b512aa1
c1265a35
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
5 deletions
+26
-5
GeliBusinessPlatform.xcodeproj/project.pbxproj
GeliBusinessPlatform.xcodeproj/project.pbxproj
+4
-4
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/Other/LMNote/LMNoteViewController.m
GeliBusinessPlatform/Other/LMNote/LMNoteViewController.m
+1
-0
GeliBusinessPlatform/ViewController/商品详情/EPViewController.swift
...sinessPlatform/ViewController/商品详情/EPViewController.swift
+13
-0
GeliBusinessPlatform/ViewController/商品详情/ProductDetailViewController.swift
...orm/ViewController/商品详情/ProductDetailViewController.swift
+8
-1
No files found.
GeliBusinessPlatform.xcodeproj/project.pbxproj
View file @
4085da11
...
...
@@ -3995,7 +3995,7 @@
CLANG_ENABLE_MODULES
=
YES
;
CODE_SIGN_ENTITLEMENTS
=
GeliBusinessPlatform/GeliBusinessPlatform.entitlements
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
2.
1
;
CURRENT_PROJECT_VERSION
=
2.
4
;
DEFINES_MODULE
=
NO
;
DEVELOPMENT_ASSET_PATHS
=
"\"GeliBusinessPlatform/Preview Content\""
;
DEVELOPMENT_TEAM
=
K48346UACH
;
...
...
@@ -4043,7 +4043,7 @@
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/JPush/Lib"
,
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/SDK/ShareSDK/Support/PlatformSDK/WeChatSDK"
,
);
MARKETING_VERSION
=
1.6.
1
;
MARKETING_VERSION
=
1.6.
2
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
...
...
@@ -4124,7 +4124,7 @@
CLANG_ENABLE_MODULES
=
YES
;
CODE_SIGN_ENTITLEMENTS
=
GeliBusinessPlatform/GeliBusinessPlatform.entitlements
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
2.
1
;
CURRENT_PROJECT_VERSION
=
2.
4
;
DEFINES_MODULE
=
NO
;
DEVELOPMENT_ASSET_PATHS
=
"\"GeliBusinessPlatform/Preview Content\""
;
DEVELOPMENT_TEAM
=
K48346UACH
;
...
...
@@ -4172,7 +4172,7 @@
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/JPush/Lib"
,
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/SDK/ShareSDK/Support/PlatformSDK/WeChatSDK"
,
);
MARKETING_VERSION
=
1.6.
1
;
MARKETING_VERSION
=
1.6.
2
;
OTHER_LDFLAGS
=
(
"$(inherited)"
,
"-ObjC"
,
...
...
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
4085da11
No preview for this file type
GeliBusinessPlatform/Other/LMNote/LMNoteViewController.m
View file @
4085da11
...
...
@@ -325,6 +325,7 @@
if
([
src
containsString
:
imgSrc1
])
{
imgurl
=
[
src
stringByReplacingOccurrencesOfString
:
imgSrc1
withString
:
@""
];
};
[
self
.
imgUrlArr
addObject
:
imgurl
];
}
}
...
...
GeliBusinessPlatform/ViewController/商品详情/EPViewController.swift
View file @
4085da11
...
...
@@ -1668,8 +1668,13 @@ class EPViewController: BaseViewController,UITableViewDelegate,UITableViewDataSo
let
item
=
dataArr
[
i
]
var
pData
=
""
if
item
.
price
.
contains
(
","
)
{
let
pArr
=
item
.
price
.
components
(
separatedBy
:
","
)
pData
=
pArr
.
joined
(
separator
:
""
)
// let arr = item.price.components(separatedBy: ",")
// pData = arr.joined(separator: "")
}
else
{
pData
=
item
.
price
}
...
...
@@ -1764,6 +1769,14 @@ class EPViewController: BaseViewController,UITableViewDelegate,UITableViewDataSo
pct
=
item
.
DJBiLi
}
// var pData = ""
// if item.price.contains(","){
// let arr = item.price.components(separatedBy: ",")
// pData = arr.joined(separator: "")
// }else{
// pData = item.price
// }
var
sku
=
[
"sku_sn"
:
""
,
"sku_id"
:
item
.
sku_id
,
"goods_id"
:
goods_id
,
...
...
GeliBusinessPlatform/ViewController/商品详情/ProductDetailViewController.swift
View file @
4085da11
...
...
@@ -1222,7 +1222,6 @@ class ProductDetailViewController: BaseViewController,UITableViewDelegate,UITabl
var
skuArr
:
Array
<
Any
>
=
[]
dataArr
.
forEach
{
(
md
)
in
var
pData
=
""
if
md
.
price
.
contains
(
","
){
let
arr
=
md
.
price
.
components
(
separatedBy
:
","
)
...
...
@@ -1323,6 +1322,14 @@ class ProductDetailViewController: BaseViewController,UITableViewDelegate,UITabl
}
let
packAttrStr
=
dictChangeString
(
sender
:
pack_attr
)
// var pData = ""
// if md.price.contains(","){
// let arr = md.price.components(separatedBy: ",")
// pData = arr.joined(separator: "")
// }else{
// pData = md.price
// }
var
sku
=
[
"sku_sn"
:
""
,
"spec_id"
:
"1"
,
"attr"
:
md
.
guiGe
,
...
...
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