Blame view

src/views/overView/Overview.vue 7.46 KB
9b7e125f   monkeyhouyi   属地页面
1
2
3
4
  <template>
    <div class="overview">
      <el-row :gutter="20">
        <el-col :span="16">
ecc43230   monkeyhouyi   优化首页,应用管理
5
          <div class="item-box todo" v-if="isSHILevel">
9b7e125f   monkeyhouyi   属地页面
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
            <div class="item-title">任务待办</div>
            <div class="item-body">
              <template>
                <el-table :data="todoTableData" style="width: 100%" stripe>
                  <el-table-column type="index" width="50"> </el-table-column>
                  <el-table-column
                    prop="teskName"
                    label="任务名称"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskCode"
                    label="任务编号"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskStatus"
                    label="状态"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskUser"
                    label="分配者"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskTime"
                    label="任务期限"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column label="操作">
                    <template>
                      <el-button type="primary" size="small">处理</el-button>
                    </template>
                  </el-table-column>
                </el-table>
              </template>
            </div>
          </div>
ecc43230   monkeyhouyi   优化首页,应用管理
50
51
          <div class="item-box earmarked" :style="`height: calc(${isSHILevel ? '50vh - 115px' : '100vh - 205px'});`">
            <!-- :style=`"height: ${isSHILevel ? calc(50vh - 115px) : calc(100vh - 205px)};"` -->
9b7e125f   monkeyhouyi   属地页面
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
            <div class="item-title">专项行动</div>
            <div class="item-body">
              <el-row :gutter="6" class="item-one-list">
                <el-col
                  :span="6"
                  v-for="(item, index) in aimList"
                  :key="index"
                  style="margin-bottom: 6px"
                >
                  <div class="item-one-box">
                    <div class="one-title">关于xxxxxx的专项行动</div>
                    <template v-if="item.type == 1">
                      <div class="one-info">
                        <div>区县:8(已填7)</div>
                        <div>外协:无</div>
                      </div>
                      <div class="one-info">行动时间:2024-07-01至2024-07-31</div>
                      <el-button type="text" class="el-button-qu">管理</el-button>
                      <el-button type="text" class="el-button-qu">查看</el-button>
                    </template>
                    <template v-else>
                      <div class="one-info">行动时间:2024-07-01至2024-07-31</div>
                      <div class="btn-box">
                        <el-button type="success" size="small">填报</el-button>
                        <div class="err">即将超时</div>
                      </div>
                    </template>
                  </div>
                </el-col>
              </el-row>
            </div>
          </div>
        </el-col>
        <el-col :span="8">
          <div class="item-box tip">
            <div class="item-title">工作提示</div>
            <div class="item-body">
              <template>
                <el-table :data="todoTableData" style="width: 100%" stripe>
                  <el-table-column
                    prop="teskName"
                    label="内容"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskCode"
                    label="事件"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                </el-table>
              </template>
            </div>
          </div>
          <div class="item-box msg">
            <div class="item-title">通知公告</div>
            <div class="item-body">
              <template>
                <el-table :data="todoTableData" style="width: 100%" stripe>
                  <el-table-column
                    prop="teskName"
                    label="内容"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                  <el-table-column
                    prop="teskCode"
                    label="事件"
                    show-overflow-tooltip
                  >
                  </el-table-column>
                </el-table>
              </template>
            </div>
          </div>
        </el-col>
      </el-row>
    </div>
  </template>
  
  <script>
  import {
    todoObj,
    tipObj,
    areaObj,
    chObj,
  } from "@/assets/mockdata/demodata.json";
ecc43230   monkeyhouyi   优化首页,应用管理
140
  import { computed } from 'vue';
9b7e125f   monkeyhouyi   属地页面
141
142
143
144
  export default {
    name: "Overview",
    data() {
      return {
ecc43230   monkeyhouyi   优化首页,应用管理
145
        todoTableData: [],
9b7e125f   monkeyhouyi   属地页面
146
147
148
149
150
151
152
153
154
        tipTableData: [],
        aimList: [],
      }
    },
    created() {
      this.getTodoList();
      this.getTipList();
      this.getAimList();
    },
ecc43230   monkeyhouyi   优化首页,应用管理
155
156
157
158
159
160
    computed: {
      isSHILevel() {
        // 判断角色是否为‘市级办公室’
        return this.$store.state.user.userInfo.organizeId == '580547494862128389';
      },
    },
9b7e125f   monkeyhouyi   属地页面
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
    methods: {
      getTodoList() {
        for (let index = 0; index < 10; index++) {
          this.todoTableData.push(todoObj);
        }
      },
      getTipList() {
        for (let index = 0; index < 10; index++) {
          this.tipTableData.push(tipObj);
        }
      },
      getAimList() {
        for (let index = 0; index < 12; index++) {
          if (Math.random() > 0.5) {
            this.aimList.push(areaObj);
          } else {
            this.aimList.push(chObj);
          }
        }
      },
    },
  
  };
  </script>
  <style scoped lang="scss">
  .overview {
    .item-box {
      width: 100%;
      border-radius: 10px;
      background-color: rgba(244, 244, 245, 0.38);
      margin-bottom: 15px;
      &.todo {
        height: calc(50vh - 115px);
      }
      &.earmarked {
ecc43230   monkeyhouyi   优化首页,应用管理
196
        // height: calc(50vh - 115px);
9b7e125f   monkeyhouyi   属地页面
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
        margin-bottom: 0;
      }
      &.tip {
        height: calc(50vh - 60px);
      }
      &.msg {
        height: calc(50vh - 175px);
        margin-bottom: 0;
      }
      .item-title {
        color: rgba(255, 255, 255, 1);
        font-size: 16px;
        line-height: 23px;
        padding: 10px;
      }
      .item-body {
        height: calc(100% - 68px);
        margin: 0 13px;
ecc43230   monkeyhouyi   优化首页,应用管理
215
        // padding-bottom: 28px;
9b7e125f   monkeyhouyi   属地页面
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
        .el-table {
          border-radius: 10px;
          height: 100%;
          :deep(.el-table__body-wrapper.is-scrolling-none) {
            height: calc(100% - 47px);
            overflow-y: scroll;
          }
        }
      }
    }
    .earmarked {
      .item-title {
        margin-bottom: 0;
      }
      .item-one-list {
        max-height: 100%;
        overflow-y: scroll;
        margin-bottom: -6px;
        .item-one-box {
          box-sizing: border-box;
          background-color: #fff;
          border-radius: 5px;
          padding: 3px;
          height: 90px;
          .one-title {
            color: rgba(0, 122, 255, 1);
            font-size: 14px;
            line-height: 20px;
          }
          .one-info {
            display: flex;
            font-size: 12px;
            line-height: 20px;
          }
          .el-button-qu {
            padding: 5px 0;
          }
          .btn-box {
            margin-top: 10px;
            display: flex;
            align-items: flex-end;
            .err {
              margin-left: 10px;
              color: rgba(236, 47, 47, 1);
              font-size: 12px;
              line-height: 17px;
            }
          }
        }
      }
    }
  }
  </style>