Commit 494fb8bb authored by lujunye's avatar lujunye

veron:1.4 build:1.24

parent f38c44e2
......@@ -3499,7 +3499,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = GeliBusinessPlatform/GeliBusinessPlatform.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1.23;
CURRENT_PROJECT_VERSION = 1.24;
DEFINES_MODULE = NO;
DEVELOPMENT_ASSET_PATHS = "\"GeliBusinessPlatform/Preview Content\"";
DEVELOPMENT_TEAM = K48346UACH;
......@@ -3544,7 +3544,7 @@
"$(PROJECT_DIR)/GeliBusinessPlatform/Define/融云",
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/JPush/Lib",
);
MARKETING_VERSION = 1.3;
MARKETING_VERSION = 1.4;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
......@@ -3631,7 +3631,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = GeliBusinessPlatform/GeliBusinessPlatform.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1.23;
CURRENT_PROJECT_VERSION = 1.24;
DEFINES_MODULE = NO;
DEVELOPMENT_ASSET_PATHS = "\"GeliBusinessPlatform/Preview Content\"";
DEVELOPMENT_TEAM = K48346UACH;
......@@ -3676,7 +3676,7 @@
"$(PROJECT_DIR)/GeliBusinessPlatform/Define/融云",
"$(PROJECT_DIR)/GeliBusinessPlatform/Other/JPush/Lib",
);
MARKETING_VERSION = 1.3;
MARKETING_VERSION = 1.4;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array/>
</plist>
......@@ -43,10 +43,10 @@
<string>我们需要通过您同意获取地理位置,查询周边的相关数据</string>
<key>NSMicrophoneUsageDescription</key>
<string>我们需要通过您同意使用麦克风,才能与你进行语音交流</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>我们需要通过您同意使用相册,才能获取相关数据</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>我们需要通过您同意使用相册,才能添加相关数据</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>我们需要通过您同意使用相册,才能获取相关数据</string>
<key>UIBackgroundModes</key>
<array/>
<key>UILaunchImageFile</key>
......
......@@ -490,16 +490,16 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
HUD.flash(.label("敬请期待"),delay: 1.2)
return
case 77: //应收账款
// HUD.flash(.label("敬请期待"),delay: 1.2)
let vc = YingFuZKListViewController()
vc.barTitle = "应收账款"
self.navigationController?.pushViewController(vc, animated: true)
HUD.flash(.label("敬请期待"),delay: 1.2)
// let vc = YingFuZKListViewController()
// vc.barTitle = "应收账款"
// self.navigationController?.pushViewController(vc, animated: true)
return
case 78: //应付账款
// HUD.flash(.label("敬请期待"),delay: 1.2)
let vc = YingFuZKListViewController()
vc.barTitle = "应付账款"
self.navigationController?.pushViewController(vc, animated: true)
HUD.flash(.label("敬请期待"),delay: 1.2)
// let vc = YingFuZKListViewController()
// vc.barTitle = "应付账款"
// self.navigationController?.pushViewController(vc, animated: true)
return
case 80: //客户列表
// HUD.flash(.label("敬请期待"),delay: 1.2)
......
......@@ -44,16 +44,27 @@ class CGDListViewController: BaseViewController ,UISearchBarDelegate, SearchBar
vc.delegate = self
self.navigationController?.pushViewController(vc, animated: true)
}
var vc1Refresh = false
var vc2Refresh = false
@objc func updateXQ(nofi : Notification){
vc1Refresh = true
vc2Refresh = true
if vc1Refresh {
let vc1 = viewControllers[1]
if vc1.listView != nil {
vc1.listView.mj_header?.beginRefreshing()
vc1.listView.mj_header?.beginRefreshing {
self.vc1Refresh = false
}
}
}
if vc2Refresh {
let vc3 = viewControllers[3]
if vc3.listView != nil {
vc3.listView.mj_header?.beginRefreshing()
vc3.listView.mj_header?.beginRefreshing {
self.vc2Refresh = false
}
}
}
}
deinit {
......
......@@ -337,6 +337,15 @@ class CGDXQVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,GLAl
let cell = tableView.dequeueReusableCell(withIdentifier: "TitleAndBtnCell") as! TitleAndBtnCell
cell.nameLbl.text = titleArr[indexPath.row]
cell.contentLbl.text = holderArr[indexPath.row]
if indexPath.row == 6 {
if cell.contentLbl.text == "已付款"{
cell.arrowImg.isHidden = true
cell.contentRight.constant = 15
}else{
cell.arrowImg.isHidden = false
cell.contentRight.constant = 32
}
}
cell.btn.isUserInteractionEnabled = false
if model?.order_status == 1 {
cell.arrowImg.isHidden = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment