Browse Source

chore: auto bump version and changelog [skip ci]

iwt 1 month ago
parent
commit
b13daf4d80

+ 12 - 3
cfc-frontend/pages/health/health-status-form.vue

@@ -167,15 +167,24 @@ export default {
         notes: ''
       },
       lipidCholesterol: '',
-      diseaseTags: DISEASE_PRESETS.slice(),
-      diseaseNames: [],
-      customDiseases: [],
+      diseaseGroups: DISEASE_GROUPS,
+      expandedGroups: DISEASE_GROUPS.slice(0, 3).map(function(g) { return g.key }),
+      selectedDiseases: [],
       diseaseInput: '',
       medRows: [],
+      currentMonth: '',
+      monthEnd: '',
       saving: false
     }
   },
   onLoad: function() {
+    var now = new Date()
+    var y = now.getFullYear()
+    var m = now.getMonth() + 1
+    var mStr = m < 10 ? '0' + m : '' + m
+    this.currentMonth = y + '-' + mStr
+    var lastDay = new Date(y, m, 0).getDate()
+    this.monthEnd = y + '-' + mStr + '-' + (lastDay < 10 ? '0' + lastDay : '' + lastDay)
     this.load()
   },
   methods: {

+ 1 - 1
cfc-web/.last_build_commit

@@ -1 +1 @@
-94f8e8c84e4ac7a5a18473e9f469fb7fed08a3a7
+db6c1edb1a5509e2d7261648b91481d5b61c0899

+ 2 - 2
cfc-web/package-lock.json

@@ -1,12 +1,12 @@
 {
   "name": "cfc-web",
-  "version": "1.0.1132",
+  "version": "1.0.1133",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "cfc-web",
-      "version": "1.0.1132",
+      "version": "1.0.1133",
       "dependencies": {
         "@wangeditor/editor": "^5.1.23",
         "@wangeditor/editor-for-vue": "^1.0.2",