123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <template>
- <view class="changeHospital" v-show="disjunctor">
- <view class="changeHospital__wrap">
- <view class="changeHospital__header" v-if="title">
- {{ title }}
- </view>
- <view class="changeHospital__article">
- <view class="uni-list-cell">
- <view class="uni-list-cell-left">
- {{name}}:
- </view>
- <view class="uni-list-cell-db">
- <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
- @input="bindPickerChange($event)" />
- </view>
- </view>
- <view class="uni-list-cell">
- <view class="uni-list-cell-left">
- 检验项目:
- </view>
- <view class="uni-list-cell-db-text">
- <text v-show="!loading">{{spe.specimenDesc||'无'}}</text>
- <view class="sk-circle" v-show="loading">
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- </view>
- </view>
- </view>
- <view class="uni-list-cell">
- <view class="uni-list-cell-left">
- 标本类型:
- </view>
- <view class="uni-list-cell-db-text">
- <text v-show="!loading">{{ spe.stype ? spe.stype.name : "无" }}</text>
- <view class="sk-circle" v-show="loading">
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- </view>
- </view>
- </view>
- <view class="uni-list-cell">
- <view class="uni-list-cell-left">
- 患者姓名:
- </view>
- <view class="uni-list-cell-db-text">
- <text v-show="!loading">{{spe.patientName || '无'}}</text>
- <view class="sk-circle" v-show="loading">
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- <view class="sk-circle-dot"></view>
- </view>
- </view>
- </view>
- </view>
- <view class="changeHospital__footer">
- <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
- {{ operate.ok || "" }}
- </view>
- <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
- {{ operate.cancel || "" }}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- post
- } from "../../http/http.js";
- export default {
- data() {
- return {
- cValue: '', //当前输入的标本编码
- loading: false,
- userData: null,
- hosId: null,
- timer: null,
- spe: {}, //标本对象
- account: '', //交接人工号
- accountName: '', //交接人姓名
- accountId: '' //交接人ID
- };
- },
- watch: {
- disjunctor(newValue) {
- if (newValue && this.operate.know == "知道了") {
- this.time = 5;
- this.timer = setInterval(() => {
- this.time--;
- if (this.time <= 0) {
- clearInterval(this.timer);
- this.know();
- }
- }, 1000);
- }
- },
- },
- props: {
- // 显示隐藏
- disjunctor: {
- type: Boolean,
- default: false,
- },
- // 标题
- title: {
- type: String,
- default: "提示",
- },
- // 操作按钮文字
- operate: {
- type: Object,
- default: () => {
- return {
- ok: "确认",
- cancel: "取消",
- };
- },
- },
- name: {
- type: String,
- default: '标本编码'
- }
- },
- methods: {
- //修改picker的值
- bindPickerChange(e) {
- this.spe = {};
- this.loading = true;
- this.cValue = e.target.value;
- clearTimeout(this.timer);
- if (this.cValue.length <= 4) {
- this.spe = {};
- this.loading = false;
- return;
- }
- this.timer = setTimeout(() => {
- let nAccount = e.target.value;
- post("/simple/data/fetchDataList/specimen", {
- "idx": 0,
- "sum": 1,
- "specimen": {
- "searchType": 1, //只有这里需要
- "hosId": this.hosId,
- "scode": e.target.value,
- "wxSign": "1",
- }
- }).then(result => {
- if (result.status == 200) {
- if (this.cValue === nAccount) {
- if (result.list && result.list.length) {
- //有值
- this.spe = result.list[0];
- } else {
- // 没值
- this.spe = {};
- }
- this.loading = false;
- }
- } else {
- this.spe = {};
- this.loading = false;
- }
- }).catch(err => {
- this.spe = {};
- this.loading = false;
- })
- }, 500)
- },
- // 确定
- ok() {
- this.$emit("ok", this.spe);
- },
- // 取消
- cancel() {
- this.$emit("cancel");
- },
- },
- created() {
- this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
- }
- };
- </script>
- <style lang="less" scoped>
- .changeHospital {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.2);
- z-index: 999;
- .uni-list-cell {
- width: 90%;
- display: flex;
- flex-direction: row;
- justify-content: space-evenly;
- align-items: center;
- text-align: center;
- margin-top: 32rpx;
- .uni-list-cell-left {
- flex: 3;
- font-size: 32rpx;
- color: #666;
- }
- .uni-list-cell-db {
- border: 1px solid #e5e9ed;
- background-color: #fff;
- padding: 16rpx 0;
- flex: 5;
- }
- .uni-list-cell-db-text {
- flex: 5;
- text-align: left;
- }
- }
- .changeHospital__wrap {
- width: 90vw;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background-color: #fff;
- border-radius: 12rpx;
- color: #666;
- .changeHospital__header {
- font-size: 36rpx;
- color: #000;
- height: 84rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .changeHospital__article {
- width: 90%;
- margin: 0 auto 25rpx;
- padding: 48rpx 0;
- background-color: rgb(249, 250, 251);
- border: 2rpx solid rgb(229, 233, 237);
- border-radius: 12rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- &.p0 {
- padding: 0;
- }
- .changeHospital__icon {
- font-size: 138rpx;
- margin-bottom: 32rpx;
- &.changeHospital__icon--success {
- color: rgb(52, 179, 73);
- }
- &.changeHospital__icon--warn {
- color: rgb(245, 165, 35);
- }
- &.changeHospital__icon--error {
- color: rgb(255, 58, 82);
- }
- }
- .changeHospital__content {
- font-size: 36rpx;
- }
- .changeHospital__info {
- font-size: 32rpx;
- color: rgb(102, 102, 102);
- }
- .specialCloseFlag {
- width: 90%;
- height: 100%;
- padding: 16rpx;
- }
- .radio-wrap {
- .radio-item {
- margin-top: 16rpx;
- /deep/ .uni-radio-input-checked {
- background-color: #49b856 !important;
- border-color: #49b856 !important;
- }
- }
- }
- }
- .changeHospital__footer {
- box-sizing: border-box;
- height: 100rpx;
- border-top: 2rpx solid rgb(229, 233, 237);
- display: flex;
- align-items: center;
- view {
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 36rpx;
- color: rgb(102, 102, 102);
- position: relative;
- &:nth-of-type(2)::before {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- width: 2rpx;
- height: 87rpx;
- background-color: rgb(229, 233, 237);
- }
- }
- .changeHospital__ok {
- flex: 1;
- color: rgb(73, 184, 86);
- }
- .changeHospital__cancel {
- flex: 1;
- }
- .changeHospital__know {
- flex: 1;
- color: rgb(73, 184, 86);
- }
- }
- }
- }
- </style>
|