zhanghua
10 天以前 7c20fd15b7fbc2bd5756b39d5ab655cc849ffcc3
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
196
197
198
199
200
<template>
  <div class="updateUser">
    <main>
      <div class="mainContent">
        <el-form ref="user" style="width: 100%;">
          <el-form-item prop="code" label="所属事件编号">
            <el-input v-model="imagedata.code"></el-input>
          </el-form-item>
          <el-form-item prop="code" label="大类名称">
            <el-input v-model="imagedata.questionType"></el-input>
          </el-form-item>
          <el-form-item prop="code" label="小类名称">
            <el-input v-model="imagedata.bigType"></el-input>
          </el-form-item>
          <el-form-item prop="code" label="图片Id">
            <el-input v-model="imagedata.imagesId"></el-input>
          </el-form-item>
          <el-form-item prop="code" label="上传时间">
            <el-input v-model="imagedata.uploadTime"></el-input>
          </el-form-item>
          <el-form-item prop="questionType" label="图片:" min-width="8">
            <img style="width: 180px;height: 120px;" :src=imagedata.imageUrl>
          </el-form-item>
          <div class="optionBtn">
            <el-button type="primary" class="btn submit" @click.native.prevent="handleUser">提交
            </el-button>
          </div>
        </el-form>
      </div>
    </main>
  </div>
</template>
<script>
export default {
  data() {
 
    return {
 
      imagedata: {
      },
    }
  },
  created() {
 
  },
  methods: {
 
  },
  props: ['updateFlag']
};
</script>
<style lang="scss" scoped>
.updateUser {
  border-radius: 1px;
  // background-color: #09152f;
 
  main {
    // border: 1px solid #fff;
    text-align: left;
    // background-color: #09152f;
    padding-bottom: 50px;
 
    .mainContent {
      display: flex;
      justify-content: center;
      padding-top: 50px;
 
      .el-form-item__content {
        width: 400px;
 
        .el-select {
          width: 100%;
        }
      }
 
      .optionHandleSp {
        display: flex;
 
        .areaNumber,
        .moreNumber {
          flex: 1;
        }
 
        .telNumber {
          flex: 2;
        }
      }
 
      .optionBtn {
        display: flex;
        margin-top: 20px;
        justify-content: center;
 
        .btn {
          padding: 12px 50px;
        }
      }
    }
  }
}
 
// .updateUser::v-deep .el-form-item__label {
//   color: #4b9bb7;
// }
 
// .updateUser::v-deep .el-input__inner {
//   background-color: #09152f;
//   border: 1px solid #17324c;
// }
 
.addPerson {
  display: flex;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  max-width: 280px;
 
  li {
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin-left: 10px;
  }
}
 
.li-icon {
  background-color: #cccccc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto;
}
 
.li-btn {
  background-color: #cccccc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
 
.card {
  position: absolute;
  z-index: 2000;
  right: 0;
 
  .box-card {
    min-height: 240px;
    max-height: 260px;
    overflow: hidden;
    // background-color: #09152f;
    position: relative;
    max-width: 220px;
 
    .scrollWrap {
      overflow: scroll;
      height: 180px;
      position: relative;
      color: #4b9bb7;
 
      .el-checkbox-group {
        display: flex;
        flex-direction: column;
 
        .el-checkbox {
          line-height: 20px;
        }
      }
    }
 
    .myclear {
      width: 100%;
      line-height: 20px;
      color: #4b9bb7;
      display: flex;
      justify-content: space-between;
    }
 
    .hidebar {
      position: absolute;
      top: 77px;
      right: 20px;
      width: 20px;
      height: 180px;
      // background-color: #09152f;
    }
 
    .item {
      line-height: 40px;
    }
  }
}
 
.leader {
  color: red;
}
 
.el-input {
  width: 280px !important;
}
</style>