| | |
| | | <template> |
| | | <el-card shadow="never" class="aui-card--fill"> |
| | | <div class="mod-project-softwareTestOrder}"> |
| | | <div class="fa-card-a"> |
| | | <zt-table-wraper query-url="/project/SoftwareTestOrder/page" delete-url="/project/SoftwareTestOrder/deleteOrder" |
| | | v-slot="{ table }"> |
| | | <el-form :inline="true" :model="dataForm" @keyup.enter.native="table.query()"> |
| | |
| | | </el-form> |
| | | <el-table v-loading="table.dataLoading" :data="table.dataList" height="100px" v-adaptive="{bottomOffset:70}" |
| | | border @selection-change="table.selectionChangeHandle"> |
| | | <el-table-column type="selection" align="center" width="40"/> |
| | | <el-table-column :selectable="isCheckbox" type="selection" align="center" width="40"/> |
| | | <el-table-column prop="softwareName" width="250px" label="软件名称"/> |
| | | <el-table-column prop="code" width="270" label="委托单编号"/> |
| | | <el-table-column prop="softwareIdentity" width="150px" label="项目标识"/> |
| | |
| | | <Preview ref="view" :pageMarkerfun="SoftwareTestOrder"></Preview> |
| | | </zt-table-wraper> |
| | | </div> |
| | | </el-card> |
| | | </template> |
| | | |
| | | <script> |
| | |
| | | add() { |
| | | this.$refs.projectSelect.$refs.dialog.init("software_test_order") |
| | | }, |
| | | isCheckbox(row,index){ |
| | | return !(row.flowInfo && row.flowInfo.bizId); |
| | | }, |
| | | openAddWin(row) { |
| | | console.log(row.id, 'row.id') |
| | | this.$refs.addOrUpdate.$refs.dialog.init(null, {id: null, projectId: row.id}) |