| | |
| | | .DS_Store |
| | | node_modules |
| | | /dist |
| | | /screen |
| | | package-lock.json |
| | | |
| | | |
| | |
| | | <div class="data-item"> |
| | | <img src="@/assets/center-top-right.png" alt=""> |
| | | <div> |
| | | <div class="label">本月应补偿总额(万元)</div> |
| | | <div class="label">本季应补偿总额(万元)</div> |
| | | <div class="value">{{ data.monthCompensationAmount }} <span>环比</span><span |
| | | class="value-change value-change-down">{{ data.monthCompensationAmountRate }}</span></div> |
| | | </div> |
| | |
| | | <div class="data-item"> |
| | | <img src="@/assets/center-top-right.png" alt=""> |
| | | <div> |
| | | <div class="label">下月应补偿总额(万元)</div> |
| | | <div class="label">下季应补偿总额(万元)</div> |
| | | <div class="value">{{ data.nextMonthCompensationAmount }} <span>环比</span><span |
| | | class="value-change value-change-up">{{ data.nextMonthCompensationAmountRate }}</span></div> |
| | | </div> |
| | |
| | | show: false |
| | | }, |
| | | axisLabel: { |
| | | color: '#495F88', |
| | | color: '#fff', |
| | | fontSize: 12, |
| | | // rotate: 30, // 标签倾斜角度 |
| | | } |
| | |
| | | type: 'value', |
| | | name: '单位:次', |
| | | nameTextStyle: { |
| | | color: '#495F88', |
| | | color: '#fff', |
| | | fontSize: 12, |
| | | }, |
| | | splitLine: { |
| | |
| | | show: false |
| | | }, |
| | | axisLabel: { |
| | | color: '#495F88', |
| | | color: '#fff', |
| | | fontSize: 12 |
| | | } |
| | | }, |
| | |
| | | name: '安置面积异常', |
| | | type: 'line', |
| | | smooth: true, |
| | | symbol: 'none', |
| | | symbol: 'circle', |
| | | itemStyle: { |
| | | color: '#FEDB65' |
| | | }, |
| | |
| | | name: '补偿金额异常', |
| | | type: 'line', |
| | | smooth: true, |
| | | symbol: 'none', |
| | | symbol: 'circle', |
| | | itemStyle: { |
| | | color: '#00F2EF' |
| | | }, |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import HeaderPanel from '@/components/datascreen/HeaderPanel.vue'; |
| | | import HeaderPanel from '@/components/datascreen/HeaderPanel.vue'; |
| | | import LeftPanel from '@/components/datascreen/LeftPanel.vue'; |
| | | import CenterPanel from '@/components/datascreen/CenterPanel.vue'; |
| | | import RightPanel from '@/components/datascreen/RightPanel.vue'; |
| | |
| | | const { defineConfig } = require('@vue/cli-service') |
| | | module.exports = defineConfig({ |
| | | outputDir: 'screen', |
| | | transpileDependencies: true, |
| | | publicPath: './', |
| | | devServer: { |