[update] 添加图标
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
@font-face {
|
@font-face {
|
||||||
font-family: "iconfont"; /* Project id 4236293 */
|
font-family: "iconfont"; /* Project id 4236293 */
|
||||||
src: url('iconfont.woff2?t=1694155470105') format('woff2'),
|
src: url('iconfont.woff2?t=1694404219516') format('woff2'),
|
||||||
url('iconfont.woff?t=1694155470105') format('woff'),
|
url('iconfont.woff?t=1694404219516') format('woff'),
|
||||||
url('iconfont.ttf?t=1694155470105') format('truetype');
|
url('iconfont.ttf?t=1694404219516') format('truetype');
|
||||||
}
|
}
|
||||||
|
|
||||||
.iconfont {
|
.iconfont {
|
||||||
@@ -13,6 +13,14 @@
|
|||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon-ios-list-box:before {
|
||||||
|
content: "\e67c";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-biaoqian-mianxing:before {
|
||||||
|
content: "\e913";
|
||||||
|
}
|
||||||
|
|
||||||
.icon-yingyong:before {
|
.icon-yingyong:before {
|
||||||
content: "\e679";
|
content: "\e679";
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -5,6 +5,20 @@
|
|||||||
"css_prefix_text": "icon-",
|
"css_prefix_text": "icon-",
|
||||||
"description": "",
|
"description": "",
|
||||||
"glyphs": [
|
"glyphs": [
|
||||||
|
{
|
||||||
|
"icon_id": "6978751",
|
||||||
|
"name": "ios-list-box",
|
||||||
|
"font_class": "ios-list-box",
|
||||||
|
"unicode": "e67c",
|
||||||
|
"unicode_decimal": 59004
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "29808564",
|
||||||
|
"name": "标签-面性",
|
||||||
|
"font_class": "biaoqian-mianxing",
|
||||||
|
"unicode": "e913",
|
||||||
|
"unicode_decimal": 59667
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"icon_id": "1126128",
|
"icon_id": "1126128",
|
||||||
"name": "应用",
|
"name": "应用",
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -62,62 +62,47 @@
|
|||||||
</a-col>
|
</a-col>
|
||||||
<template v-if="searchList.length > minLength && toggleSearchStatus">
|
<template v-if="searchList.length > minLength && toggleSearchStatus">
|
||||||
<a-col :md="(24 / (minLength + 1))" :sm="(24 / minLength)" v-for="(item,index) in searchList.slice(minLength)" :key="index" style="line-height: 48px">
|
<a-col :md="(24 / (minLength + 1))" :sm="(24 / minLength)" v-for="(item,index) in searchList.slice(minLength)" :key="index" style="line-height: 48px">
|
||||||
<!-- 树形选择器 -->
|
<!-- 树形选择器 -->
|
||||||
<!-- <template v-if="item.fieldShowType === FieldType.TREE.value">-->
|
<template v-if="item.fieldShowType === FieldType.TREE.value">
|
||||||
<!-- <a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
|
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||||
<!-- <a-tree-select-->
|
<a-tree-select
|
||||||
<!-- tree-node-filter-prop="title"-->
|
tree-node-filter-prop="title"
|
||||||
<!-- v-model="queryParam[item.dbFieldName]"-->
|
v-model="queryParam[item.dbFieldName]"
|
||||||
<!-- :maxTagCount="1"-->
|
:maxTagCount="1"
|
||||||
<!-- :getPopupContainer="triggerNode=> triggerNode.parentNode"-->
|
:getPopupContainer="triggerNode=> triggerNode.parentNode"
|
||||||
<!-- :tree-data="item.tree"-->
|
:tree-data="item.tree"
|
||||||
<!-- tree-checkable-->
|
tree-checkable
|
||||||
<!-- :placeholder="$t('pleaseSelect')+item.dbFieldTxt"-->
|
:placeholder="$t('pleaseSelect')+item.dbFieldTxt"
|
||||||
<!-- />-->
|
/>
|
||||||
<!-- </a-form-item>-->
|
</a-form-item>
|
||||||
<!-- </template>-->
|
</template>
|
||||||
<!-- 输入框 -->
|
<!-- 输入框 -->
|
||||||
<template v-if="[FieldType.TEXT_BOX.value, FieldType.TEXTAREA.value,FieldType.USER_SINGLE.value,
|
<template v-if="[FieldType.TEXT_BOX.value, FieldType.TEXTAREA.value,FieldType.USER_SINGLE.value,
|
||||||
FieldType.ORGAN_SINGLE.value, FieldType.STANDARD_MORE.value, FieldType.ORGAN_MORE.value]
|
FieldType.ORGAN_SINGLE.value, FieldType.STANDARD_MORE.value, FieldType.ORGAN_MORE.value]
|
||||||
.includes(item.fieldShowType)">
|
.includes(item.fieldShowType)">
|
||||||
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||||
<a-input :placeholder="$t('pleaseEnter')+item.dbFieldTxt"
|
<a-input :placeholder="$t('pleaseEnter')+item.dbFieldTxt"
|
||||||
v-model="queryParam[item.dbFieldName]"></a-input>
|
v-model="queryParam[item.dbFieldName]"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</template>
|
</template>
|
||||||
<!-- 数字输入框 -->
|
<!-- 日期区间选择器 -->
|
||||||
<!-- <template v-else-if="item.fieldShowType === FieldType.TEXT_NUMBER.value">-->
|
<template v-else-if="[FieldType.DATE_SINGLE.value, FieldType.DATE_MORE.value].includes(item.fieldShowType)">
|
||||||
<!-- <a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
|
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||||
<!-- <a-input-number :placeholder="$t('pleaseEnter')+item.dbFieldTxt"-->
|
<a-range-picker v-model="queryParam[item.dbFieldName]"
|
||||||
<!-- v-model="queryParam[item.dbFieldName]" :min="1" :max="99999999"/>-->
|
format="YYYY-MM-DD" value-format="YYYY-MM-DD"
|
||||||
<!-- </a-form-item>-->
|
@change="onChange(item.dbFieldName)"></a-range-picker>
|
||||||
<!-- </template>-->
|
</a-form-item>
|
||||||
<!-- 字典多选框 -->
|
</template>
|
||||||
<!-- <template v-else-if="item.fieldShowType === FieldType.OPTION_MORE.value">-->
|
<!-- 字典选择器 -->
|
||||||
<!-- <a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
|
<template v-else-if="item.fieldShowType === FieldType.OPTION_SINGLE.value || item.fieldShowType === FieldType.OPTION_MORE.value">
|
||||||
<!-- <j-multi-select-tag v-model="queryParam[item.dbFieldName]"-->
|
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||||
<!-- :placeholder="$t('pleaseSelect')+item.dbFieldTxt" :type="'select'"-->
|
<j-dict-select-tag v-model="queryParam[item.dbFieldName]"
|
||||||
<!-- :triggerChange="false" :dictCode="item.dict_field"/>-->
|
:placeholder="$t('pleaseSelect')+item.dbFieldTxt"
|
||||||
<!-- </a-form-item>-->
|
:type="'select'"
|
||||||
<!-- </template>-->
|
:triggerChange="false" :dictCode="item.dict_field" />
|
||||||
<!-- 日期区间选择器 -->
|
</a-form-item>
|
||||||
<template v-else-if="[FieldType.DATE_SINGLE.value, FieldType.DATE_MORE.value].includes(item.fieldShowType)">
|
</template>
|
||||||
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
</a-col>
|
||||||
<a-range-picker v-model="queryParam[item.dbFieldName]"
|
|
||||||
format="YYYY-MM-DD" value-format="YYYY-MM-DD"
|
|
||||||
@change="onChange(item.dbFieldName)"></a-range-picker>
|
|
||||||
</a-form-item>
|
|
||||||
</template>
|
|
||||||
<!-- 字典选择器 -->
|
|
||||||
<template v-else-if="item.fieldShowType === FieldType.OPTION_SINGLE.value || item.fieldShowType === FieldType.OPTION_MORE.value">
|
|
||||||
<a-form-item :label="item.dbFieldTxt" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
||||||
<j-dict-select-tag v-model="queryParam[item.dbFieldName]"
|
|
||||||
:placeholder="$t('pleaseSelect')+item.dbFieldTxt"
|
|
||||||
:type="'select'"
|
|
||||||
:triggerChange="false" :dictCode="item.dict_field" />
|
|
||||||
</a-form-item>
|
|
||||||
</template>
|
|
||||||
</a-col>
|
|
||||||
</template>
|
</template>
|
||||||
<div style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
|
<div style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
|
||||||
<a @click="handleToggleSearch" v-if="searchList.length > minLength">
|
<a @click="handleToggleSearch" v-if="searchList.length > minLength">
|
||||||
|
|||||||
Reference in New Issue
Block a user