| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- <template>
- <view class="detail-container">
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="详情"
- background-color="#157A2C"
- color="#fff"
- @clickLeft="back"
- ></uni-nav-bar>
- <scroll-view scroll-y class="detail-content">
- <!-- 基本信息 -->
- <view class="section">
- <view class="section-title">基本信息</view>
- <view class="info-row">
- <text class="label">编码:</text>
- <text class="value highlight">{{ detail.code }}</text>
- </view>
- <view class="info-row">
- <text class="label">类型:</text>
- <text class="value">{{ getTypeText(detail.type) }}</text>
- </view>
- <view class="info-row">
- <text class="label">名称:</text>
- <text class="value">{{ detail.name }}</text>
- </view>
- <view class="info-row">
- <text class="label">紧急程度:</text>
- <text class="value">{{
- detail.priority == 1 ? "一般" : "紧急"
- }}</text>
- </view>
- <view class="info-row">
- <text class="label">请托部门:</text>
- <text class="value">{{ detail.applyDeptName }}</text>
- </view>
- <view class="info-row">
- <text class="label">请托人:</text>
- <text class="value">{{ detail.createUserName }}</text>
- </view>
- <view class="info-row">
- <text class="label">所属工厂:</text>
- <text class="value">{{ detail.applyFactoriesName }}</text>
- </view>
- <view class="info-row">
- <text class="label">受托工厂:</text>
- <text class="value">{{ detail.beEntrustedFactoriesName }}</text>
- </view>
- <view class="info-row">
- <text class="label">受托部门:</text>
- <text class="value">{{ detail.beEntrustedDeptName }}</text>
- </view>
- <view class="info-row">
- <text class="label">执行人:</text>
- <text class="value">{{ detail.executeUserName }}</text>
- </view>
- <view class="info-row">
- <text class="label">是否尾工序:</text>
- <text class="value">{{ detail.isLast == 1 ? "是" : "否" }}</text>
- </view>
- <view class="info-row">
- <text class="label">状态:</text>
- <text class="status-tag" :class="getStatusClass(detail.status)">
- {{ getStatusText(detail.status) }}
- </text>
- </view>
- <view class="info-row">
- <text class="label">审批状态:</text>
- <text
- class="status-tag"
- :class="getApprovalStatusClass(detail.approvalStatus)"
- >
- {{ getApprovalStatusText(detail.approvalStatus) }}
- </text>
- </view>
- <view class="info-row">
- <text class="label">发货状态:</text>
- <text
- class="status-tag"
- :class="getSendStatusClass(detail.sendStatus)"
- >
- {{ getSendStatusText(detail.sendStatus) }}
- </text>
- </view>
- <view class="info-row">
- <text class="label">创建时间:</text>
- <text class="value">{{ detail.createTime }}</text>
- </view>
- </view>
- <!-- 产品信息 -->
- <view class="section">
- <view class="section-title">产品信息</view>
- <view class="info-row">
- <text class="label">产品名称:</text>
- <text class="value">{{ detail.categoryName }}</text>
- </view>
- <view class="info-row">
- <text class="label">产品编码:</text>
- <text class="value">{{ detail.categoryCode }}</text>
- </view>
- <view class="info-row">
- <text class="label">请托数量:</text>
- <text class="value"
- >{{ detail.totalCount }}{{ detail.measuringUnit }}</text
- >
- </view>
- <view class="info-row">
- <text class="label">牌号:</text>
- <text class="value">{{ detail.brandNum }}</text>
- </view>
- <view class="info-row">
- <text class="label">批次号:</text>
- <text class="value">{{ detail.batchNo }}</text>
- </view>
- <view class="info-row">
- <text class="label">规格:</text>
- <text class="value">{{ detail.specification }}</text>
- </view>
- <view class="info-row">
- <text class="label">型号:</text>
- <text class="value">{{ detail.modelType }}</text>
- </view>
- <view class="info-row">
- <text class="label">计划编号:</text>
- <text class="value">{{ detail.productionPlanCode }}</text>
- </view>
- <view class="info-row">
- <text class="label">生产工单号:</text>
- <text class="value">{{ detail.workOrderCode }}</text>
- </view>
- <view class="info-row">
- <text class="label">工艺路线:</text>
- <text class="value">{{ detail.produceRoutingName }}</text>
- </view>
- <view class="info-row">
- <text class="label">BOM分类:</text>
- <text class="value">{{ getBomTypeText(detail.bomType) }}</text>
- </view>
- <view class="info-row">
- <text class="label">BOM版本:</text>
- <text class="value">{{ getBomVersion(detail) }}</text>
- </view>
- <view class="info-row">
- <text class="label">计划开始时间:</text>
- <text class="value">{{ detail.planStartTime }}</text>
- </view>
- <view class="info-row">
- <text class="label">计划结束时间:</text>
- <text class="value">{{ detail.planCompleteTime }}</text>
- </view>
- <view class="info-row">
- <text class="label">完成时间:</text>
- <text class="value">{{ detail.planDeliveryTime }}</text>
- </view>
- <view class="info-row">
- <text class="label">需求描述:</text>
- <text class="value">{{ detail.describes }}</text>
- </view>
- <view v-if="detail.beReason" class="info-row">
- <text class="label">原因:</text>
- <text class="value danger">{{ detail.beReason }}</text>
- </view>
- </view>
- </scroll-view>
- <!-- 底部操作按钮 -->
- <view class="footer-btns">
- <button class="btn-back" @click="handleBack">返回</button>
- <button v-if="canSend" class="btn-send" @click="handleSend">发货</button>
- <button v-if="canReceive" class="btn-receive" @click="handleReceive">
- 收货
- </button>
- <button
- v-if="canViewSendDetail"
- class="btn-detail"
- @click="handleSendDetail"
- >
- 发货详情
- </button>
- </view>
- </view>
- </template>
- <script>
- import { pleaseEntrustDetail } from "@/api/entrust/index";
- export default {
- data() {
- return {
- id: "",
- detail: {},
- };
- },
- computed: {
- canSend() {
- return (
- this.detail.approvalStatus == 2 &&
- (this.detail.sendStatus == 0 ||
- !this.detail.sendStatus ||
- this.detail.sendStatus == 5)
- );
- },
- canReceive() {
- return this.detail.approvalStatus == 2 && this.detail.sendStatus == 3;
- },
- canViewSendDetail() {
- return (
- this.detail.approvalStatus == 2 &&
- this.detail.sendStatus != 0 &&
- this.detail.sendStatus &&
- this.detail.sendStatus != 5
- );
- },
- },
- onLoad(options) {
- this.id = options.id;
- this.getDetail();
- },
- methods: {
- async getDetail() {
- try {
- const res = await pleaseEntrustDetail(this.id);
- this.detail = res || {};
- } catch (error) {
- uni.showToast({
- title: "加载失败",
- icon: "none",
- });
- }
- },
- getTypeText(type) {
- const typeMap = { 1: "加工", 2: "装配" };
- return typeMap[type] || "";
- },
- getStatusText(status) {
- const map = { 0: "未提交", 1: "已提交", 2: "已发布" };
- return map[status] || "";
- },
- getStatusClass(status) {
- const map = {
- 0: "status-default",
- 1: "status-warning",
- 2: "status-success",
- };
- return map[status] || "status-default";
- },
- getSendStatusText(sendStatus) {
- const map = {
- 0: "未发货",
- 1: "已发货",
- 2: "已收货",
- 3: "受托已发",
- 4: "请托已收",
- 5: "受托拒收",
- 6: "请托拒收",
- };
- return map[sendStatus] || "未发货";
- },
- getSendStatusClass(sendStatus) {
- if (!sendStatus || sendStatus == 0) return "status-default";
- if (sendStatus == 5 || sendStatus == 6) return "status-danger";
- return "status-success";
- },
- getApprovalStatusText(approvalStatus) {
- const map = { 0: "未提交", 1: "审核中", 2: "审核通过", 3: "审核不通过" };
- return map[approvalStatus] || "未提交";
- },
- getApprovalStatusClass(approvalStatus) {
- const map = {
- 0: "status-default",
- 1: "status-warning",
- 2: "status-success",
- 3: "status-danger",
- };
- return map[approvalStatus] || "status-default";
- },
- getBomTypeText(bomType) {
- const map = { 1: "产品(PBOM)", 2: "加工(MBOM)", 3: "装配(ABOM)" };
- return map[bomType] || "";
- },
- getBomVersion(data) {
- if (data.bomCategoryName) {
- return `${data.bomCategoryName} (V${data.bomCategoryVersions}.0)`;
- }
- return "";
- },
- handleBack() {
- uni.navigateBack();
- },
- handleSend() {
- uni.navigateTo({
- url: `/pages/pda/entrust/goods/goods?id=${this.id}&type=add`,
- });
- },
- handleReceive() {
- uni.navigateTo({
- url: `/pages/pda/entrust/goods/goods?id=${this.id}&type=receipt`,
- });
- },
- handleSendDetail() {
- uni.navigateTo({
- url: `/pages/pda/entrust/goods/goods?id=${this.id}&type=detail`,
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .detail-container {
- display: flex;
- flex-direction: column;
- height: 100vh;
- background-color: #f5f5f5;
- }
- .detail-content {
- flex: 1;
- padding: 20rpx;
- }
- .section {
- background-color: #fff;
- border-radius: 12rpx;
- padding: 24rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.08);
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 24rpx;
- padding-bottom: 16rpx;
- border-bottom: 2rpx solid #f0f0f0;
- }
- }
- .info-row {
- display: flex;
- align-items: flex-start;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- .label {
- color: #999;
- min-width: 200rpx;
- }
- .value {
- flex: 1;
- color: #333;
- word-break: break-all;
- &.highlight {
- color: #1890ff;
- font-weight: bold;
- }
- &.danger {
- color: #ff4d4f;
- }
- }
- }
- .status-tag {
- display: inline-block;
- padding: 4rpx 16rpx;
- border-radius: 4rpx;
- font-size: 24rpx;
- &.status-default {
- background-color: #f0f0f0;
- color: #666;
- }
- &.status-warning {
- background-color: #fff7e6;
- color: #faad14;
- }
- &.status-success {
- background-color: #f6ffed;
- color: #52c41a;
- }
- &.status-danger {
- background-color: #fff1f0;
- color: #ff4d4f;
- }
- }
- .footer-btns {
- display: flex;
- gap: 20rpx;
- padding: 20rpx;
- background-color: #fff;
- box-shadow: 0 -2rpx 8rpx rgba(0, 0, 0, 0.08);
- button {
- flex: 1;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 30rpx;
- border-radius: 12rpx;
- }
- .btn-back {
- background-color: #fff;
- color: #666;
- border: 1rpx solid #e0e0e0;
- }
- .btn-send {
- background-color: #faad14;
- color: #fff;
- }
- .btn-receive {
- background-color: #722ed1;
- color: #fff;
- }
- .btn-detail {
- background-color: #1890ff;
- color: #fff;
- }
- }
- </style>
|