石广澎
2023-11-29 20913c80c3f5fc8e533cb92b90e6f20bcd68e032
admin-web/src/views/stock/accessStock/outbound/detail.vue
@@ -1,5 +1,5 @@
<template>
  <win-md class="stock-detail" :title="setting.title" @close="close" :width="'800px'">
  <win-md class="stock-detail" :title="setting.title" @close="close" :width="'800px'" :loading="loading">
    <el-row :gutter="20">
      <el-col :span="8">
        <span>出库单号:</span>
@@ -67,7 +67,7 @@
  </win-md>
</template>
<script>
import { outputDetail } from '@/api/stock/accessStock';
import {outputDetail} from '@/api/stock/accessStock';
import winMd from '@/components/win/win-md';
import * as DateFormatter from '@/utils/DateFormatter';
@@ -82,6 +82,7 @@
  },
  data() {
    return {
      loading:true,
      detail: {
        categoryName: '',
        businessFormCode: '',
@@ -106,6 +107,7 @@
  created() {
    outputDetail({ id: this.setting.id }).then((res) => {
      this.detail = res;
      this.loading = false
    });
  },
  methods: {