XiaoRuby
2023-08-14 4fb8b960f98bb1f2b3eaf39b7479ddbe9e53c5a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <div>
    <el-row>
      <el-col :span="12" class="top_left_name">计量管理</el-col>
      <el-col :span="12" style="text-align: right;">
        <el-button size="mini" icon="el-icon-plus" style="color: #000;"
          >导出</el-button
        >
      </el-col>
    </el-row>
  </div>
</template>
 
<script>
export default {
  name: "measurementManagement"
};
</script>
 
<style>
.div_acb {
  color: #000000;
}
</style>