123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_top">
- <view class="Scanning_top_icon">
- <text class="cubeic-ok newicon newicon-duigou"></text>
- <view class="text1"> 签到成功 </view>
- </view>
- <view class="Scanning_top_text">
- 您已到达{{queryObj.dept}},请核对填写以下标本信息
- </view>
- </view>
- <view class="Scanning_cont">
- <view class="Scanning_cont_head">
- <view class="Scanning_cont_head_item" :class="{active: type == key}" v-for="(item, key) in typeList" :key="item.id" @click="clickTab(key)">
- {{item.name}}
- </view>
- </view>
- <view class="Scanning_cont_list">
- <view class="Scanning_cont_list_item Scanning_cont_list_head">
- <view class="name" v-if="type === 'patient'">
- 患者名称<text class="red">({{typeList.patient.titleCount}})</text>
- </view>
- <view class="name" v-if="type === 'specimenDesc'">
- 项目名称<text class="red">({{typeList.specimenDesc.titleCount}})</text>
- </view>
- <view class="value" v-if="type === 'patient'">
- <view>
- 标本数量<text class="red">({{typeList.patient.count}})</text>
- </view>
- </view>
- <view class="value" v-if="type === 'specimenDesc'">
- <view>
- 标本数量<text class="red">({{typeList.specimenDesc.count}})</text>
- </view>
- </view>
- </view>
- <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
- <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="(item, j) in dataList" :key="j">
- <view class="name" v-if="type === 'patient'">
- {{item.patientname}}
- </view>
- <view class="name" v-if="type === 'specimenDesc'">
- {{item.specimen_desc}}
- </view>
- <view class="value">
- <view>
- {{item.count}}
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- <view class="foot_btn">
- <view class="btn" @click="goBack()"> 取消 </view>
- <view class="btn" @click="onClick()" v-if="dataList.length"> 确认交接 </view>
- </view>
-
- <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
- @cancel="hosCancel" :content="hosModels.content">
- </selectAccount>
-
- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
- @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "@/http/http.js";
- export default {
- data() {
- return {
- hosId: uni.getStorageSync('userData').user.currentHospital.id,
- type: 'patient',
- queryObj: {},
- typeList: {
- "patient": {
- id: -1,
- name: '患者标本',
- count: 0,
- titleCount: 0,
- },
- "specimenDesc": {
- id: -2,
- name: '检验项目',
- count: 0,
- titleCount: 0,
- }
- },
- dataList: [],
-
- hosModels: {
- disjunctor: false,
- },
-
- models: {
- disjunctor: false,
- },
- };
- },
- methods: {
- ok(){
- this.models.disjunctor = false;
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/simple/data/fetchDataList/taskType", {
- "idx": 0,
- "sum": 1,
- "taskType": {
- "hosId": {
- "id": this.hosId
- },
- "associationType": {
- "key": "association_types",
- "value": "specimen"
- }
- }
- }).then((result) => {
- uni.hideLoading();
- if (result.status == 200) {
- if(result.list.length){
-
- if(result.list[0].carryingCourses[1].handoverSwitch){
- this.showSelectAccount();
- }else{
- this.orderDeptHandler();
- }
- }else{
- uni.showToast({
- icon: "none",
- title: "请配置标本配送任务类型!",
- });
- }
- } else {
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- });
- },
-
- cancel() {
- this.models.disjunctor = false;
- },
-
- allStart() {
- this.models = {
- disjunctor: true,
- title: "提示",
- content: "是否确定交接?",
- icon: "warn",
- operate: {
- ok: "确定",
- cancel: "取消",
- },
- };
- },
-
- hosOk(data) {
- console.log(data);
- const {
- accountName,
- account,
- accountId
- } = data;
- if (!accountName && !account) {
-
- uni.showModal({
- title: "提示",
- content: "请填写交接人工号!",
- showCancel: false,
- success: function(res) {
- if (res.confirm) {
- console.log("用户点击确定");
- } else if (res.cancel) {
- console.log("用户点击取消");
- }
- },
- });
- return;
- } else if ((!accountName && account) || (accountName && !account)) {
-
- uni.showModal({
- title: "提示",
- content: "请填写正确的交接人工号!",
- showCancel: false,
- success: function(res) {
- if (res.confirm) {
- console.log("用户点击确定");
- } else if (res.cancel) {
- console.log("用户点击取消");
- }
- },
- });
- return;
- }
- this.hosModels.disjunctor = false;
- this.orderDeptHandler(data);
- },
-
- hosCancel() {
- this.hosModels.disjunctor = false;
- },
-
- showSelectAccount() {
- this.hosModels = {
- content: '确定交接完成,请输入交接人员工号',
- disjunctor: true,
- };
- },
- orderDeptHandler(accountObj){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/workerOrder/ordersSpeSign", {
- deptId: this.queryObj.deptId,
- orderIds: JSON.parse(this.queryObj.ids).toString(),
- handover: accountObj ? accountObj.accountId : undefined
- }).then((result) => {
- uni.hideLoading();
- if (result.state == 200) {
- uni.navigateTo({
- url: `/pages/specimenOrderComplete/specimenOrderComplete?deptName=${this.queryObj.dept}&ids=${this.queryObj.ids}`
- })
- } else {
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- });
- },
- goBack(){
- uni.navigateBack();
- },
- clickTab(key){
- this.type = key;
- this.initData();
- },
- onClick(){
- this.allStart();
- },
- clickRow(data){
- uni.navigateTo({
- url: `/pages/specimenDetail/specimenDetail?speIds=${data.ids || ''}`
- })
- },
- getInfo(type){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/workerOrder/ordersSpeInfo", {
- type,
- deptId: this.queryObj.deptId,
- orderIds: JSON.parse(this.queryObj.ids).toString(),
- }).then((result) => {
- uni.hideLoading();
- if (result.state == 200) {
- this.typeList[type].count = result.count || 0;
- this.typeList[type].titleCount = result.title || 0;
- if(this.type === type){
- this.dataList = result.data || [];
- }
- } else {
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- });
- },
- initData(){
- this.getInfo('patient');
- this.getInfo('specimenDesc');
- },
- },
- onShow(){
-
- uni.$off('scan')
-
- },
- onLoad(options) {
- console.log(options, "result");
- this.queryObj = options;
- this.initData();
-
- webHandle("no", "app");
-
-
- webHandle("no", "wx");
-
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background-color: #fafbfd;
- .Scanning_top {
- flex-shrink: 0;
- .Scanning_top_icon {
- padding-top: 26rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .cubeic-ok {
- font-size: 58rpx;
- color: #35b34a;
- }
- .text1 {
- font-size: 48rpx;
- font-weight: bold;
- }
- }
- .Scanning_top_text{
- text-align: center;
- font-size: 28rpx;
- font-weight: bold;
- padding: 8rpx 0 23rpx 0;
- }
- }
- .Scanning_cont {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- width: 710rpx;
- margin: 0 20rpx;
- background-color: #fff;
- .Scanning_cont_head{
- flex-shrink: 0;
- height: 78rpx;
- display: flex;
- border-top: 1rpx solid #EEEEEE;
- border-bottom: 1rpx solid #EEEEEE;
- .Scanning_cont_head_item{
- flex: 1;
- font-size: 28rpx;
- font-weight: bold;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- &.active{
- color: #49B856;
- &::before{
- content: '';
- width: 70rpx;
- height: 10rpx;
- background-color: #49B856;
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- border-radius: 6rpx;
- }
- }
- &::after{
- content: '';
- width: 2rpx;
- height: 44rpx;
- background-color: #D1D1D1;
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- &:last-of-type::after{
- opacity: 0;
- }
- }
- }
- .Scanning_cont_list{
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- .Scanning_cont_list_scroll{
- flex: 1;
- min-height: 0;
- }
- .Scanning_cont_list_item{
- height: 70rpx;
- display: flex;
- align-items: center;
- font-size: 28rpx;
- border-bottom: 1rpx solid #CCCCCC;
- &.Scanning_cont_list_head{
- font-weight: bold;
- font-size: 28rpx;
- border-bottom: none;
- flex-shrink: 0;
- }
- .name,
- .value{
- padding: 0 40rpx;
- flex: 1;
- }
- .value {
- view{
- width: 7em;
- text-align: center;
- }
- }
- }
- }
- }
- .foot_btn {
- flex-shrink: 0;
- line-height: 66rpx;
- display: flex;
- justify-content: center;
- .btn {
- height: 66rpx;
- flex: 1;
- margin-right: 1%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- color: #fff;
- border-radius: 8rpx;
- font-size: 28rpx;
- text-align: center;
- &:last-of-type{
- margin-right: 0;
- }
- }
- }
- }
- </style>
|