diff --git a/project/fengdu/app/AppIntegratingRules/components/List.vue b/project/fengdu/app/AppIntegratingRules/components/List.vue index cc6be835..47e5a81b 100644 --- a/project/fengdu/app/AppIntegratingRules/components/List.vue +++ b/project/fengdu/app/AppIntegratingRules/components/List.vue @@ -13,6 +13,21 @@ @change="handleTypeSearch" ref="eventTypeSearch"/> + + + {{ girdName }} + 有效地区 + + + + { + this.getList() + }) + }, onPick (e) { if (e.length) { this.form.girdName = e[0].girdName @@ -428,6 +462,49 @@ height: 100%; background: #f3f6f9; + .userSelcet { + display: flex; + align-items: center; + justify-content: space-between; + width: 215px; + height: 32px; + line-height: 32px; + border-radius: 4px; + border: 1px solid #d0d4dc; + overflow: hidden; + cursor: pointer; + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + + &:hover { + border-color: $placeholderColor; + } + + i { + display: flex; + position: relative; + align-items: center; + justify-content: center; + width: 30px; + height: 100%; + line-height: 32px; + font-size: 14px; + text-align: center; + color: #d0d4dc; + transform: rotateZ(180deg); + } + + .el-icon-circle-close:hover { + opacity: 0.6; + } + + span { + flex: 1; + padding: 0 15px; + font-size: 12px; + color: $placeholderColor; + } + } + :deep( .ai-list__content--right ){ width: 100%; }