123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <template>
- <div class="app-container">
- <el-row class="rowCls">
- <!-- 搜索模块 -->
- <div class="filter-container">
- <span style="margin-left: 15px;">
- <span>{{$t("statisticalAnalysis.searchForm.oee.productlineName")}}:</span>
- <el-select v-model="productionLineId" :placeholder='$t("common.pleaseSelect")' size="medium" style="width: 150px;">
- <el-option
- v-for="item in productionLines"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- </span>
- <span style="margin-left: 15px;">
- <span>{{$t("statisticalAnalysis.searchForm.oee.statisticalDate")}}:</span>
- <el-date-picker
- v-model="statisticalDate"
- type="datetime"
- format="yyyy-MM"
- value-format="yyyy-MM"
- style="width: 20%;"
- />
- </span>
- <span style="margin-left: 15px;">
- <el-button plain type="primary" icon="el-icon-search" size="medium" @click="search">
- {{ $t("table.search") }}
- </el-button>
- <el-button plain type="warning" icon="el-icon-refresh" size="medium" @click="reset">
- {{ $t("table.reset") }}
- </el-button>
- </span>
- </div>
- </el-row>
- <!-- OEE柱状图 -->
- <el-row class="rowCls">
- <div class="bottomDiv">
- <!-- 标题 -->
- <div class="modelTitle marginBottom15">本月设备OEE</div>
- <!-- 柱状图数据 -->
- <div class="chart-wrapper">
- <bar-chart :barData="barData" :height="heightStr"/>
- </div>
- </div>
- </el-row>
- </div>
- </template>
- <script>
- import productionLineMgrApi from "@/api/runManageCenter/productionLineMgr"
- import productlineAvailabilityApi from "@/api/statisticalAnalysis/productlineAvailability"
- import BarChart from '@/components/Charts/BarChart'
- // 【产线管理】-API
- import areaMgrApi from "@/api/resourceProductMgr/areaMgr"
- export default {
- name: "oee",
- components: {BarChart },
- props: {
- },
- data () {
- return {
- heightStr: "380px",
- productionLines: [],
- tableKey: 0,
- loading: false,
- productionLineId:"",
- statisticalDate:"",
- barData: {
- name: 'OEE',
- xData: [],
- yData: []
- },
- }
- },
- // 实例已经在内存中创建好,此时data和methods已将ok,如果要操作data中的数据或是调用methods中的方法,最早只能在created中操作
- created() {
- // 加载产线下拉框数据
- this.getLineList();
- // this.queryProductionLines()
- },
- computed: {
- },
- mounted () {
- },
- methods: {
- search() {
- this.fetch()
- },
- reset() {
- this.$refs.table.clearSort()
- this.$refs.table.clearFilter()
- this.search()
- },
- fetch () {
- this.tableKey = !this.tableKey
- this.loading = true
- console.log(this.productionLineId)
- let params = {}
- params.statisticalDate = this.statisticalDate
- params.productionlineId = this.productionLineId
- console.log(params)
- productlineAvailabilityApi.queryProductionLineOee(params).then(response => {
- const res = response.data
- if (res.isSuccess) {
- this.barData.xData = res.data.xData
- this.barData.yData = res.data.yData
- }
- }).finally(() => this.loading = false)
- },
-
- // 产线下拉数据
- getLineList(){
- areaMgrApi.getList().then(res => {
- res = res.data;
- // console.log("产线下拉数据: ", res);
- if(res.code == 0) {
- this.productionLines = res.data;
- }
- })
- },
-
- // 产线查找
- queryProductionLines(){
- this.productionLines = []
- productionLineMgrApi.getList({}).then(response => {
- const res = response.data
- if (res.isSuccess) {
- this.productionLines = res.data
- if(this.productionLines.length > 0){
- this.productionLineId = this.productionLines[0].id
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|