diff --git a/pages.json b/pages.json
index 918f018..6775057 100644
--- a/pages.json
+++ b/pages.json
@@ -315,6 +315,27 @@
"navigationBarTitleText": "技术交底表",
"onReachBottomDistance": 100
}
+ },
+ {
+ "path": "FO037Edit",
+ "style": {
+ "navigationBarTitleText": "安全交底表",
+ "onReachBottomDistance": 100
+ }
+ },
+ {
+ "path": "FO037Show",
+ "style": {
+ "navigationBarTitleText": "安全交底表",
+ "onReachBottomDistance": 100
+ }
+ },
+ {
+ "path": "FO037List",
+ "style": {
+ "navigationBarTitleText": "安全交底表",
+ "onReachBottomDistance": 100
+ }
}
]
},
diff --git a/pages/apply/subPages/FO/FO037Edit.vue b/pages/apply/subPages/FO/FO037Edit.vue
new file mode 100644
index 0000000..1768f89
--- /dev/null
+++ b/pages/apply/subPages/FO/FO037Edit.vue
@@ -0,0 +1,485 @@
+
+
+
+
+
+
+
+ *
+
+
+ 基本信息填写
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 附件:
+
+
+
+
+
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/apply/subPages/FO/FO037List.vue b/pages/apply/subPages/FO/FO037List.vue
new file mode 100644
index 0000000..6e21459
--- /dev/null
+++ b/pages/apply/subPages/FO/FO037List.vue
@@ -0,0 +1,322 @@
+
+
+
+
+
+
+
+
+
+ {{statusFilterTxt}}
+
+
+
+
+
+
+
+
+
+ 交底人:
+ {{item.Nav_User ? item.Nav_User.NAME : ''}}
+
+
+ 交底地点:
+ {{item.JOB_LOCATION }}
+
+
+ 交底时间:
+ {{item.DISCLOSURE_DATE}}
+
+
+ 状态:
+ {{item.FORM_STATUS}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/apply/subPages/FO/FO037Show.vue b/pages/apply/subPages/FO/FO037Show.vue
new file mode 100644
index 0000000..ee1726c
--- /dev/null
+++ b/pages/apply/subPages/FO/FO037Show.vue
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+ *
+
+
+ 基本信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 附件:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 签到
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/services/apply/FOServices/FOServices.js b/services/apply/FOServices/FOServices.js
index c437156..0930d69 100644
--- a/services/apply/FOServices/FOServices.js
+++ b/services/apply/FOServices/FOServices.js
@@ -378,6 +378,17 @@ export function getTechDisclosure(params) {
})
})
}
+export function getTechDisclosureSafe(params) {
+ return new Promise((resolve, reject) => {
+ request.post("/FO/TechDisclosureFromSafe/Get", params).then((result) => {
+ if (result.IsSuccessful) {
+ resolve(result.Data);
+ }
+ }).catch((error)=>{
+ reject(error);
+ })
+ })
+}
export function fullFOLeaderWellRecord(params) {
return new Promise((resolve, reject) => {
request.post("/FO/FOLeaderWellRecord/FullUpdate", params).then((result) => {
@@ -400,6 +411,17 @@ export function fullFOTechDisclosure(params) {
})
})
}
+export function fullFOTechDisclosureSafe(params) {
+ return new Promise((resolve, reject) => {
+ request.post("/FO/FOTechDisclosureFromSafe/FullUpdate", params).then((result) => {
+ if (result.IsSuccessful) {
+ resolve(result);
+ }
+ }).catch((error)=>{
+ reject(error);
+ })
+ })
+}
export function getClassLists(params) {
return new Promise((resolve, reject) => {
request.post("/FM/Class/OrderPaged", params).then((result) => {