|
@@ -44,7 +44,11 @@
|
|
|
<div class="page-content-box">
|
|
|
<el-table class="table-box" v-loading="loading" border :data="dataList">
|
|
|
<el-table-column label="气体名称" prop="gasName" show-overflow-tooltip/>
|
|
|
- <el-table-column label="使用量" prop="usageAmount" width="150" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="使用量" prop="usageAmount" width="150" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.usageAmount}}Mpa
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="学院" prop="collegeName" width="200" show-overflow-tooltip/>
|
|
|
<el-table-column label="实验地点" prop="subjectName" width="249" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|