| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <div class="common-wrap">
- <div class="row-item" v-for="item in mapValues">
- <div class="icon">
- <img src="/static/images/icon_guide@2x.png">
- </div>
- <div class="txt">
- {{ item.value }}
- </div>
- </div>
- <div class="row-item">
- <div class="icon">
- <img src="/static/images/icon_guide@2x.png">
- </div>
- <div class="txt">
- 远动调试本月还有
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'Zydbsx',
- data() {
- return {
- mapValues: [
- {id: 1, value: '远动调试本月还有'},
- {id: 1, value: '电力受电线路'},
- {id: 1, value: '电力变配电所'},
- {id: 1, value: '电力设备巡检待检'},
- {id: 1, value: '变电所待实验'}
- ]
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .common-wrap {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- color: white;
- .row-item {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 18px;
- padding: 8px 28px;
- .icon {
- flex-shrink: 0;
- margin-right: 14px;
- display: flex;
- align-items: center;
- justify-content: center;
- img{
- width: 15px;
- height: 15px;
- }
- }
- .txt{
- flex-grow: 1;
- }
- }
- }
- </style>
|