updata
Dieser Commit ist enthalten in:
Ursprung
45e1bfdb89
Commit
2fc7649a13
@ -15,6 +15,11 @@
|
||||
v-loading="dataListLoading"
|
||||
style="width: 100%"
|
||||
ref="dataList">
|
||||
<el-table-column type="expand">
|
||||
<template slot-scope="scope">
|
||||
<product :order-id="scope.row.id"></product>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="序号" type="index" align="center" />
|
||||
<el-table-column
|
||||
prop="mainTaskCode"
|
||||
@ -107,10 +112,16 @@
|
||||
:page.sync="listQuery.pageNo"
|
||||
:total="listQuery.total"
|
||||
@pagination="getDataList" />
|
||||
<add-or-update
|
||||
v-if="drawerVisible"
|
||||
ref="drawerRef"
|
||||
@refreshDataList="getDataList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import product from './good-mini';
|
||||
import AddOrUpdate from './add-or-updata';
|
||||
import { deleteTask, getTaskPage, runTask } from '@/api/axl/task';
|
||||
import { getJob, updateJobStatus } from '@/api/infra/job';
|
||||
|
||||
@ -237,7 +248,10 @@ export default {
|
||||
],
|
||||
};
|
||||
},
|
||||
components: {},
|
||||
components: {
|
||||
product,
|
||||
AddOrUpdate,
|
||||
},
|
||||
created() {},
|
||||
mounted() {
|
||||
this.getDataList();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren