峰峰执法平台简易案件程序板块 pad端
yang
2022-10-17 4107256a8d1fa9a2db0969122bfc760994b12421
1
2
3
4
5
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
50
51
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
<template>
<div>
  <div id="box">
    <div class="btn">
      <p class="types" >未填写</p>
      <div style="display: inline-block">
        <p class="names">调查询问笔录</p>
        <!--          <p>
                    <span>{{ item.addTime }}</span>
                    <span class="str1">{{ item.updateBy }}</span>
                  </p>-->
      </div>
      <!--        <div v-if="item.hasReceipt == 1">
                <img :src="item.receiptState =='0' ? src2 :src1" @click.stop="openHuiZheng(item)">
              </div>-->
    </div>
    <div class="btn">
      <p class="types" >未填写</p>
      <div style="display: inline-block">
        <p class="names">责令限期改正通知书</p>
        <!--          <p>
                    <span>{{ item.addTime }}</span>
                    <span class="str1">{{ item.updateBy }}</span>
                  </p>-->
      </div>
      <!--        <div v-if="item.hasReceipt == 1">
                <img :src="item.receiptState =='0' ? src2 :src1" @click.stop="openHuiZheng(item)">
              </div>-->
    </div>
    <div class="btn">
      <p class="types" >未填写</p>
      <div style="display: inline-block">
        <p class="names">处罚决定书</p>
        <!--          <p>
                    <span>{{ item.addTime }}</span>
                    <span class="str1">{{ item.updateBy }}</span>
                  </p>-->
      </div>
      <!--        <div v-if="item.hasReceipt == 1">
                <img :src="item.receiptState =='0' ? src2 :src1" @click.stop="openHuiZheng(item)">
              </div>-->
    </div>
  </div>
  <button class="btnCode">提交审核</button>
</div>
</template>
 
<script>
export default {
  name: "padWord"
}
</script>
 
<style lang="scss" scoped>
#box{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.btnCode{
  background: #1f94f4;
  color: #fff;
  border: none;
  position: absolute;
  left: 50%;
  bottom: 10%;
}
.btn {
  width: 188px;
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  margin: 5px;
  background: rgba(255, 177, 48, 0.04);;
  border: #666666 1px solid;
  color: #666666;
  position: relative;
 
  .types {
    width: 10%;
    height: 100%;
    display: inline-block;
    padding: 4% 0 0;
    box-sizing: border-box;
    background: #666666;
    color: #fff;
    text-align: center;
  }
 
  div {
    .names {
      display: flex;
      max-width: 165px;
      flex-wrap: wrap;
      font-weight: bold;
      font-size: 14px;
    }
 
    p {
      .str1 {
        display: inline-block;
        margin-left: 6px
      }
    }
  }
 
  div {
    img {
      position: absolute;
      width: 30px;
      height: 30px;
      right: 1px;
      bottom: 1px;
    }
  }
}
</style>