diff --git a/src/pages/localTool/standCalendar/index.vue b/src/pages/localTool/standCalendar/index.vue index 24e890362..a00639dc4 100644 --- a/src/pages/localTool/standCalendar/index.vue +++ b/src/pages/localTool/standCalendar/index.vue @@ -174,10 +174,11 @@ - + @@ -339,7 +340,13 @@ export default { // 议题选中时储存数组 deleteTable: [], loading: false, - dialogTitle: '' + dialogTitle: '', + + datePicker: { + disabledDate(date) { + return date.getTime() < Date.now() - 24 * 60 * 60 * 1000 + } + } } }, mounted() { @@ -819,6 +826,19 @@ export default { @import '~@/assets/styles/style'; .standCalendar { + .content_form { + /deep/.el-input--suffix .el-input__inner { + border: 0; + } + label-input-form { + .picker_style { + margin-bottom: 0; + min-height: 50px; + line-height: 50px; + border-bottom: 1px dashed #e5e5e5; + } + } + } .date-picker { .item { /deep/ .el-input { @@ -874,6 +894,7 @@ export default { margin-top: 50px; } + .card_info { height: 190px; margin-top: 10px; diff --git a/src/pages/processCenter/pages/creatProcess/bzhHy-ch/step1.vue b/src/pages/processCenter/pages/creatProcess/bzhHy-ch/step1.vue index 31875535c..ce92499e4 100644 --- a/src/pages/processCenter/pages/creatProcess/bzhHy-ch/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzhHy-ch/step1.vue @@ -82,6 +82,7 @@ @@ -453,7 +454,13 @@ export default { isSubmit: false, saveLoading: false, commentInfo: '', - bpnId: '' + bpnId: '', + // 设置当前日期之前不可选择 + datePicker: { + disabledDate(date) { + return date.getTime() < Date.now() - 24 * 60 * 60 * 1000 + } + } } }, mounted() {