FormTab.vue 14.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
<template>
  <el-container>
    <el-main v-loading="pageLoading" class="transition-box">
      <!-- <i
        v-if="contrast"
        :class="asideShow ? 'el-icon-s-unfold' : 'el-icon-s-fold'"
        :title="asideShow ? '收起' : '展开'"
        class="arrow"
        @click="asideShow = !asideShow"
      ></i>-->
      <el-empty v-if="isEmpty" description="暂无数据"></el-empty>
      <template v-if="!isEmpty">
        <!-- 多次记录 -->
        <el-row v-if="form.fillType === 1">
          <!-- <tags-scroll-bar
            v-if="repeatedlyList.length > 0"
            ref="tags"
            :tags-list="repeatedlyList"
            :props="{ label: 'time' }"
            :disabled="disabled"
            @change="changeRepeate"
            @add="handleAdd"
          ></tags-scroll-bar> -->
        </el-row>
        <el-row class="header">
          <!-- <template v-if="formData.percent.autoPercent">
            <span class="label">自动采集完整度:</span>
            <span class="value">{{ formData.percent.autoPercent }}%</span>
          </template>
          <template v-if="formData.percent.personalPercent">
            <span class="label">人工补录完整度:</span>
            <span class="value"
              >{{ formData.percent.personalPercent }}%</span
            ></template
          >-->

          <div class="label">
            <!-- 仅显示重要字段 : -->
          </div>
          <div class="value">
            <!-- <el-switch v-model="isShowImprotant" @change="imFieldChange">
            </el-switch>-->
          </div>
        </el-row>
        <div
          ref="my-form"
          class="my-form"
          :style="{
            height:
              $route.path == '/screening/index'
                ? 'calc(100vh - 245px)'
                : $route.path == '/screening/draft'
                ? 'calc(100vh - 249px)'
                : 'calc(100vh - 203px)',
          }"
          :class="externalScroll ? 'no-scroll' : ''"
        >
          <!-- <read-form
            ref="form"
            :options="survivalForm"
            v-if="survivalFlag"
          ></read-form>-->
          <custom-form
            ref="form"
            :options="widgetFormPreview"
            :form-edit="formData.formEdit"
            @scrollTop="scrollTop"
            @handleConfirm="handleConfirm"
            @onPrev="onPrev"
            @temporaryConfirm="temporaryConfirm"
          ></custom-form>
        </div>
      </template>
    </el-main>
  </el-container>
</template>
<script>
import {
  getPatientDetail,
  getRecordList,
  getFollowDetail,
} from "@/api/patient.js"
import { getFormDetail } from "@/api/field"
import CustomForm from "@/components/FormComponents/CustomForm/index"
import ReadForm from "@/components/FormComponents/ReadForm/index"
import TagsScrollBar from "@/components/TagsScrollBar/index"
export default {
  name: "FormTab",
  components: { CustomForm, TagsScrollBar, ReadForm },
  props: {
    activeName: String,
    externalScroll: Boolean, //外部滚动
    disabled: Boolean,
    getData: Boolean,
    // contrast: Boolean, //同屏对照
    form: Object,
    formType: String,
    patientId: String,
    patientStandbyId: String,
    newformRecordId: String,
    getAll: Boolean, // 获取页面所有数据
    survivalFlag: Boolean, //存活的显示
    formEdit: {},
    formInitial: {},
    operation: String, // !默认新增,传入为edit为编辑需要传formRecordId
    isDraft: {
      type: String,
      default: "",
    },
    followId: String,
  },
  provide() {
    return {
      formId: this.form.formId,
      getPatientId: () => {
        return this.patientId || this.patientStandbyId
      },
    }
  },
  inject: {
    tabFollowId: {
      type: Function,
      default: () => {},
    },
  },
  data() {
    return {
      btnType: "",
      isShowImprotant: false,
      asideShow: false,
      widgetFormPreview: {},
      formData: {
        formEdit: {},
        percent: {},
        formRecordId: null,
      },
      loading: false,
      formloading: false,
      repeatedlyList: [],
      formCacheList: [],
      survivalForm: {
        column: [],
        labelPosition: "right",
        labelSuffix: "",
        labelWidth: 100,
        gutter: 0,
        menuBtn: true,
        submitBtn: true,
        submitText: "提交",
        emptyBtn: true,
        emptyText: "清空",
        nextTabBtn: true,
        nextTabText: "下一页",
        menuPosition: "center",
        group: [],
      },
    }
  },
  // mixins: [resizeMixin],
  computed: {
    isEmpty() {
      return !(Object.keys(this.widgetFormPreview) || this.widgetFormPreview)
        .length
    },
    getTabFollowId() {
      return this.tabFollowId()
    },
    // sideWidth() {
    //   return this.asideShow ? "200px" : "0px"
    // },
    pageLoading() {
      return this.loading || this.formloading
    },
  },
  watch: {
    formEdit(val) {
      console.log("回显3", val)
    },
    formInitial: {
      handler(v) {
        if (v) {
          this.$set(this.formData, "formEdit", { ...v })
          console.log(this.formData.formEdit)
        }
      },
      deep: true,
    },
  },
  created() {
    if (
      this.formType == "2" &&
      sessionStorage.getItem("formEdit") &&
      this.activeName == "index0"
    ) {
      let data = JSON.parse(sessionStorage.getItem("formEdit"))
      for (const key in data) {
        if (typeof data[key] == "number") {
          data[key] = data[key] + ""
        }
      }
      // data.follow_contents = JSON.parse(
      //   data.follow_contents.replace(/"\"/g, "")
      // )
      this.formData.formEdit = data
    }
    this.initForm() //! 随防筛查通用的设置form
    if (this.getAll) {
      // 监听patientId 获取页面所有数据
      this.$watch(
        "patientId",
        () => {
          this.initData()
        },
        { immediate: true }
      )
    } else {
      console.log(206, this.getData)
      // 监听form.silent 获取当前tab页数据
      if (this.getData) {
        this.$watch(
          "form.silent",
          () => {
            this.initData()
          },
          { immediate: true }
        )
      } else {
        this.$nextTick(() => {
          this.$refs.form && this.$refs.form.resetForm()
        })
      }
    }
  },
  mounted() {
    //! 设置新增判断
    if (this.$route.path == "/screening/add") {
      // this.handleAdd()
      if (!this.formData.formRecordId) {
        this.handleAdd()
      }
    }
  },
  methods: {
    resetForm() {
      this.$refs.form.resetForm(false)
      this.$refs.form.showError(false)
      // 清理年龄的回显
      this.$refs.form.clearAge()
    },
    initData() {
      console.log("初始化", this.formData)
      this.formData.formRecordId = null
      this.formCacheList = []
      this.getPatientDetail()
      if (this.form.fillType === 1) {
        this.$nextTick(() => {
          this.$refs.form && this.$refs.form.resetForm()
        })
        this.getRecordList()
      }
    },
    // 临时保存
    temporarySave() {
      this.$refs.form.temporarySave()
    },
    // 临时保存确定
    temporaryConfirm(data, done) {
      let params = {
        data,
        formId: this.form.formId, // 每个大表单的id
        patientId: this.patientId || this.patientStandbyId,
        // formRecordId: this.formData.formRecordId || this.newformRecordId, // 是否为编辑的表单id
        statusMap: {
          patient_from: this.$store.getters["table/selectedIndex"],
          is_draft: 1, //是否为草稿
          check_status: 1, // 审核状态
        },
      }
      if (this.operation && this.operation == "edit") {
        params.formRecordId = this.formData.formRecordId || this.newformRecordId // 是否为编辑的表单id
      }
      this.$emit("temporaryConfirm", params, done, (res) => {
        // 多次填写的表单新增时,获取最新数据
        if (this.form.fillType === 1 && !this.formData.formRecordId) {
          this.getRecordList(res.data.formRecordId)
        }
        this.formatData(res, this.form.fillType !== 1)
      })
    },
    handleConfirm(data, done) {
      let params = {
        data,
        formId: this.form.formId, // 每个大表单的id
        patientId: this.patientId || this.patientStandbyId,
        // formRecordId: this.formData.formRecordId || this.newformRecordId, // 是否为编辑的表单id
        statusMap: {
          patient_from: this.$store.getters["table/selectedIndex"],
          is_draft: this.activeName == "index5" ? 0 : 1, //是否为草稿
          check_status: 1, // 审核状态
        },
      }
      if (this.operation && this.operation == "edit") {
        params.formRecordId = this.formData.formRecordId || this.newformRecordId // 是否为编辑的表单id
      }
      if (this.isDraft) {
        params.statusMap.is_draft = this.isDraft
      }
      // 处理followId 针对随访查询的列表数据的查询和修改操作
      if (this.$route.path == "/followupentry" && this.activeName != "index0") {
        params.followId = this.followId || this.getTabFollowId
      }
      this.$emit("handleConfirm", params, done, (res) => {
        // 多次填写的表单新增时,获取最新数据
        if (this.form.fillType === 1 && !this.formData.formRecordId) {
          this.getRecordList(res.data.formRecordId)
        }
        this.formatData(res, this.form.fillType !== 1)
      })
    },
    onPrev(done) {
      this.$emit("onPrev", done)
    },
    scrollTop() {
      this.$refs["my-form"].scrollTop = 0
    },

    handleAdd() {
      console.log("触发新增", this.form)
      this.$refs.form && this.$refs.form.resetForm()
      this.formData = {
        formEdit: {},
        percent: {},
        formRecordId: null,
      }
    },
    // 切换时间
    changeRepeate(index) {
      const item = this.repeatedlyList[index]
      if (item.id === this.formData.formRecordId) return
      const data = this.formCacheList.find((_) => _.formRecordId === item.id)
      if (data) {
        this.$refs.form && this.$refs.form.resetForm()
        this.formData = data
        return
      }
      this.formData.formRecordId = item.id
      this.getPatientDetail()
    },

    imFieldChange(val) {
      this.$refs.form.imFieldChange(val)
    },
    initForm() {
      this.formloading = true
      if (this.form.formJson) {
        const obj = eval("(" + this.form.formJson + ")")
        if (this.disabled) {
          obj.menuBtn = false
          obj.disabled = true
          obj.detail = true
        }
        setTimeout(() => {
          this.widgetFormPreview = obj
          this.formloading = false
        }, 100)
        return
      }
      getFormDetail(this.form.formId)
        .then((res) => {
          if (res.code === 1 && res.data) {
            const formJson = res.data.formJson
            this.$emit("setFormJson", formJson)
            const obj = eval("(" + formJson + ")")
            if (this.disabled) {
              obj.menuBtn = false
              obj.disabled = true
              obj.detail = true
            } else if (res.data.name == "风险评估") {
              obj.detail = true
            }
            this.widgetFormPreview = obj
          }
        })
        .finally(() => {
          this.formloading = false
        })
    },

    getPatientDetail() {
      this.$nextTick(() => {
        this.$refs.form && this.$refs.form.resetForm()
      })
      if (!this.patientId || this.form.silent) return
      this.loading = true
      if (this.formType == 2) {
        getFollowDetail({
          followId: this.followId || this.getTabFollowId,
          formId: this.form.formId,
          formRecordId: this.formData.formRecordId,
        })
          .then((res) => {
            this.formatData(res)
          })
          .finally(() => {
            this.loading = false
          })
      } else {
        getPatientDetail({
          patientId: this.patientId,
          formId: this.form.formId,
          formRecordId: this.formData.formRecordId,
        })
          .then((res) => {
            this.formatData(res)
          })
          .finally(() => {
            this.loading = false
          })
      }
    },
    formatData(res, cache) {
      const d = res.data || {}
      const form = d.data || {}
      for (const key in form) {
        Object.prototype.toString.call(form[key]) == "[object Number]"
          ? (form[key] = String(form[key]))
          : ""
      }
      if (form["YZZKJC"] && typeof form["YZZKJC"] === "string") {
        form["YZZKJC"] = JSON.parse(form["YZZKJC"])
      }
      console.log("form形成", form, this.formData)
      if (!cache) {
        this.formData.formEdit = form
      }
      this.formData.formRecordId = d.formRecordId
      this.formData.percent = d.percent || {}
      const index = this.formCacheList.findIndex(
        (_) => _.formRecordId === d.formRecordId
      )
      if (index > -1) {
        this.formCacheList.splice(index, 1, this.deepClone(this.formData))
      } else {
        this.formCacheList.push(this.deepClone(this.formData))
      }
    },
    // 表单数据转化
    formatString(form) {
      for (const key in form) {
        Object.prototype.toString.call(form[key]) == "[object Number]"
          ? (form[key] = String(form[key]))
          : ""
      }
      this.formData.formEdit = form
    },
    getRecordList(formRecordId) {
      console.log("获取表单id", formRecordId)
      if (!this.patientId) return
      getRecordList({
        patientId: this.patientId,
        formId: this.form.formId,
      }).then((res) => {
        this.repeatedlyList = res.data.map((_, index) => {
          return {
            ..._,
            time: _.createTime,
          }
        })
        this.$nextTick(() => {
          const el = this.$refs.tags
          if (el) {
            el.tabActive =
              formRecordId ||
              (this.repeatedlyList[0] && this.repeatedlyList[0].id)
          }
        })
      })
    },
  },
}
</script>
<style scoped lang="scss">
.el-main {
  position: relative;
  padding: 0;
  // box-shadow: 0px 5px 4px red;

  .arrow {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 22px;
    z-index: 9;
  }
  .header {
    height: 5px;
    box-shadow: 0px 3px 4px rgb(0 21 41 / 8%);
    padding-right: 20px;
    position: relative;
    font-size: 15px;
    z-index: 999;
  }
}
.el-aside {
  padding-left: 10px;
  border-left: 1px solid #ccc;
  .side-content {
    height: calc(100vh - #{"272px"});
    // overflow: auto;
  }
}
.my-form {
  // height: calc(100vh - #{"310px"});
  overflow-y: auto;
  padding-top: 20px;
  // position: relative;
  &::-webkit-scrollbar-thumb {
    background-color: #fff;
  }
  &:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
  }
  &.no-scroll {
    height: auto;
  }
}
.label {
  font-size: 14px;
  color: #8492a6;
  line-height: 38px;
  float: left;
  margin-right: 20px;
}
.value {
  font-size: 14px;
  line-height: 38px;
  float: left;
  font-weight: 600;
  margin-right: 50px;
}
.el-slider {
  float: left;
  width: 150px;
}
</style>