123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_top">
- <view class="Scanning_top_icon">
- {{workOrder.startDept ? workOrder.startDept.dept : ''}}<text class="newicon newicon-arrow-right-full"></text>{{workOrder.endDeptNames || ''}}
- </view>
- </view>
- <view class="Scanning_cont">
- <view class="column head">
- <view class="value1">单号<text class="red">({{drugsBagList.length}})</text></view>
- <view class="value2">种类数</view>
- <view class="value3">总数</view>
- </view>
- <scroll-view scroll-y class="scrollContent">
- <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
- <view class="value1">{{item.batchNo}}</view>
- <view class="value2">{{item.drugsTypeCount}}</view>
- <view class="value3">{{item.drugsCount}}</view>
- </view>
- </scroll-view>
- </view>
- <view class="foot_btn_spe">
- <view class="column">
- <view class="btn" @click="scanCode()">扫一扫交接</view>
- <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 4 && config.drugsStartManual">{{config.drugsStartManual.name}}</view>
- <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 5 && config.drugsEndManual">{{config.drugsEndManual.name}}</view>
- </view>
- </view>
-
- <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
- @cancel="hosCancel">
- </selectAccount>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "@/http/http.js";
- export default {
- data() {
- return {
- hosId: uni.getStorageSync('userData').user.currentHospital.id,
- drugsBagList: [],
- queryObj: {},
- workOrder: {},
- config: {},
- SMFlag: true,
-
- hosModels: {
- disjunctor: false,
- },
- };
- },
- onShow() {
- this.SMFlag = true;
- },
- methods: {
-
- fillInManually(value){
- if(value == 1){
-
- this.showSelectAccount();
- }
- },
-
- 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.validateAccount(data);
- },
-
- hosCancel() {
- this.hosModels.disjunctor = false;
- this.flag = true;
- },
-
- showSelectAccount() {
- this.hosModels = {
- disjunctor: true,
- };
- },
-
- validateAccount(accountObj){
- const {
- accountName,
- account,
- accountId
- } = accountObj;
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- extraType: 'inputAccountValid',
- type: this.queryObj.drugsBagType,
- orderStateValue: this.workOrder.gdState.value,
- userId: accountId,
- orderId: this.workOrder.id,
- }
- post("/transflow/extra", postData)
- .then((res) => {
- uni.hideLoading();
- if(res.state == 200){
- if(res.data){
- if (res.data.codeBean) {
- if(res.data.codeBean.valid){
- this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, { id: accountId, name: accountName }, res.data.codeBean.departmentDTO);
- }else{
- uni.showToast({
- icon: "none",
- title: res.data.codeBean.msg || "接口获取数据失败!",
- });
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "接口获取数据失败!",
- });
- }
- }else{
- uni.showToast({
- icon: "none",
- title: "接口获取数据失败!",
- });
- }
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
- },
-
- completeOrder(workOrder, queryObj, accountObj){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- "type": queryObj.drugsBagType,
- "orderId": workOrder.id,
- "handover": accountObj ? accountObj.id : undefined,
- };
- post('/transflow/checkComplete', postData).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- uni.showToast({
- icon: "none",
- title: workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
- duration: 60000,
- mask: true,
- complete(){
- setTimeout(() => {
- uni.hideToast();
- uni.redirectTo({
- url: `/pages/receiptpage/receiptpage`,
- });
- }, 2000)
- }
- });
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
-
- pageNavigateByConfig(config, workOrder, queryObj, accountObj, departmentDTO){
- console.log(accountObj, departmentDTO);
- let drugsBagType = queryObj.drugsBagType;
- let orderId = workOrder.id;
- if(workOrder.gdState.value == 4){
-
- if(config.drugsStartPhoto === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj ? accountObj.id : ''}&accountName=${accountObj ? accountObj.name : ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
- });
- }else{
-
- this.completeOrder(workOrder, queryObj, accountObj);
- }
- }else if(workOrder.gdState.value == 5){
-
- if(config.drugsEndPhoto === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj ? accountObj.id : ''}&accountName=${accountObj ? accountObj.name : ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
- });
- }else{
-
- this.completeOrder(workOrder, queryObj, accountObj);
- }
- }
- },
-
- scanCode(){
- if (!this.SMFlag) {
- return;
- }
- this.SMFlag = false;
- SM().then((content) => {
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- type: this.queryObj.drugsBagType,
- orderStateValue: this.workOrder.gdState.value,
- code: content,
- orderId: this.workOrder.id,
- }
- post("/transflow/bigScan", postData)
- .then((res) => {
- this.SMFlag = true;
- uni.hideLoading();
- if (res.codeBean) {
- if(res.codeBean.valid){
- this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, res.codeBean.userDTO, res.codeBean.departmentDTO);
- }else{
- uni.showToast({
- icon: "none",
- title: res.codeBean.msg || "接口获取数据失败!",
- });
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "接口获取数据失败!",
- });
- }
- });
- }).catch(err => {
- this.SMFlag = true;
- });
- },
-
- toDetail(drugsBagId){
- uni.navigateTo({
- url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
- });
- },
-
- init(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId, checkComplete: '1'});
- let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
- "idx": 0,
- "sum": 1,
- "taskTypeConfig": {
- "taskTypeDTO": {
- "hosId": {
- "id": this.hosId
- },
- "ordinaryField": {
- "key": "ordinary_field",
- "value": this.queryObj.drugsBagType
- }
- }
- }
- });
- Promise.all([info$, config$]).then(result => {
- uni.hideLoading();
- let [info, config] = result || [];
- if(info.state == 200){
- if(info.data){
- this.drugsBagList = info.data.drugsBagList || [];
- if(Array.isArray(info.data.workOrder.endDepts)){
- info.data.workOrder.endDeptNames = info.data.workOrder.endDepts.map(v => v.dept).join();
- }
- this.workOrder = info.data.workOrder || {};
- }
- }else{
- uni.showToast({
- icon: "none",
- title: info.msg || "接口获取数据失败!",
- });
- }
- if(config.status == 200){
- let list = config.list || [];
- this.config = list.length ? list[0] : {};
- }else{
- uni.showToast({
- icon: "none",
- title: config.msg || "接口获取数据失败!",
- });
- }
- })
- },
- },
- onLoad(options) {
- console.log(options, "options");
- this.queryObj = options;
- this.init();
-
- webHandle("no", "app");
-
-
- webHandle("no", "wx");
-
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- background: #FAFBFD;
- padding: 0 24rpx;
- display: flex;
- flex-direction: column;
- height: 100vh;
- .Scanning_top {
- margin: 24rpx auto;
- .Scanning_top_icon {
- font-size: 30rpx;
- font-weight: bold;
- .newicon{
- margin: 0 32rpx;
- }
- }
- }
- .Scanning_cont {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- .scrollContent{
- flex: 1;
- min-height: 0;
- }
- .column{
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28rpx;
- padding: 32rpx 24rpx;
- color: #565656;
- border-bottom: 1rpx solid #D9D9D9;
- gap: 8rpx;
- &.head{
- font-size: 30rpx;
- color: #000000;
- border: 1rpx solid #D9D9D9;
- box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
- background: #FBFCFE;
- }
- .value1{
- flex: 2;
- text-align: left;
- word-break: break-all;
- flex-shrink: 0;
- }
- .value2,.value3{
- flex: 1;
- text-align: center;
- word-break: break-all;
- flex-shrink: 0;
- }
- }
- }
- .foot_btn_spe {
- margin: 24rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 24rpx;
- font-weight: bold;
- .column{
- width: 100%;
- height: 78rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 24rpx;
- .btn {
- height: 100%;
- flex: 1;
- background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
- color: #fff;
- border-radius: 4rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- }
- </style>
|