| | |
| | | <!-- |
| | | * @Date: 2024-04-18 21:52:18 |
| | | * @LastEditors: Sneed |
| | | * @LastEditTime: 2024-04-20 20:26:30 |
| | | * @LastEditTime: 2024-06-17 23:37:51 |
| | | * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/mdc/components/Time.vue |
| | | --> |
| | | <template> |
| | | <el-row> |
| | | <el-col> |
| | | <el-button-group> |
| | | <el-button @click="statisticalMethod = item.value" |
| | | <el-button size="small" @click="statisticalMethod = item.value" |
| | | :type="statisticalMethod == item.value ? 'primary' : ''" v-for="item in btnList" |
| | | :key="item.value">{{ |
| | | item.label }}</el-button> |
| | |
| | | </el-col> |
| | | <el-col style="margin-top: 12px;"> |
| | | <el-card shadow="never"> |
| | | <scEcharts height="300px" :option="option2"></scEcharts> |
| | | <scEcharts height="300px" :option="option2" v-if="option2.title" /> |
| | | </el-card> |
| | | </el-col> |
| | | <el-col> |
| | |
| | | <scTable ref="table" row-key="id" border :params="params" :apiObj="apiObj" stripe> |
| | | <el-table-column prop="workstationCode" label="工位编码" /> |
| | | <el-table-column prop="workstationName" label="工位名称" /> |
| | | <el-table-column prop="" :label="item" v-for="item in cols"> |
| | | <el-table-column prop="" :label="item" v-for="item in cols" :key="item"> |
| | | <template #default="scope"> |
| | | <span>{{ scope.row.data[item] }}</span> |
| | | <span>{{ colnameFn(scope.row.data[item]) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | |
| | | <script> |
| | | import scEcharts from '@/components/scEcharts'; |
| | | export default { |
| | | props: { |
| | | url: { |
| | | default: '/api/blade-mdc/efficiency-analysis', |
| | | type: String, |
| | | }, |
| | | options: { |
| | | default() { |
| | | return {} |
| | | }, |
| | | }, |
| | | colnameFn: { |
| | | type: Function, |
| | | default: val => { |
| | | if (isNaN(val)) return '-' |
| | | return `${(val ? val * 100 : 0).toFixed(2)}%` |
| | | } |
| | | }, |
| | | resFn: { |
| | | type: Function, |
| | | default: val => { |
| | | if (isNaN(val)) return 0 |
| | | return (val - 0) * 100 |
| | | } |
| | | } |
| | | }, |
| | | components: { |
| | | scEcharts |
| | | }, |
| | |
| | | ], |
| | | cols: [], |
| | | chartsData: [], |
| | | option2: null, |
| | | option2: {}, |
| | | } |
| | | }, |
| | | watch: { |
| | |
| | | queryType: 0, |
| | | statisticalMethod: this.statisticalMethod |
| | | } |
| | | return this.$HTTP.post('/api/blade-mdc/efficiency-analysis', dataSend, { params }).then(res => { |
| | | this.option2 = {} |
| | | return this.$HTTP.post(this.url, dataSend, { params }).then(res => { |
| | | this.chartsData = res.data.items.records |
| | | let option2 = { |
| | | // legend: { |
| | |
| | | }, |
| | | xAxis: { |
| | | type: 'category', |
| | | axisLabel: { |
| | | interval: 'auto', |
| | | } |
| | | }, |
| | | yAxis: { |
| | | type: 'value' |
| | | type: 'value', |
| | | axisLabel: { |
| | | formatter: (value) => { |
| | | return value + '%' |
| | | } |
| | | }, |
| | | }, |
| | | dataZoom: [ |
| | | { type: 'slider' } |
| | |
| | | dataset: { |
| | | source: [] |
| | | }, |
| | | series: [] |
| | | ...this.options, |
| | | series: [], |
| | | } |
| | | let source1 = ['product'] |
| | | let row = res.data.items.records[0] |
| | |
| | | res.data.items.records.forEach(v => { |
| | | let current = [v.id] |
| | | Object.keys(v.nameData).forEach(key => { |
| | | current.push(row.data[key] || 0) |
| | | current.push(this.resFn(v.data[key])) |
| | | // current.push((v.data[key] - 0) * 100) |
| | | }) |
| | | option2.dataset.source.push(current) |
| | | }); |
| | |
| | | delete dataSend.size |
| | | delete dataSend.order |
| | | delete dataSend.prop |
| | | return await this.$HTTP.post('/api/blade-mdc/efficiency-analysis', dataSend, { params }).then(res => { |
| | | return await this.$HTTP.post(this.url, dataSend, { params }).then(res => { |
| | | let row = res.data.items?.records[0]?.data || {} |
| | | this.cols = Object.keys(row) |
| | | console.log(this.cols) |