123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- <template>
- <view >
- <u-navbar title="出库单详情"></u-navbar>
- <!-- 出库单状态 -->
- <view class="container">
- <view class="head">
- <view class="photo">
- <u-avatar size="84" :src="outUser.headImg"></u-avatar>
-
- </view>
- <view class="name">
- {{outUser.name}}
- </view>
- <view class="submit">
- 提交了<text>出库申请</text>
- </view>
- <view class="state" :style="{
- color:recordStatusColor(info.status),
- borderColor:recordStatusColor(info.status)
- }">
- {{recordStatus(info.status)}}
- </view>
- </view>
- <!-- 出库单详情 -->
- <view class="details">
- <view class="item">
- <view class="name">
- 所属项目
- </view>
- <view class="value">
- {{info.projectName}}
- </view>
- </view>
- <view class="item">
- <view class="name">
- 需求时间
- </view>
- <view class="value">
- {{info.startTime?info.startTime:'无'}}
- </view>
- </view>
- <view class="item">
- <view class="name">
- 使用周期至
- </view>
- <view class="value">
- {{info.endTime}}
- </view>
- </view>
-
- <view class="item">
- <view class="name">
- 所属项目部
- </view>
- <view class="value">
- {{info.departmentName}}
- </view>
- </view>
- <view class="item">
- <view class="name">
- 申请时间
- </view>
- <view class="value">
- {{info.createTime}}
- </view>
- </view>
- </view>
- <!-- 出库设备清单 -->
- <view class="list">
- <view class="list-head">
- <view class="title">
- 出库设备清单
- </view>
- <view class="amount" @click="gotoUrl('pages/projectDepartment/exportApplication/deliveriedList?id='+id)">
- 全部 <text>{{recordsTotal}}</text> 件设备
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- <!-- 清单信息 -->
- <view class="list-infos" v-for="(item,i) in outRecordDeviceList" :key="i" >
- <view class="infos-head">
- <view class="name">
- {{item.deviceName}}
- </view>
- <view class="state">
- {{item.statusN}}: <text>{{item.needCount}}</text>
- </view>
- </view>
- <view class="infos">
- <view class="infos-1">
- <view class="infos-item">
- <view class="item-name">
- 厂家:
- </view>
- <view class="item-value">
- {{item.deviceInfo.manufactor}}
- </view>
- </view>
- <view class="infos-item">
- <view class="item-name">
- 单位:
- </view>
- <view class="item-value">
- {{item.deviceInfo.unit}}
- </view>
- </view>
- </view>
- <view class="infos-2">
- <view class="infos-item">
- <view class="item-name">
- 规格:
- </view>
- <view class="item-value">
- {{item.deviceInfo.specifications}}
- </view>
- </view>
- <view class="infos-item">
- <view class="item-name">
- 型号:
- </view>
- <view class="item-value">
- {{item.deviceInfo.model}}
- </view>
- </view>
- </view>
-
- </view>
-
- </view>
- <u-divider @click="gotoUrl('pages/projectDepartment/exportApplication/deliveriedList?id='+id)" border-color="#CFD2D5">仅显示部分数据</u-divider>
-
- </view>
- <approveList ref="approveList"
- :outRecordDetailObj="outRecordDetailObj"
- :approveList="approveList"></approveList>
- </view>
- <!-- 确认出库 -->
- <view class="bottom" >
- <!-- <button>确认出库</button> -->
- <u-button v-if="info.status==0" type="revoke" @click="revokeBtn" >撤销</u-button>
- <u-button v-if="info.status==1&&false" type="primary" >签字验收</u-button>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/projectDepartment.js'
- import {
- recordStatus,recordStatusColor
- } from '@/apis/status.js'
- import approveList from "@/components/ApproveList.vue"
-
- export default {
- components: {
- approveList
- },
- data() {
- return {
- id:"",
- info:{
- projectName:"",
- startTime:"",
- endTime:"",
- createTime:"",
- },
- outUser:{
- name:"",
- headImg:""
- },
- outRecordDetailObj:{},
- outRecordDeviceList:[],
- approveList:[],
- recordsTotal:0,
- }
- },
- onLoad(op){
- this.id=op.id
- this.getInfo()
- },
- methods: {
- recordStatusColor,
- recordStatus,
- getList(){
-
- API.outRecordDeviceById({
- recordId:this.id,
- pageSize:3,
- pageIndex:1,
- }).then((res) => {
- uni.hideLoading();
- this.outRecordDeviceList=res.data.data;
- this.recordsTotal=res.data.recordsTotal;
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- revokeMethod(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- API.cancelOutRecord({
- recordId:this.id,
-
- }).then((res) => {
- uni.hideLoading();
-
- this.getInfo(true)
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- revokeBtn(){
- var _this=this
- uni.showModal({
- content:"确认是否撤销?",
- title:"提示",
- success(res) {
-
- if(res.confirm){
- _this.revokeMethod()
- }else{
-
- }
- }
- })
- },
- getInfo(bl){
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- API.outRecordDetail({
- id:this.id,
- }).then((res) => {
- this.outRecordDetailObj=res.data;
- this.info=res.data.outRecord;
- this.approveList=res.data.approveList;
- this.outUser=res.data.outUser;
- if(bl){
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('refreshData');
- uni.hideLoading();
- }else{
- this.getList()
- }
-
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- page {
- padding-bottom: 200rpx;
- }
- // 出库单状态
- .head {
- background-color: #fff;
- padding: 24rpx 32rpx;
- display: flex;
- align-items: center;
- color: #101010;
- font-size: 32rpx;
- .photo {
- width: 84rpx;
- height: 84rpx;
- border-radius: 100rpx;
- .u-avatar{
-
- }
- img {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- }
- .name {
- color: #101010;
- font-size: 32rpx;
- margin-right: 8rpx;
- margin-left: 24rpx;
- max-width: 200rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap
- }
- .submit {
- text {
- color: #3385FF;
- }
- }
- .state {
- line-height: 48rpx;
- padding: 0 24rpx;
- border-radius: 50px;
- background-color: rgba(255, 255, 255, 1);
- color: rgba(51, 133, 255, 1);
- font-size: 12px;
- text-align: center;
- font-family: Arial;
- border: 1px solid rgba(51, 133, 255, 1);
- margin-left: auto;
- }
- }
- // 出库单详情
- .details {
- background-color: #fff;
- margin-top: 24rpx;
- padding: 0 32rpx;
- .item {
- display: flex;
- justify-content: space-between;
- padding: 12rpx 0;
- border-bottom: 1px solid rgba(244, 244, 244, 1);
- .name {
- color: rgba(119, 119, 119, 1);
- }
- .value {
- color: #101010;
- }
- }
- }
- // 出库单列表
- .list {
- background-color: #fff;
- margin-top: 24rpx;
- padding: 22rpx 32rpx;
- .list-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title {
- color: #333333;
- font-size: 32rpx
- }
- .amount {
- color: #777777;
- font-size: 24rpx;
- text {
- color: #3385FF;
- }
- /deep/.u-icon--right {
- margin-left: 8rpx;
- }
- }
- }
- // 清单信息
- .list-infos {
- border-radius: 8px;
- background-color: #F5F6F9;
- margin-top: 24rpx;
- padding: 24rpx;
- .infos-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 24rpx;
- .name {
- color: rgba(51, 51, 51, 1);
- font-size: 32rpx;
- }
- .state {
- color: rgba(0, 81, 255, 1);
- }
- }
- .infos {
- margin-top: 16rpx;
- display: flex;
- color: #777777;
- font-size: 24rpx;
- .infos-1 {
- margin-right: 68rpx;
- }
- .infos-item {
- display: flex;
- margin-bottom: 8rpx;
- .item-value{
- max-width: 200rpx;
- }
- }
- }
- }
- }
-
-
- // .u-time-axis{
- // .u-time-axis-item:last-of-type{
- // margin-bottom: 0;
- // }
- // }
- // 确认出库
- .bottom{
- background-color: #fff;
- margin-top: 44rpx;
- padding: 16rpx 32rpx;
- z-index: 999;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- // uni-button{
- // border-radius: 8px;
- // background: linear-gradient(180deg, rgba(22,119,255,1) 0%,rgba(16,98,213,1) 100%);
- // color: rgba(255, 255, 255, 1);
- // font-size: 32rpx;
- // line-height: 88rpx;
-
- // }
- }
- </style>
|