diff --git a/src/views/booknumber/index.vue b/src/views/booknumber/index.vue
index 8b66d6b..804fa1a 100644
--- a/src/views/booknumber/index.vue
+++ b/src/views/booknumber/index.vue
@@ -34,7 +34,7 @@
{{ subtitle }}
-
+
+
@@ -620,8 +621,13 @@ export default {
handleSubmit(value, done) {
this.count = 0;
this.tabArr.map(item => {
- item.addForm.addData.map(item1 => this.count += item1.num)
- item.addForm.addData1.map(item1 => this.count += item1.num)
+ item.addForm.addData.map(item1 => {
+ item1.num = item1.num == undefined ? 0 : item1.num
+ this.count += parseInt(item1.num)
+ })
+ item.addForm.addData1.map(item1 => {
+ item1.num = item1.num == undefined ? 0 : item1.num
+ this.count += parseInt(item1.num)})
})
if (this.userInfo.role_name !== "hospital") {
if (this.deptName == '') {
@@ -917,6 +923,14 @@ export default {
}
}
+ .isTab{
+ .el-tabs{
+ .el-tabs__content{
+ bottom: 100px !important;
+ }
+ }
+ }
+
.title_box {
// padding: 0 40px;
@@ -966,7 +980,13 @@ export default {
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
font-weight: bold;
color: #333333;
- margin-bottom: 20px;
+ bottom: 65px;
+ position: absolute;
+ }
+
+ .hos_sele{
+ bottom: 15px;
+ position: absolute;
}
.monment_txt {