You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
408 B
Vue
27 lines
408 B
Vue
|
2 years ago
|
<template>
|
||
|
|
<div class="app-container">
|
||
|
|
2
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { findProductLineList } from '@//api/base/productLine'
|
||
|
|
import { parseTime } from '@//utils/ruoyi'
|
||
|
|
import {
|
||
|
|
boxTraceabilityDetailReport,
|
||
|
|
boxTraceabilityReport,
|
||
|
|
} from '@//api/report/reportAPI'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'ProductOffLine',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|