Ver a proveniência

updata

master
朱文强 há 10 meses
ascendente
cometimento
2fc7649a13
1 ficheiros alterados com 15 adições e 1 eliminações
  1. +15
    -1
      src/views/axl/task/index.vue

+ 15
- 1
src/views/axl/task/index.vue Ver ficheiro

@@ -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();


Carregando…
Cancelar
Guardar