朱文强 před 10 měsíci
rodič
revize
2fc7649a13
1 změnil soubory, kde provedl 15 přidání a 1 odebrání
  1. +15
    -1
      src/views/axl/task/index.vue

+ 15
- 1
src/views/axl/task/index.vue Zobrazit soubor

@@ -15,6 +15,11 @@
v-loading="dataListLoading" v-loading="dataListLoading"
style="width: 100%" style="width: 100%"
ref="dataList"> 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 label="序号" type="index" align="center" />
<el-table-column <el-table-column
prop="mainTaskCode" prop="mainTaskCode"
@@ -107,10 +112,16 @@
:page.sync="listQuery.pageNo" :page.sync="listQuery.pageNo"
:total="listQuery.total" :total="listQuery.total"
@pagination="getDataList" /> @pagination="getDataList" />
<add-or-update
v-if="drawerVisible"
ref="drawerRef"
@refreshDataList="getDataList" />
</div> </div>
</template> </template>


<script> <script>
import product from './good-mini';
import AddOrUpdate from './add-or-updata';
import { deleteTask, getTaskPage, runTask } from '@/api/axl/task'; import { deleteTask, getTaskPage, runTask } from '@/api/axl/task';
import { getJob, updateJobStatus } from '@/api/infra/job'; import { getJob, updateJobStatus } from '@/api/infra/job';


@@ -237,7 +248,10 @@ export default {
], ],
}; };
}, },
components: {},
components: {
product,
AddOrUpdate,
},
created() {}, created() {},
mounted() { mounted() {
this.getDataList(); this.getDataList();


Načítá se…
Zrušit
Uložit