更新
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<!--选择图标-->
|
||||
<div class="form-item-box choose-icon-zj" :style="{ width: width }">
|
||||
<el-autocomplete v-bind="$attrs" v-model="modelValue" :fetch-suggestions="querySearch"
|
||||
<el-autocomplete v-bind="$attrs" v-model="props.modelValue" :fetch-suggestions="querySearch"
|
||||
popper-class="choose-icon-zj-autocomplete" :placeholder="placeholder" @change="onInput" @select="handleSelect">
|
||||
<template #prefix>
|
||||
<SvgIcon :icon="modelValue"></SvgIcon>
|
||||
<SvgIcon :icon="props.modelValue"></SvgIcon>
|
||||
</template>
|
||||
<template #default="{ item }">
|
||||
<SvgIcon :icon="item.link"></SvgIcon>
|
||||
|
||||
@ -2,11 +2,11 @@
|
||||
<el-dialog
|
||||
title="选择辅警"
|
||||
width="1400px"
|
||||
v-model="modelValue"
|
||||
v-model="props.modelValue"
|
||||
:append-to-body="true"
|
||||
@close="closed"
|
||||
>
|
||||
<div v-if="modelValue">
|
||||
<div v-if="props.modelValue">
|
||||
<el-form :model="listQuery" class="mosty-from-wrap" :inline="true">
|
||||
<el-form-item label="姓名">
|
||||
<el-input
|
||||
|
||||
@ -3,10 +3,10 @@
|
||||
<el-dialog
|
||||
title="选择警用器械"
|
||||
width="1400px"
|
||||
v-model="modelValue"
|
||||
v-model="props.modelValue"
|
||||
@close="closed"
|
||||
>
|
||||
<div v-if="modelValue">
|
||||
<div v-if="props.modelValue">
|
||||
<el-form :model="listQuery" class="mosty-from-wrap" :inline="true">
|
||||
<el-form-item label="器械类型">
|
||||
<el-select
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="form-item-box zj-email-wrap" :style="{ width: width }">
|
||||
<el-autocomplete v-model="email" v-bind="$attrs" :placeholder="placeholder" :fetch-suggestions="querySearch"
|
||||
<el-autocomplete v-model="props.email" v-bind="$attrs" :placeholder="placeholder" :fetch-suggestions="querySearch"
|
||||
:trigger-on-focus="false" class="inline-input" @select="handleSelect" @input="onInput" />
|
||||
<!-- <el-icon class="errorIcon">
|
||||
<circle-close-filled />
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
:placeholder="placeholder"
|
||||
:options="tableData"
|
||||
v-bind="$attrs"
|
||||
v-model="modelValue"
|
||||
v-model="props.modelValue"
|
||||
@change="handleChange"
|
||||
:props="endProps"
|
||||
:filterable="filterable"
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<el-input
|
||||
:placeholder="placeholder"
|
||||
v-bind="$attrs"
|
||||
v-model="modelValue"
|
||||
v-model="props.modelValue"
|
||||
@input="onInput"
|
||||
></el-input>
|
||||
<!-- <el-icon class="errorIcon"><circle-close-filled /></el-icon>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="form-item-box" :style="{ width: width }">
|
||||
<el-input :placeholder="placeholder" v-bind="$attrs" v-model="modelValue" @input="onInput" ></el-input>
|
||||
<el-input :placeholder="placeholder" v-bind="$attrs" v-model="props.modelValue" @input="onInput" ></el-input>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="form-item-box" :style="{ width: width }">
|
||||
<el-input :placeholder="placeholder" v-bind="$attrs" v-model="modelValue" @input="onInput" ></el-input>
|
||||
<el-input :placeholder="placeholder" v-bind="$attrs" v-model="props.modelValue" @input="onInput" ></el-input>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="form-item-box" :style="{ width: width }">
|
||||
<el-radio-group v-bind="$attrs" v-model="sex" @change="onChange">
|
||||
<el-radio-group v-bind="$attrs" v-model="props.sex" @change="onChange">
|
||||
<el-radio :label="item.dm" v-for="item in sexArr" :key="item.id">
|
||||
<SvgIcon class="manIcon" icon="man" v-if="item.zdmc == '男'"></SvgIcon>
|
||||
<SvgIcon class="manIcon" icon="woman" v-else-if="item.zdmc == '女'"></SvgIcon>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="exportBox">
|
||||
<el-dialog v-model="show" title="导入文件" width="400px" :show-close="true" :center="true" :before-close="handleClose">
|
||||
<el-dialog v-model="props.show" title="导入文件" width="400px" :show-close="true" :center="true" :before-close="handleClose">
|
||||
<div class="uplodBox">
|
||||
<el-upload action="#" drag :on-success="handleSuccess" :on-change="handleChange" :show-file-list="true"
|
||||
:file-list="fileDate" accept=".xls,.xlsx" :auto-upload="false">
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<el-dialog title="巡防单位" width="1400px" v-model="modelValue" append-to-body @close="closed">
|
||||
<div v-if="modelValue">
|
||||
<el-dialog title="巡防单位" width="1400px" v-model="props.modelValue" append-to-body @close="closed">
|
||||
<div v-if="props.modelValue">
|
||||
<el-form :model="listQuery" class="mosty-from-wrap" :inline="true">
|
||||
<el-form-item label="姓名">
|
||||
<el-input v-model="listQuery.xm" placeholder="请输入姓名" clearable/>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-dialog title="巡防内容" width="1400px" v-model="modelValue" append-to-body @close="closed">
|
||||
<div v-if="modelValue">
|
||||
<el-dialog title="巡防内容" width="1400px" v-model="props.modelValue" append-to-body @close="closed">
|
||||
<div v-if="props.modelValue">
|
||||
<el-form :model="listQuery" class="mosty-from-wrap" :inline="true">
|
||||
<el-form-item label="搜索关键字">
|
||||
<el-input v-model="listQuery.key" placeholder="请输入关键字" clearable />
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-dialog v-model="modelValue" title="系统模块" width="100%" :before-close="handleClose" :append-to-body="false">
|
||||
<el-dialog v-model="props.modelValue" title="系统模块" width="100%" :before-close="handleClose" :append-to-body="false">
|
||||
<div class="cntBox">
|
||||
<CntBox />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user