Kaynağa Gözat

疫情严重-代码每日一提,正在开发快捷建单页面

seimin 3 yıl önce
ebeveyn
işleme
fc5e687087

+ 63 - 0
components/seiminFooterBtn/seiminFooterBtn.vue

@@ -0,0 +1,63 @@
1
+<template>
2
+  <view class="seiminFooterBtn">
3
+    <button :class="btn.type" :type="btn.type" v-for="(btn,i) in btns" :key="i" @click="btn.click">{{btn.name}}</button>
4
+  </view>
5
+</template>
6
+
7
+<script>
8
+  export default {
9
+    name: "seiminFooterBtn",
10
+    data() {
11
+      return {};
12
+    },
13
+    props: {
14
+      btns: {
15
+        type: Array,
16
+        default: () => []
17
+      },
18
+    },
19
+    methods: {},
20
+  };
21
+</script>
22
+
23
+<style lang="scss" scoped>
24
+  .seiminFooterBtn {
25
+    position: fixed;
26
+    left: 0;
27
+    bottom: 0;
28
+    width: 100%;
29
+    height: 100rpx;
30
+    z-index: 9;
31
+    background-color: #fff;
32
+    border-top: 1px solid rgba(0, 0, 0, 0.1);
33
+    padding: 0 25rpx;
34
+    @include flex(space-between, center);
35
+
36
+    uni-button {
37
+      flex: 1;
38
+      margin-right: 16rpx;
39
+      height: 66rpx;
40
+      font-size: 32rpx;
41
+      @include flex(center, center);
42
+
43
+      &::after {
44
+        border: none;
45
+      }
46
+
47
+      &:last-of-type {
48
+        margin-right: 0;
49
+      }
50
+    }
51
+
52
+    .default {
53
+      background-color: #fff;
54
+      border: 1px solid $defaultColor;
55
+      color: $defaultColor;
56
+    }
57
+
58
+    .primary {
59
+      @include btn_background;
60
+      color: #fff;
61
+    }
62
+  }
63
+</style>

+ 57 - 26
components/seiminFooterNav/seiminFooterNav.vue

@@ -1,68 +1,99 @@
1
+<!--
2
+ * @Author: 廖明明
3
+ * @Date: 2022-04-11 17:58:25
4
+ * @LastEditors: 廖明明
5
+ * @LastEditTime: 2022-04-12 13:56:55
6
+ * @Description: 底部菜单
7
+-->
1 8
 <template>
2 9
   <view class="seiminFooterNav">
3
-    <view class="seiminFooterNav_item" :class="{otherStyle:menu.otherStyle,active:menu.otherStyle?false:menu.active}"
4
-      v-for="menu in menus" :key="menu.link">
10
+    <view class="seiminFooterNav_item" :class="{
11
+        otherStyle: menu.otherStyle,
12
+        active: menu.otherStyle ? false : menu.active,
13
+      }" v-for="menu in menus" :key="menu.link" @click="goto(menu)">
5 14
       <text class="pda seiminFooterNav_item_icon" :class="menu.icon"></text>
6
-      <text class="seiminFooterNav_item_text">{{menu.name}}</text>
15
+      <text class="seiminFooterNav_item_text">{{ menu.name }}</text>
7 16
     </view>
17
+    <seiminModel ref="seiminModel"></seiminModel>
8 18
   </view>
9 19
 </template>
10 20
 
11 21
 <script>
12 22
   import {
13 23
     getCurrentPagesSeimin
14
-  } from '../../utils/index.js';
24
+  } from "../../utils/index.js";
15 25
   export default {
16 26
     name: "seiminFooterNav",
17 27
     data() {
18 28
       return {
19 29
         // 当前路由地址
20
-        curRoute: '',
30
+        curRoute: "",
21 31
         //底部菜单
22 32
         menus: [{
23
-            name: '首页',
24
-            link: '/pages/index/index',
25
-            icon: 'pda-shouye2',
33
+            name: "首页",
34
+            link: "/pages/index/index",
35
+            icon: "pda-shouye2",
26 36
             otherStyle: false,
27 37
             active: false,
28 38
           },
29 39
           {
30
-            name: '工单',
31
-            link: '/pages/orders/orders',
32
-            icon: 'pda-gongdan',
40
+            name: "工单",
41
+            link: "/pages/orders/orders",
42
+            icon: "pda-gongdan",
33 43
             otherStyle: false,
34 44
             active: false,
35 45
           },
36 46
           {
37
-            name: '二维码',
38
-            link: '/pages/qrcode/qrcode',
39
-            icon: 'pda-ziyuan91',
47
+            name: "二维码",
48
+            link: "/pages/qrcode/qrcode",
49
+            icon: "pda-ziyuan91",
40 50
             otherStyle: true,
41 51
             active: false,
42 52
           },
43 53
           {
44
-            name: '患者',
45
-            link: '/pages/patients/patients',
46
-            icon: 'pda-wodehuanzhe',
54
+            name: "患者",
55
+            link: "/pages/patients/patients",
56
+            icon: "pda-wodehuanzhe",
47 57
             otherStyle: false,
48 58
             active: false,
49 59
           },
50 60
           {
51
-            name: '我的',
52
-            link: '/pages/personalCenter/personalCenter',
53
-            icon: 'pda-shouye3',
61
+            name: "我的",
62
+            link: "/pages/personalCenter/personalCenter",
63
+            icon: "pda-shouye3",
54 64
             otherStyle: false,
55 65
             active: false,
56
-          }
57
-        ]
66
+          },
67
+        ],
58 68
       };
59 69
     },
60 70
     methods: {
71
+      /**
72
+       * @description: 路由跳转或展示动态二维码
73
+       * @param {object} menu 菜单
74
+       * @author: 廖明明
75
+       */
76
+      goto(menu) {
77
+        if (menu.name === "二维码") {
78
+          this.$refs.seiminModel.show({
79
+            title:'科室二维码',
80
+            skin: 'qrcode',
81
+            btns: [{
82
+              name: "知道了",
83
+              textColor: "#49B856",
84
+            }, ]
85
+          });
86
+        } else {
87
+          uni.navigateTo({
88
+            url: menu.link,
89
+          });
90
+        }
91
+      },
61 92
       // 高亮当前菜单
62 93
       activeCurrentMenu() {
63 94
         this.curRoute = `/${getCurrentPagesSeimin()}`;
64
-        this.menus.forEach(v => v.active = v.link === this.curRoute);
65
-      }
95
+        this.menus.forEach((v) => (v.active = v.link === this.curRoute));
96
+      },
66 97
     },
67 98
     mounted() {
68 99
       this.activeCurrentMenu();
@@ -84,13 +115,13 @@
84 115
     @include flex(space-between, center);
85 116
 
86 117
     .seiminFooterNav_item {
87
-      color: #DDE1E5;
118
+      color: #dde1e5;
88 119
       @include flex(center, center, column);
89 120
 
90 121
       &.otherStyle {
91 122
         width: 120rpx;
92 123
         height: 120rpx;
93
-        background: linear-gradient(180deg, #74C271 0%, #39B199 100%);
124
+        background: linear-gradient(180deg, #74c271 0%, #39b199 100%);
94 125
         border-radius: 50%;
95 126
         position: relative;
96 127
         top: -10rpx;

+ 68 - 2
components/seiminModel/seiminModel.vue

@@ -9,7 +9,18 @@
9 9
   <view class="seiminModel seiminModel_mask" v-if="opts.isVisible">
10 10
     <view class="seiminModel_container animate__animated animate__fadeIn animate__faster">
11 11
       <view class="seiminModel_header">{{ opts.title }}</view>
12
-      <view class="seiminModel_content" v-html="opts.content"></view>
12
+      <!-- 动态二维码 -->
13
+      <view class="seiminModel_content qrcode" v-if="opts.skin === 'qrcode'">
14
+        <image class="w100" :src="nurseCodeImg" mode="widthFix"></image>
15
+        <view class="qrcode_operate">
16
+          <view class="refreshQRCode" @click="showNurseCode">
17
+            刷新
18
+          </view>
19
+          <view>{{ refreshQRCodeTime }}s</view>
20
+        </view>
21
+      </view>
22
+      <!-- 正常弹窗 -->
23
+      <view class="seiminModel_content" v-html="opts.content" v-else></view>
13 24
       <view class="seiminModel_footer">
14 25
         <view class="seiminModel_footer__btn" v-for="(btn, i) in opts.btns" :style="{
15 26
             flex: btn.flex,
@@ -21,20 +32,35 @@
21 32
 </template>
22 33
 
23 34
 <script>
35
+  import {
36
+    mapState
37
+  } from 'vuex';
38
+  import {
39
+    reqDeptCodes
40
+  } from '../../request/api.js';
24 41
   export default {
25 42
     name: "seiminModel",
26 43
     data() {
27 44
       return {
28 45
         // 配置项
29 46
         opts: {},
47
+        // 动态二维码定时器
48
+        timer: null,
49
+        // 动态二维码qrcode
50
+        nurseCodeImg: '',
51
+        // 动态二维码刷新间隔时长
52
+        refreshQRCodeTime: 30,
30 53
       };
31 54
     },
55
+    computed: {
56
+      ...mapState('user', ['loginInfo']),
57
+    },
32 58
     methods: {
33 59
       // 显示弹窗
34 60
       show(args = {}) {
35 61
         // 默认配置项
36 62
         let defaultOptions = {
37
-          skin: "default", //弹窗风格(default|toast|)
63
+          skin: "default", //弹窗风格(default|toast|qrcode|)
38 64
           isVisible: false, //是否显示弹窗
39 65
           title: "提示", //标题
40 66
           content: "", //内容
@@ -75,10 +101,36 @@
75 101
         this.opts = Object.assign({}, defaultOptions, args, {
76 102
           isVisible: true,
77 103
         });
104
+        // 如果是动态二维码,则需要发起请求
105
+        if (this.opts.skin === 'qrcode') {
106
+          this.showNurseCode();
107
+        }
78 108
       },
79 109
       // 关闭弹窗
80 110
       close() {
81 111
         this.opts.isVisible = false;
112
+        if (this.opts.skin === 'qrcode') {
113
+          clearInterval(this.timer);
114
+          this.timer = null;
115
+        }
116
+      },
117
+      // 科室动态二维码方法
118
+      showNurseCode() {
119
+        let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
120
+        reqDeptCodes([deptId]).then(res => {
121
+          if (res.status == 200) {
122
+            this.nurseCodeImg = res["data"][0].base64;
123
+            this.refreshQRCodeTime = res["data"][0].refreshQRCodeTime;
124
+            clearInterval(this.timer);
125
+            this.timer = setInterval(() => {
126
+              this.refreshQRCodeTime = Math.max(--this.refreshQRCodeTime, 0);
127
+              if (this.refreshQRCodeTime === 0) {
128
+                clearInterval(this.timer);
129
+                this.showNurseCode();
130
+              }
131
+            }, 1000);
132
+          }
133
+        })
82 134
       },
83 135
     },
84 136
   };
@@ -124,6 +176,20 @@
124 176
           padding: 76rpx 24rpx;
125 177
           @include numbersAndLettersNoWrap;
126 178
 
179
+          &.qrcode {
180
+            padding: 24rpx;
181
+            font-size: 32rpx;
182
+            color: #999;
183
+
184
+            .qrcode_operate {
185
+              @include flex(space-between, center);
186
+
187
+              .refreshQRCode {
188
+                color: $defaultColor;
189
+              }
190
+            }
191
+          }
192
+
127 193
           .red {
128 194
             color: $textColorRed;
129 195
           }

+ 3 - 2
pages/index/index.vue

@@ -11,7 +11,7 @@
11 11
           </view>
12 12
         </view>
13 13
         <view class="icon-saoma">
14
-          <text class="pda pda-saoma "></text>
14
+          <text class="pda pda-saoma"></text>
15 15
         </view>
16 16
       </view>
17 17
       <!-- 一键收标本 -->
@@ -94,7 +94,7 @@
94 94
       ...mapState(['isShowSeiminModel']),
95 95
     },
96 96
     methods: {
97
-      ...mapMutations(['changeSeiminModel']),
97
+      ...mapMutations(['changeSeiminModel', 'changeQucikCreateOrderType']),
98 98
       // 获取页面数据
99 99
       init() {
100 100
         let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
@@ -162,6 +162,7 @@
162 162
         uni.navigateTo({
163 163
           url: '/pages/quickCreateOrder/quickCreateOrder'
164 164
         })
165
+        this.changeQucikCreateOrderType('specimen');
165 166
       },
166 167
       // 切换科室弹窗
167 168
       showDeptModel() {

+ 159 - 1
pages/quickCreateOrder/quickCreateOrder.vue

@@ -3,21 +3,111 @@
3 3
     <view class="qco_msg">
4 4
       支助人员将去<b>7东-泌尿外科I病区</b>执行<b>调药</b>,请选择起点科室;
5 5
     </view>
6
+    <!-- 起点科室,终点科室 -->
7
+    <block v-if="qucikCreateOrderType === 'other'">
8
+      <view class="select_block">
9
+        <text class="select_label">起点科室</text>
10
+        <view class="select_placeholder">请选择起点科室<text class="pda pda-xiangyou"></text></view>
11
+      </view>
12
+      <view class="select_block">
13
+        <text class="select_label">终点科室</text>
14
+        <view class="select_placeholder">请选择终点科室<text class="pda pda-xiangyou"></text></view>
15
+      </view>
16
+    </block>
17
+    <!-- 备注 -->
18
+    <view class="remarks">
19
+      <textarea class="remarks_textarea" auto-height :maxlength="100" placeholder-style="color:#999"
20
+        placeholder="备注信息:请您填写微生物和数量" />
21
+    </view>
22
+    <!-- 快捷输入,历史输入 -->
23
+    <view class="quickAndHistory">
24
+      <view class="quickAndHistory_header">
25
+        快捷输入
26
+      </view>
27
+      <view class="quickAndHistory_container">
28
+        <view class="quickAndHistory_item">
29
+          我是一只小青蛙
30
+        </view>
31
+        <view class="quickAndHistory_item">
32
+          我是一只小青蛙
33
+        </view>
34
+        <view class="quickAndHistory_item">
35
+          我是一只小青蛙
36
+        </view>
37
+        <view class="quickAndHistory_item">
38
+          我是一只小青蛙
39
+        </view>
40
+        <view class="quickAndHistory_item">
41
+          我是一只小青蛙
42
+        </view>
43
+      </view>
44
+    </view>
45
+    <view class="quickAndHistory">
46
+      <view class="quickAndHistory_header">
47
+        历史输入
48
+      </view>
49
+      <view class="quickAndHistory_container">
50
+        <view class="quickAndHistory_item">
51
+          我是一只小青蛙
52
+        </view>
53
+        <view class="quickAndHistory_item">
54
+          我是一只小青蛙
55
+        </view>
56
+        <view class="quickAndHistory_item">
57
+          我是一只小青蛙
58
+        </view>
59
+        <view class="quickAndHistory_item">
60
+          我是一只小青蛙
61
+        </view>
62
+        <view class="quickAndHistory_item">
63
+          我是一只小青蛙
64
+        </view>
65
+      </view>
66
+    </view>
67
+    <!-- 底部 -->
68
+    <seiminFooterBtn :btns="btns"></seiminFooterBtn>
6 69
   </view>
7 70
 </template>
8 71
 
9 72
 <script>
73
+  import {
74
+    mapState
75
+  } from 'vuex';
10 76
   export default {
11 77
     data() {
12 78
       return {
13
-
79
+        btns: [{
80
+            name: '回到首页',
81
+            type: 'default',
82
+            click: () => {
83
+              uni.navigateTo({
84
+                url: '/pages/index/index'
85
+              })
86
+            }
87
+          },
88
+          {
89
+            name: '确认',
90
+            type: 'primary',
91
+            click: () => {
92
+              console.log('确认');
93
+            }
94
+          }
95
+        ]
14 96
       };
97
+    },
98
+    computed: {
99
+      ...mapState(['qucikCreateOrderType']),
100
+    },
101
+    onLoad() {
102
+
15 103
     }
16 104
   }
17 105
 </script>
18 106
 
19 107
 <style lang="scss" scoped>
20 108
   .quickCreateOrder {
109
+    margin-bottom: 100rpx;
110
+
21 111
     .qco_msg {
22 112
       min-height: 144rpx;
23 113
       padding: 32rpx 160rpx;
@@ -25,10 +115,78 @@
25 115
       line-height: 40rpx;
26 116
       font-size: 28rpx;
27 117
       text-align: center;
118
+
28 119
       b {
29 120
         color: $defaultColor;
30 121
         font-weight: normal;
31 122
       }
32 123
     }
124
+
125
+    // 起点科室,终点科室
126
+    .select_block {
127
+      padding: 0 30rpx;
128
+      height: 88rpx;
129
+      font-size: 34rpx;
130
+      border-top: 1px solid #E5E5E5;
131
+      background-color: #fff;
132
+      @include flex(space-between, center);
133
+
134
+      .select_label {
135
+        color: #000;
136
+      }
137
+
138
+      .select_placeholder {
139
+        color: #888;
140
+        @include flex(flex-start, center);
141
+
142
+        .pda-xiangyou {
143
+          font-size: 24rpx;
144
+          margin-left: 30rpx;
145
+        }
146
+      }
147
+    }
148
+
149
+    // 备注
150
+    .remarks {
151
+      min-height: 150rpx;
152
+      background-color: #fff;
153
+      border-top: 1px solid #E5E5E5;
154
+      border-bottom: 1px solid #E5E5E5;
155
+      padding: 22rpx 25rpx;
156
+
157
+      .remarks_textarea {
158
+        width: 100%;
159
+      }
160
+    }
161
+
162
+    // 快捷输入,历史输入
163
+    .quickAndHistory {
164
+      padding: 43rpx 25rpx 0;
165
+
166
+      .quickAndHistory_header {
167
+        font-weight: bold;
168
+        font-size: 34rpx;
169
+        padding-bottom: 24rpx;
170
+        color: #333;
171
+      }
172
+
173
+      .quickAndHistory_container {
174
+        @include flex;
175
+        flex-wrap: wrap;
176
+
177
+        .quickAndHistory_item {
178
+          height: 66rpx;
179
+          font-size: 28rpx;
180
+          border-radius: 33rpx;
181
+          background-color: #fff;
182
+          line-height: 66rpx;
183
+          padding: 0 24rpx;
184
+          color: #666;
185
+          margin-bottom: 11rpx;
186
+          margin-right: 24rpx;
187
+          @include clamp;
188
+        }
189
+      }
190
+    }
33 191
   }
34 192
 </style>

+ 8 - 0
request/api.js

@@ -41,3 +41,11 @@ export const reqDeptTaskType = (postData) =>
41 41
     data: postData,
42 42
     method: 'POST'
43 43
   });
44
+  
45
+// 获取动态二维码
46
+export const reqDeptCodes = (postData) =>
47
+  request({
48
+    url: "/dept/deptCodes/0",
49
+    data: postData,
50
+    method: 'POST'
51
+  });

+ 26 - 3
static/fonts/demo_index.html

@@ -55,6 +55,12 @@
55 55
           <ul class="icon_lists dib-box">
56 56
           
57 57
             <li class="dib">
58
+              <span class="icon pda">&#xe637;</span>
59
+                <div class="name">向右</div>
60
+                <div class="code-name">&amp;#xe637;</div>
61
+              </li>
62
+          
63
+            <li class="dib">
58 64
               <span class="icon pda">&#xe613;</span>
59 65
                 <div class="name">首页</div>
60 66
                 <div class="code-name">&amp;#xe613;</div>
@@ -108,9 +114,9 @@
108 114
 <pre><code class="language-css"
109 115
 >@font-face {
110 116
   font-family: 'pda';
111
-  src: url('iconfont.woff2?t=1649313043379') format('woff2'),
112
-       url('iconfont.woff?t=1649313043379') format('woff'),
113
-       url('iconfont.ttf?t=1649313043379') format('truetype');
117
+  src: url('iconfont.woff2?t=1649728794969') format('woff2'),
118
+       url('iconfont.woff?t=1649728794969') format('woff'),
119
+       url('iconfont.ttf?t=1649728794969') format('truetype');
114 120
 }
115 121
 </code></pre>
116 122
           <h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
@@ -137,6 +143,15 @@
137 143
         <ul class="icon_lists dib-box">
138 144
           
139 145
           <li class="dib">
146
+            <span class="icon pda pda-xiangyou"></span>
147
+            <div class="name">
148
+              向右
149
+            </div>
150
+            <div class="code-name">.pda-xiangyou
151
+            </div>
152
+          </li>
153
+          
154
+          <li class="dib">
140 155
             <span class="icon pda pda-shouye2"></span>
141 156
             <div class="name">
142 157
               首页
@@ -219,6 +234,14 @@
219 234
           
220 235
             <li class="dib">
221 236
                 <svg class="icon svg-icon" aria-hidden="true">
237
+                  <use xlink:href="#pda-xiangyou"></use>
238
+                </svg>
239
+                <div class="name">向右</div>
240
+                <div class="code-name">#pda-xiangyou</div>
241
+            </li>
242
+          
243
+            <li class="dib">
244
+                <svg class="icon svg-icon" aria-hidden="true">
222 245
                   <use xlink:href="#pda-shouye2"></use>
223 246
                 </svg>
224 247
                 <div class="name">首页</div>

+ 7 - 3
static/fonts/iconfont.css

@@ -1,8 +1,8 @@
1 1
 @font-face {
2 2
   font-family: "pda"; /* Project id 3307922 */
3
-  src: url('/static/fonts/iconfont.woff2?t=1649313043379') format('woff2'),
4
-       url('/static/fonts/iconfont.woff?t=1649313043379') format('woff'),
5
-       url('/static/fonts/iconfont.ttf?t=1649313043379') format('truetype');
3
+  src: url('/static/fonts/iconfont.woff2?t=1649728794969') format('woff2'),
4
+       url('/static/fonts/iconfont.woff?t=1649728794969') format('woff'),
5
+       url('/static/fonts/iconfont.ttf?t=1649728794969') format('truetype');
6 6
 }
7 7
 
8 8
 .pda {
@@ -13,6 +13,10 @@
13 13
   -moz-osx-font-smoothing: grayscale;
14 14
 }
15 15
 
16
+.pda-xiangyou:before {
17
+  content: "\e637";
18
+}
19
+
16 20
 .pda-shouye2:before {
17 21
   content: "\e613";
18 22
 }

Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 1
static/fonts/iconfont.js


+ 7 - 0
static/fonts/iconfont.json

@@ -6,6 +6,13 @@
6 6
   "description": "转运PDA",
7 7
   "glyphs": [
8 8
     {
9
+      "icon_id": "479506",
10
+      "name": "向右",
11
+      "font_class": "xiangyou",
12
+      "unicode": "e637",
13
+      "unicode_decimal": 58935
14
+    },
15
+    {
9 16
       "icon_id": "765262",
10 17
       "name": "首页",
11 18
       "font_class": "shouye2",

BIN
static/fonts/iconfont.ttf


BIN
static/fonts/iconfont.woff


BIN
static/fonts/iconfont.woff2


+ 7 - 2
store/index.js

@@ -26,13 +26,18 @@ const myPlugin = (store) => {
26 26
 
27 27
 export default new Vuex.Store({
28 28
   state: {
29
-    isShowSeiminModel: false
29
+    isShowSeiminModel: false,//是否显示切换科室弹窗
30
+    qucikCreateOrderType: '',//快捷建单类型
30 31
   },
31 32
   mutations: {
32 33
     //是否显示切换科室弹窗
33 34
     changeSeiminModel(state, args) {
34 35
       state.isShowSeiminModel = args;
35
-    }
36
+    },
37
+    //快捷建单类型
38
+    changeQucikCreateOrderType(state, args) {
39
+      state.qucikCreateOrderType = args;
40
+    },
36 41
   },
37 42
   modules: {
38 43
     user,

+ 5 - 0
uni.scss

@@ -76,6 +76,8 @@ $textColorYellow: #F5A623;
76 76
     border-right: none;
77 77
   } 
78 78
 }
79
+
80
+// 省略
79 81
 @mixin clamp($clamp:1) {
80 82
   display: -webkit-box;
81 83
   -webkit-box-orient: vertical;
@@ -86,6 +88,9 @@ $textColorYellow: #F5A623;
86 88
 }
87 89
 // --------------------------华丽的分割线---------------------------------------
88 90
 // 全局样式
91
+.w100{
92
+  width: 100%;
93
+}
89 94
 .red {
90 95
   color: $textColorRed;
91 96
 }