futian.liu
2023-12-21 0d704977a91adb83c3ff9c1769fe4b73fc54a565
admin-web/src/views/stock/accessStock/outbound/detail.vue
@@ -59,9 +59,9 @@
            {{ scope.row.counts }}
          </template>
        </el-table-column>
        <el-table-column prop="counts" label="金额" align="center">
        <el-table-column prop="totalAmount" label="金额" align="center">
          <template slot-scope="scope">
            {{ scope.row.price * scope.row.counts | formatPrice}}
            {{ scope.row.totalAmount}}
          </template>
        </el-table-column>
      </el-table>
@@ -118,9 +118,6 @@
    formatTime(time) {
      if (!time) return;
      return DateFormatter.LongToDateTime(time);
    },
    formatPrice(price) {
      return price / 100
    }
  },
  created() {