|
@@ -32,8 +32,10 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
...mapActions(['query', 'fetch', 'create', 'update', 'delete']),
|
|
...mapActions(['query', 'fetch', 'create', 'update', 'delete']),
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
|
+ info.status == '1';
|
|
let res = await this.query({ skip, limit, ...info });
|
|
let res = await this.query({ skip, limit, ...info });
|
|
if (this.$checkRes(res)) {
|
|
if (this.$checkRes(res)) {
|
|
|
|
+ console.log(res.data);
|
|
let list = res.data.sMarkOrder;
|
|
let list = res.data.sMarkOrder;
|
|
let xAxisList = [];
|
|
let xAxisList = [];
|
|
let seriesList = [];
|
|
let seriesList = [];
|