Commit 5dada5ef authored by David黄金龙's avatar David黄金龙

1、删除不使用代码

2、处理一处 UI布局bug
parent 9b951ab1
......@@ -78,7 +78,6 @@ extension YHFileListViewController {
func loadData() {
if let orderID = UserDefaults.standard.value(forKey: "orderIdForPreview") {
let param = ["order_id":orderID,"node":"1","state":"1"]
// let param = ["order_id":"11758","node":"1","state":"1"] //for test hjl
certificateReqVM.getCertificateFileListData(params: param) { success, error in
if success == true {
self.myContentView.dataModel = self.certificateReqVM.arrFileListData
......
......@@ -98,6 +98,7 @@ extension YHPreviewInfoCell {
view.snp.makeConstraints { make in
make.edges.equalTo(0)
}
}
else {
......
......@@ -84,8 +84,8 @@ private extension YHPreviewInfoWorkExpView {
addSubview(view)
view.snp.makeConstraints { make in
make.top.equalTo(lastTagView.snp.bottom).offset(18)
make.left.equalToSuperview().offset(kMargin)
make.right.equalToSuperview().offset(-kMargin)
make.left.equalToSuperview()
make.right.equalToSuperview()
}
lastTagView = view
}
......
......@@ -103,8 +103,6 @@ class YHInformationFillTipsAlertView: UIView {
make.height.equalTo(96)
}
// bottomView.backgroundColor = .red //for test hjl
let checkBtn = UIButton(type: .custom)
checkBtn.addTarget(self, action: #selector(onClickReadyBtn), for: .touchUpInside)
checkBtn.setTitle("准备完毕", for: .normal)
......
......@@ -27,8 +27,6 @@ class YHWebViewViewController: YHBaseViewController, WKUIDelegate, WKNavigationD
// 创建wkwebview
webview = WKWebView(frame: CGRect(x: 0, y: statusHeight + navHeight!, width: self.view.frame.width, height: self.view.frame.height - k_Height_NavigationtBarAndStatuBar))
// webview.backgroundColor = .white//for test hjl
webview.navigationDelegate = self
// 创建网址
......
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