Commit e849bae2 authored by 张耀's avatar 张耀

Merge branch 'dev' into zy

parents f51eda25 d565627b
<template> <template>
<div id="app" @click="readFlag = false"> <div id="app" @click="readFlag = false">
<el-config-provider> <el-config-provider>
<bg-menu :path="nowParent.path" @openMsg="openMsg"></bg-menu> <bg-menu :path="nowParent ? nowParent[0].path : ''" @openMsg="openMsg"></bg-menu>
<div class="container" v-if="pageShow"> <div class="container" v-if="pageShow">
<!-- <bg-nav :highlightParentRule="highlightParentRule" :title="nowParent.menuName" width="208px" :list="nowParent.children" v-show="navShow" class="con-nav" /> --> <!-- <bg-nav :highlightParentRule="highlightParentRule" :title="nowParent.menuName" width="208px" :list="nowParent.children" v-show="navShow" class="con-nav" /> -->
<bg-nav <bg-nav
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
@keydown.enter="search" @keydown.enter="search"
@clear="search" @clear="search"
clearable clearable
:style="{ width: inputWidth }"
v-model.trim="modelValue"> v-model.trim="modelValue">
<template #append> <template #append>
<div class="append-btn" @click="search"> <div class="append-btn" @click="search">
...@@ -59,6 +60,10 @@ const props = defineProps({ ...@@ -59,6 +60,10 @@ const props = defineProps({
type: Boolean, type: Boolean,
default: true, default: true,
}, },
inputWidth: {
type: String,
default: "280px",
},
}); });
watch(props, (n, o) => { watch(props, (n, o) => {
......
...@@ -1999,7 +1999,7 @@ a { ...@@ -1999,7 +1999,7 @@ a {
flex: 1; flex: 1;
} }
.right-filter { .right-filter {
width: 398px; min-width: 398px;
justify-content: end; justify-content: end;
display: flex; display: flex;
.el-input { .el-input {
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
</bg-pagination> </bg-pagination>
</div> </div>
</div> </div>
<!-- todo: 推送提醒 --> <!-- 推送提醒 -->
<el-dialog title="推送提醒" v-model="pushDialog" width="780px" :before-close="cancelPushDialog"> <el-dialog title="推送提醒" v-model="pushDialog" width="780px" :before-close="cancelPushDialog">
<div class="warning_info"> <div class="warning_info">
<bg-icon <bg-icon
...@@ -537,8 +537,8 @@ const pushConfirm = () => { ...@@ -537,8 +537,8 @@ const pushConfirm = () => {
if (state.pushType == 1) { if (state.pushType == 1) {
ids.push(state.actionRow.id); ids.push(state.actionRow.id);
} else { } else {
state.selected.forEach((e) => { ids = state.selected.map((e) => {
ids.push(e.id); return e.id;
}); });
} }
let params = { let params = {
...@@ -573,8 +573,8 @@ const confirmClose = () => { ...@@ -573,8 +573,8 @@ const confirmClose = () => {
if (state.closeType == 1) { if (state.closeType == 1) {
ids.push(state.actionRow.id); ids.push(state.actionRow.id);
} else { } else {
state.selected.forEach((e) => { ids = state.selected.map((e) => {
ids.push(e.id); return e.id;
}); });
} }
let params = { let params = {
......
<template>
<div>规则详情</div>
</template>
<script setup></script>
<style lang="scss" scoped></style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment