|
@@ -0,0 +1,184 @@
|
|
|
+<template>
|
|
|
+ <div class="myDia">
|
|
|
+ <div style="margin-bottom: 10px;display: flex;position: relative;width: 100%">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="value"
|
|
|
+ type="date"
|
|
|
+ placeholder="选择日期">
|
|
|
+ </el-date-picker>
|
|
|
+ <div style="border: 1px #00ffff solid;display: flex;justify-content: center;align-items: center;margin-left: 10px;width: 100px;color: #00ffff;cursor: pointer" @click="choose">
|
|
|
+ <i class="el-icon-plus"><span style="margin-left: 10px">上报问题</span></i>
|
|
|
+ </div>
|
|
|
+ <i class="el-icon-circle-close" style="position: absolute;right: 10px;color: #00ffff;font-size: 25px;cursor: pointer" @click="close"></i>
|
|
|
+ </div>
|
|
|
+ <div class="table-cont">
|
|
|
+ <div class="table-top">
|
|
|
+ <div class="fir">时间</div>
|
|
|
+ <div class="snd">标题</div>
|
|
|
+ <div class="fir">问题内容</div>
|
|
|
+ <div class="snd">发起人</div>
|
|
|
+ <div class="fir">问题状态</div>
|
|
|
+ <div class="snd">操作</div>
|
|
|
+ </div>
|
|
|
+ <div class="table-bot">
|
|
|
+ <div class="table-list" v-for="(item,index) in dataList" :key="index" @click="choose()">
|
|
|
+ <div class="fir"><div class="said"></div>{{item.a}}</div>
|
|
|
+ <div class="snd">{{item.b}}</div>
|
|
|
+ <div class="snd">{{item.c}}</div>
|
|
|
+ <div class="snd">{{item.d}}</div>
|
|
|
+ <div class="snd">{{item.e}}</div>
|
|
|
+ <div class="snd">{{item.f}}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="width: 100%;display: flex;justify-content: center;align-items: center;margin-top: 10px;">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="1000">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { getFoodsList } from "@/api/screen/service";
|
|
|
+import pinyin from "../data/pinyin.js";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "UnitCamera",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ value:"2020-02-09",
|
|
|
+ dataList:[
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ {a:1,b:1,c:1,d:1,f:1,e:1},
|
|
|
+ ]
|
|
|
+ };
|
|
|
+ },
|
|
|
+ mounted() {},
|
|
|
+ methods: {
|
|
|
+ choose(){
|
|
|
+ this.$emit("subIssue");
|
|
|
+ },
|
|
|
+
|
|
|
+ close() {
|
|
|
+ this.$emit("close");
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.me{
|
|
|
+ display: flex;flex-wrap: wrap;justify-content: space-around;height: 380px;overflow: auto;
|
|
|
+}
|
|
|
+.me::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.said{
|
|
|
+ width: 2px;
|
|
|
+ margin-right: 8px;
|
|
|
+ height: 16px;
|
|
|
+ background-color: #00FFFF;
|
|
|
+}
|
|
|
+.table-cont{
|
|
|
+ width:100%;
|
|
|
+
|
|
|
+ .table-top{
|
|
|
+ width:100%;
|
|
|
+ height: 26px;
|
|
|
+ background: url("../../../assets/images/building_guarantee/img_11.png") no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding:0 4px 0 10px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ font-size:14px;
|
|
|
+ color:#00FFFF;
|
|
|
+ }
|
|
|
+ .table-bot{
|
|
|
+ width:100%;
|
|
|
+ height: 300px;
|
|
|
+ overflow: auto;
|
|
|
+ .table-list{
|
|
|
+ margin-bottom: 10px;
|
|
|
+ align-items: center;
|
|
|
+ background: radial-gradient(
|
|
|
+ 190% 71% at 50% 49%,
|
|
|
+ rgba(21, 105, 107, 0.54) 0%,
|
|
|
+ rgba(27, 95, 97, 0) 100%
|
|
|
+ );
|
|
|
+ width:100%;
|
|
|
+ height:30px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ font-size:14px;
|
|
|
+ color:#FFFFFF;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
+ .table-list:hover{
|
|
|
+ background: radial-gradient(
|
|
|
+ 190% 71% at 50% 49%,
|
|
|
+ rgba(47, 204, 208, 0.74) 0%,
|
|
|
+ rgba(27, 95, 97, 0) 100%
|
|
|
+ );
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table-bot::-webkit-scrollbar {
|
|
|
+ display: none; /* 隐藏滚动条 */
|
|
|
+ }
|
|
|
+
|
|
|
+ .fir{
|
|
|
+ width:40%;
|
|
|
+ text-align: left;
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ .snd{
|
|
|
+ width:30%;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .thd{
|
|
|
+ width:30%;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-scrollbar {
|
|
|
+ background: #15696b;
|
|
|
+ border: 1px solid #00ffff;
|
|
|
+ ul {
|
|
|
+ li {
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-select-dropdown__item.hover,
|
|
|
+.el-select-dropdown__item:hover {
|
|
|
+ background: #15696b;
|
|
|
+ color: #00ffff;
|
|
|
+}
|
|
|
+.el-select-dropdown__item.selected {
|
|
|
+ color: #00ffff;
|
|
|
+}
|
|
|
+.el-select .el-input .el-select__caret {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.myDia{
|
|
|
+ padding-top: 5px;
|
|
|
+ width: 668px;
|
|
|
+ height: 432px;
|
|
|
+ background-color: rgba(21, 105, 107, 0.5);
|
|
|
+ box-shadow: 0 0 15px 5px rgba(21, 105, 107, 1); /* 发光效果 */
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|