diff --git a/src/views/followupentry/components/followReview.vue b/src/views/followupentry/components/followReview.vue index 1c1350526389377203c053dbfb134e8e35e2916f..acc0e958a881fe830cef0b98fc93bf11fef708fb 100644 --- a/src/views/followupentry/components/followReview.vue +++ b/src/views/followupentry/components/followReview.vue @@ -1,23 +1,39 @@ @@ -842,35 +282,4 @@ export default { } } } -.follow-form { - ::v-deep { - .el-collapse-item__header { - // border-width: 0px 0px 0px; - border: none !important; - } - .row24 { - border-top: 1px solid #cccccc; - } - .custom-form-item { - border-width: 1px 0px 0px; - } - .el-collapse-item { - margin-bottom: 20px; - border-radius: 4px; - overflow: hidden; - border: 1px solid #cccccc; - } - .el-collapse-item:not(:last-child) { - } - .el-collapse-item__wrap { - border: none; - } - // .row24.el-col-lg-12:nth-child(2n) { - // border-width: 0px 0px 0px 1px; - // } - .el-form-item { - padding: 0px; - } - } -} diff --git a/src/views/followupentry/followaudit.vue b/src/views/followupentry/followaudit.vue index bdc43cd299b30b3d116e1f8bbeec49c788614ce6..a73549c7ef11e88fba59c9601fbf0b5947226a68 100644 --- a/src/views/followupentry/followaudit.vue +++ b/src/views/followupentry/followaudit.vue @@ -208,7 +208,7 @@ export default { // } }, created() { - this.getDetail() + // this.getDetail() }, computed: { unionId() { @@ -218,6 +218,7 @@ export default { methods: { showDialog(val, index) { console.log("显示框", val) + this.curBtn = index + 1 if (!this.editStatus) { if (this.curBtn == 1) { @@ -228,6 +229,7 @@ export default { //获取审核标签 this.getSysCheckNote() } else { + d this.rules.reason[0].message = "请输入驳回修改建议" } this.$refs.publicDialog.dialogVisible = true diff --git a/src/views/followupentry/index.vue b/src/views/followupentry/index.vue index 271ab6a6e99d67d2b7b564da5242d93915c2bd5e..a137a0c55cf1c0defaaa4f2539f198b9eb501c41 100644 --- a/src/views/followupentry/index.vue +++ b/src/views/followupentry/index.vue @@ -8,7 +8,9 @@ :disabled="disabled" :tab-disabled="tabDisabled" :get-data="getData" + :contrast="true" :patient-id="patientId" + :screenList="screenList" @refreshData="refreshData" > @@ -26,6 +28,13 @@ export default { disabled: false, tabDisabled: true, refreshFlag: true, + screenList: [ + { + time: "2020-12-12 11:11:11", + code: "UK102", + name: "修改第一次随访计划", + }, + ], } }, provide() { diff --git a/src/views/screening/components/ConfigForms.vue b/src/views/screening/components/ConfigForms.vue index d6dec73a3a7a672c988807398d9b3b40d3777a2e..ebfba4f213484382ca965552cf35223353830488 100644 --- a/src/views/screening/components/ConfigForms.vue +++ b/src/views/screening/components/ConfigForms.vue @@ -6,7 +6,10 @@ $route.path === '/screening/draft' ? 'p_padding' : '', ]" > -
+
+ +
+
    +
  • +
    {{ item.time }}
    +
    {{ item.code }}
    +
    {{ item.name }}
    +
  • +
+
+
@@ -146,6 +160,7 @@ export default { mixins: [mixin], props: { disabled: Boolean, + screenList: Array, tabDisabled: { type: Boolean, default: true }, formType: String, patientId: String, @@ -153,6 +168,7 @@ export default { operation: String, isDraft: String, getData: { type: Boolean, default: true }, + contrast: { type: Boolean, default: false }, }, inject: { tabFollowId: { @@ -381,6 +397,32 @@ export default {