123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_top">
- <view class="Scanning_top_icon">
- <text class="cubeic-ok icon_transport transport-duigou"></text>
- </view>
- <view class="Scanning_top_text">
- <view class="text1"> 签到成功 </view>
- </view>
- </view>
- <view class="Scanning_cont">
- <view>您已到达{{queryObj.deptName}},请核对以下数量</view>
- <view class="table_head">
- <view>科室<text class="red ml16">{{deptTotalCount}}</text></view>
- <view>患者<text class="red ml16">{{patientTotalCount}}</text></view>
- <view>血制品<text class="red ml16">{{bloodTotalCount}}</text></view>
- </view>
- <view class="table_bodys">
- <view class="table_body" v-for="(item, index) in dataList" :key="index" @click="toDetail(item)">
- <view>{{item.dept}}</view>
- <view>{{item.patientCount}}</view>
- <view>{{item.bloodCount}}</view>
- </view>
- </view>
- </view>
- <view class="foot_btn_spe">
- <view class="btn1" @click="complete()" v-if="orderIds">核对完成</view>
- <view class="btn3" @click="goBack()">取消</view>
- </view>
- <!-- 填写交接人工号弹窗 -->
- <selectAccount @click.stop.native v-if="hosModels.disjunctor" :content="hosModels.content" :disjunctor="hosModels.disjunctor" @ok="hosOk"
- @cancel="hosCancel">
- </selectAccount>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "../../http/http.js";
- export default {
- data() {
- return {
- orderIds: '',
- hosId: uni.getStorageSync('userData').user.currentHospital.id,
- // 填写交接人工号弹窗model
- hosModels: {
- disjunctor: false,
- },
- deptTotalCount: 0,
- patientTotalCount: 0,
- bloodTotalCount: 0,
- dataList: [],
- queryObj: {}, //路由传递过来的数据
- };
- },
- methods: {
- // 核对完成
- complete(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post('/simple/data/fetchDataList/taskTypeConfig', {
- idx: 0,
- sum: 1,
- taskTypeConfig: {
- "taskTypeDTO": {
- "hosId": {
- "id": this.hosId
- },
- "ordinaryField": {
- "key": "ordinary_field",
- "value": "blood"
- }
- }
- },
- }).then(res => {
- uni.hideLoading();
- if(res.status == 200){
- let list = res.list || [];
- if(list.length > 0){
- let signTypeList = list[0].signTypeList || [];
- let signType = signTypeList.find( v => v.value == 5 );
- if(signType){
- this.showSelectAccount();
- }else{
- this.checkComplete();
- }
- }else{
- uni.showToast({
- icon: "none",
- title: "请配置血制品任务类型!",
- });
- }
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- // 填写交接人工号-确认
- 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.checkComplete(data);
- },
- // 填写交接人工号-取消
- hosCancel() {
- this.hosModels.disjunctor = false;
- this.flag = true;
- },
- // 填写交接人工号弹窗
- showSelectAccount() {
- this.hosModels = {
- content: "确定核对完成,请输入交接人员工号",
- disjunctor: true,
- };
- },
- checkComplete(accountObj){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- "type": "bloodTake",
- "orderId": 0,
- "orderIds": this.orderIds || undefined,
- };
- if (accountObj) {
- postData.handoverUser = accountObj.accountId;
- }
- post('/transflow/checkComplete', postData).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- uni.navigateTo({
- url: `../receiptpage/receiptpage`,
- });
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- // 返回
- goBack() {
- uni.navigateBack();
- },
- // 跳转血制品列表
- toDetail(data){
- uni.navigateTo({
- url: `../startOrderSignBloodDetail/startOrderSignBloodDetail?bloodIds=${data.bloodIds}&deptName=${data.dept}`,
- });
- },
- //获取页面信息
- getInfo(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post('/transflow/scanInfo', {
- "code": "nb",
- "id": 0,
- "type": "bloodTake",
- "deptOrder": true,
- "deptId": this.queryObj.deptId,
- "taskTypeId": this.queryObj.taskTypeId,
- }).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- this.orderIds = res.data.orderIds;
- this.dataList = res.data.data || [];
- this.deptTotalCount = this.dataList.length;
- this.patientTotalCount = this.dataList.reduce((pre, current) => pre + current.patientCount, 0);
- this.bloodTotalCount = this.dataList.reduce((pre, current) => pre + current.bloodCount, 0);
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- },
- onLoad(options) {
- console.log(options, "result");
- this.queryObj = options;
- this.getInfo();
- // #ifdef APP-PLUS
- webHandle("no", "app");
- // #endif
- // #ifdef H5
- webHandle("no", "wx");
- // #endif
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- padding: 0 20rpx;
- display: flex;
- flex-direction: column;
- height: 100vh;
- .Scanning_top {
- .Scanning_top_icon {
- width: 140rpx;
- height: 140rpx;
- margin: 50rpx auto 40rpx;
- border-radius: 50%;
- .speNum{
- text-align: center;
- font-size: 140rpx;
- }
- .cubeic-ok {
- font-size: 140rpx;
- color: #35b34a;
- }
- .cubeic-close {
- font-size: 140rpx;
- color: #ff3b53;
- }
- }
- .Scanning_top_text {
- .text1 {
- font-size: 48rpx;
- text-align: center;
- }
- .success_tips {
- color: red;
- font-size: 30rpx;
- }
- }
- }
- .Scanning_cont {
- flex: 1;
- text-align: center;
- display: flex;
- flex-direction: column;
- .table_bodys{
- overflow-y: auto;
- flex: 1;
- }
- .table_head{
- display: flex;
- margin-top: 50rpx;
- .ml16{
- margin-left: 16rpx;
- }
- view {
- height: 110rpx;
- line-height: 1;
- flex: 1;
- font-weight: bold;
- color: #000;
- font-size: 38rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .table_body{
- background: #F3FAF7;
- border-radius: 8px;
- border: 1px solid #E9E9E9;
- display: flex;
- margin-bottom: 20rpx;
- padding: 30rpx 20rpx;
- view {
- line-height: 1;
- flex: 1;
- color: #555;
- font-size: 38rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- word-break: break-all;
- }
- }
- }
- .foot_btn_spe {
- line-height: 64rpx;
- height: 64rpx;
- margin-bottom: 40rpx;
- text-align: center;
- display: flex;
- justify-content: space-between;
- view {
- height: 64rpx;
- flex: 1;
- margin: 0 1%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- color: #fff;
- border-radius: 8rpx;
- font-size: 26rpx;
- }
- }
- }
- </style>
|