zhaozy25 лет назад: 3
Родитель
Сommit
1aca8cfc16

+ 19 - 0
2022/aiot-evaluate/src/views/settings/ApiResourceManagement.vue

@ -167,6 +167,10 @@ const dialogData = ref({
167 167
      label: '资源名称',
168 168
      value: '',
169 169
      attrs: {
170
        cols: 1,
171
        style: {
172
          width: '276px'
173
        },
170 174
        clearable: true,
171 175
        placeholder: '请输入资源名称'
172 176
      },
@ -181,6 +185,10 @@ const dialogData = ref({
181 185
      label: '资源编码',
182 186
      value: '',
183 187
      attrs: {
188
        cols: 1,
189
        style: {
190
          width: '276px'
191
        },
184 192
        clearable: true,
185 193
        placeholder: '请输入资源编码'
186 194
      },
@ -195,6 +203,7 @@ const dialogData = ref({
195 203
      label: '资源类型',
196 204
      value: 1,
197 205
      attrs: {
206
        cols: 1,
198 207
        radios: [{
199 208
          text: '目录',
200 209
          label: 1
@ -215,6 +224,9 @@ const dialogData = ref({
215 224
      value: '',
216 225
      attrs: {
217 226
        cols: 1,
227
        style: {
228
          width: '276px'
229
        },
218 230
        clearable: true,
219 231
        options: []
220 232
      },
@ -231,6 +243,9 @@ const dialogData = ref({
231 243
      children: 'children',
232 244
      attrs: {
233 245
        cols: 1,
246
        style: {
247
          width: '276px'
248
        },
234 249
        disabled: false,
235 250
        clearable: true,
236 251
        options: [],
@ -247,6 +262,9 @@ const dialogData = ref({
247 262
      value: '',
248 263
      attrs: {
249 264
        cols: 1,
265
        style: {
266
          width: '276px'
267
        },
250 268
        clearable: true
251 269
      },
252 270
      rules: [{
@ -259,6 +277,7 @@ const dialogData = ref({
259 277
      label: '排序',
260 278
      value: '',
261 279
      attrs: {
280
        cols: 2,
262 281
        min: 1,
263 282
        clearable: true
264 283
      },

+ 15 - 0
2022/aiot-evaluate/src/views/settings/ApplicationManagement.vue

@ -131,6 +131,9 @@ const dialogData = ref({
131 131
      value: '',
132 132
      attrs: {
133 133
        cols: 1,
134
        style: {
135
          width: '276px'
136
        },
134 137
        clearable: true,
135 138
        placeholder: '请输入应用标识'
136 139
      },
@ -147,6 +150,9 @@ const dialogData = ref({
147 150
      value: '',
148 151
      attrs: {
149 152
        cols: 1,
153
        style: {
154
          width: '276px'
155
        },
150 156
        clearable: true,
151 157
        placeholder: '请输入应用名称'
152 158
      },
@ -163,6 +169,9 @@ const dialogData = ref({
163 169
      value: '',
164 170
      attrs: {
165 171
        cols: 1,
172
        style: {
173
          width: '276px'
174
        },
166 175
        clearable: true,
167 176
        placeholder: '请输入整数,不超过7200',
168 177
        min: 1,
@ -181,6 +190,9 @@ const dialogData = ref({
181 190
      value: '',
182 191
      attrs: {
183 192
        cols: 1,
193
        style: {
194
          width: '276px'
195
        },
184 196
        clearable: true,
185 197
        placeholder: '请输入密码'
186 198
      }
@ -192,6 +204,9 @@ const dialogData = ref({
192 204
      value: '',
193 205
      attrs: {
194 206
        cols: 2,
207
        style: {
208
          width: '276px'
209
        },
195 210
        clearable: true,
196 211
        multiple: true,
197 212
        options: [],

+ 14 - 1
2022/aiot-evaluate/src/views/settings/RoleManagement.vue

@ -173,7 +173,10 @@ const dialogData = ref({
173 173
    label: '角色名称',
174 174
    value: '',
175 175
    attrs: {
176
      width: '355px',
176
      cols: 1,
177
      style: {
178
        width: '276px'
179
      },
177 180
      clearable: true,
178 181
      placeholder: '请输入角色名称'
179 182
    },
@ -189,6 +192,9 @@ const dialogData = ref({
189 192
    value: '',
190 193
    attrs: {
191 194
      cols: 1,
195
      style: {
196
        width: '276px'
197
      },
192 198
      clearable: true,
193 199
      placeholder: '请输入角色编码',
194 200
      disabled: false
@ -204,6 +210,10 @@ const dialogData = ref({
204 210
    label: '所属应用',
205 211
    value: '',
206 212
    attrs: {
213
      cols: 2,
214
      style: {
215
        width: '276px'
216
      },
207 217
      clearable: true,
208 218
      multiple: false,
209 219
      placeholder: '请选择所属应用',
@ -220,6 +230,9 @@ const dialogData = ref({
220 230
    label: '角色描述',
221 231
    value: '',
222 232
    attrs: {
233
      style: {
234
        width: '745px'
235
      },
223 236
      'show-word-limit': true,
224 237
      maxlength: 100,
225 238
      clearable: true,