文档V9
This commit is contained in:
@@ -59,7 +59,7 @@
|
||||
:label="item.label"
|
||||
:value="item.value"/>
|
||||
</el-select>
|
||||
<el-button type="primary" size="small" icon="el-icon-search" style="margin-left: 15px;margin-top: 5px" plain @click="pageSize=20; pageCurrent= 1;selecttable()">查询</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-search" style="margin-left: 15px;margin-top: 5px" plain @click="pageSize=10; pageCurrent= 1;selecttable()">查询</el-button>
|
||||
<el-tooltip :open-delay="1000" effect="dark" content="导出查询数据" placement="top">
|
||||
<el-button type="warning" size="small" icon="el-icon-download" plain style="margin-left:10px" @click="exportExcel()">导出</el-button>
|
||||
</el-tooltip>
|
||||
@@ -153,7 +153,7 @@
|
||||
<el-table-column label="不合格数" align="center" width="120px">
|
||||
<template slot-scope="scope">
|
||||
<template v-if="scope.row.edit && scope.row.是否合格 === 2">
|
||||
<el-input-number v-model="scope.row.不合格数量" :min="0" :step="1" style="width: 90%" size="mini"/>
|
||||
<el-input-number v-model="scope.row.不合格数量" :min="0" :max="scope.row.数量" :step="1" style="width: 90%" size="mini"/>
|
||||
</template>
|
||||
<template v-else-if="scope.row.是否合格 === 1">
|
||||
{{ scope.row.不合格数量 =0 }}
|
||||
@@ -754,7 +754,7 @@ export default {
|
||||
AddTableData_disable: false,
|
||||
loading: false,
|
||||
total: 0, // 总条数
|
||||
pageSize: 20, // 每页显示条数
|
||||
pageSize: 10, // 每页显示条数
|
||||
pageCurrent: 1, // 后台获取页
|
||||
dialogmethod: false // false新增 true 编辑
|
||||
// total1: 0, // 总条数
|
||||
|
||||
Reference in New Issue
Block a user