diff --git a/api/api.js b/api/api.js
index efb4bf4..bdaedfa 100644
--- a/api/api.js
+++ b/api/api.js
@@ -22,6 +22,13 @@ export function addWorkFlow(data) {
return postData('workflow/addWorkFlow',data);
}
// 项目列表维护查询
-export function commonDate(url,data) {
- return postData(url,data);
+
+export function commonPost(url,data) {
+ try {
+ return postData(url,data);
+ } catch (error) {
+ return { code:500, message:'接口连接错误' }
+ }
+
}
+
diff --git a/pages/memberList/member.vue b/pages/memberList/member.vue
index 2bf707d..007ebc7 100644
--- a/pages/memberList/member.vue
+++ b/pages/memberList/member.vue
@@ -146,7 +146,7 @@ export default {
this.queryFrom.hospitalName=options.hospitalName
},
- async onShow() {
+ onShow() {
},
diff --git a/pages/project/project.css b/pages/project/project.css
new file mode 100644
index 0000000..fd3d66b
--- /dev/null
+++ b/pages/project/project.css
@@ -0,0 +1,71 @@
+.list-view-item{
+ font-size:1ex;
+ padding: 1ex;
+ box-shadow: .8ex .7ex 1ex #22222215;
+ margin-bottom: 2ex;
+ margin-left: 4.5vw;
+ width: 88vw;
+ height: 16vh;
+ display: flex;
+ border-radius: 1ex;
+ border: 1px solid #5d7bdd4f;
+}
+.query-view {
+ position: fixed;
+ top: 0ex;
+ width: 100%;
+}
+
+.list-view {
+ margin-top: 2.3ex;
+ height: 90vh;
+ overflow-y: auto;
+}
+
+.foot-view {
+ position: fixed;
+ bottom: 0.2ex;
+ width: 100%;
+}
+.span-porject-top{
+ margin-top: 1.5ex;
+}
+.span-porject > ul:nth-child(2){
+ font-size: 2.1ex;
+ color: #1d1d1d;
+}
+.span-porject > ul:nth-child(1){
+ font-size: 1.9ex;
+ color: #5f5f5f;
+}
+.span-porject{
+ margin-bottom: .3ex;
+}
+.hqs-popup {
+ padding: 2ex;
+}
+
+.from-item {
+ display: flex;
+ flex-direction: column;
+}
+
+.from-item-input {}
+
+.from-item-label {
+ font-size: 1.8ex;
+ text-align: left;
+ line-height: 4.8ex;
+ margin-right: 1.8ex;
+
+}
+
+.chaxunx {
+ display: flex;
+}
+
+.query-view .u-picker {
+ position: fixed;
+ /* 或者使用 absolute 或 relative,根据你的布局需求 */
+ bottom: 0;
+}
\ No newline at end of file
diff --git a/pages/project/projectIndex.vue b/pages/project/projectIndex.vue
index 5b5e607..15e75f1 100644
--- a/pages/project/projectIndex.vue
+++ b/pages/project/projectIndex.vue
@@ -30,9 +30,9 @@
-
+
@@ -107,7 +107,7 @@
\ No newline at end of file