...
|
...
|
@@ -30,23 +30,12 @@ |
|
|
|
|
|
<script>
|
|
|
import detail from './store/detail';
|
|
|
import filter from './store/filter';
|
|
|
import FinanceService from 'services/finance/finance-service';
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
|
filter.filters = _.assign({
|
|
|
sku: {
|
|
|
label: 'SKU',
|
|
|
labelSpan: 6,
|
|
|
model: this.$route.query.sku || '',
|
|
|
holder: '',
|
|
|
fieldSpan: 18
|
|
|
}
|
|
|
}, filter.filters);
|
|
|
|
|
|
return _.assign(detail.call(this), filter);
|
|
|
return detail.call(this);
|
|
|
},
|
|
|
created() {
|
|
|
this.FinanceService = new FinanceService();
|
...
|
...
|
@@ -74,8 +63,6 @@ export default { |
|
|
reset() {
|
|
|
this.filters.balanceId.model = null;
|
|
|
this.filters.brandId.model = null;
|
|
|
this.filters.status.model = null;
|
|
|
this.filters.orderCode.model = null;
|
|
|
this.filters.sku.model = null;
|
|
|
this.pageData.pageNo = 1;
|
|
|
this.pageData.total = 0;
|
...
|
...
|
|