| | |
| | | <el-table v-loading="loading" :data="equipmentList" :row-key="getRowId" ref="multipleTable" @selection-change="handleSelectionChange" :row-class-name="tableRowClassName" style="background: #FFEFF2; border-radius: 14px 14px 14px 14px;"> |
| | | <el-table-column type="selection" :reserve-selection="true" width="55" align="center" /> |
| | | <el-table-column fixed label="序号" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="120"/> |
| | | <el-table-column label="设备名称" prop="name" sortable width="120" /> |
| | | <el-table-column label="设备名称" prop="name" sortable width="150" /> |
| | | |
| | | <el-table-column label="时间" align="happenTime" sortable prop="happenTime" width="150"> |
| | | <el-table-column label="时间" align="happenTime" sortable prop="happenTime" width="140"> |
| | | <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '————'}}</template> |
| | | </el-table-column> |
| | | <el-table-column label="是否注销" align="center" sortable prop="status" width="120"> |
| | | <el-table-column label="是否注销" align="center" sortable prop="status" width="140"> |
| | | <template slot-scope="scope"> |
| | | {{ getSrc1(scope.row.status) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="购买人" prop="buyer" sortable width="100" /> |
| | | <el-table-column label="购买人" prop="buyer" sortable width="140" /> |
| | | <el-table-column label="事项内容" prop="content" sortable :show-overflow-tooltip="true" width="150" /> |
| | | <el-table-column label="存放地点" prop="location" sortable width="100" /> |
| | | <el-table-column label="存放地点" prop="location" sortable width="120" /> |
| | | |
| | | <el-table-column label="备注" prop="remark" sortable width="100" > |
| | | <template slot-scope="scope">{{scope.row.remark? scope.row.remark: '————'}}</template> |