Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-ui
Commits
ad7b8a83
提交
ad7b8a83
authored
1月 08, 2025
作者:
lidongxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
style(prd_tag): 商品标签页面_样式修复_新增
同上
上级
c723ba1b
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
62 行增加
和
27 行删除
+62
-27
element-ui.scss
src/assets/styles/element-ui.scss
+26
-4
index.vue
src/components/CommonMenu/index.vue
+8
-10
index.vue
src/views/bi/prd_tag/index.vue
+28
-13
没有找到文件。
src/assets/styles/element-ui.scss
浏览文件 @
ad7b8a83
...
@@ -47,11 +47,31 @@
...
@@ -47,11 +47,31 @@
}
}
// to fixed https://github.com/ElemeFE/element/issues/2461
// to fixed https://github.com/ElemeFE/element/issues/2461
.el-dialog
{
// 重写 dialog 样式,默认居中显示
.el-overlay-dialog
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
.el-dialog
{
transform
:
none
;
transform
:
none
;
left
:
0
;
position
:
relative
;
position
:
relative
;
margin
:
0
auto
;
margin
:
0
auto
;
display
:
flex
;
flex-direction
:
column
;
height
:
50vh
;
.el-dialog__header
{
height
:
40px
;
}
.el-dialog__body
{
height
:
calc
(
50vh
-
40px
-
32px
);
}
}
.el-dialog
:not
(
.is-fullscreen
)
{
margin-top
:
0
!
important
;
}
}
}
// refine element ui upload
// refine element ui upload
...
@@ -106,9 +126,10 @@
...
@@ -106,9 +126,10 @@
// background-color: red !important;
// background-color: red !important;
}
}
.el-pagination
{
.el-pagination
{
font-size
:
var
(
--
xl-fontsize
)
!
important
;
font-size
:
var
(
--
xl-fontsize
)
!
important
;
.number
{
.number
{
font-size
:
var
(
--
xl-fontsize
)
!
important
;
font-size
:
var
(
--
xl-fontsize
)
!
important
;
}
}
}
}
\ No newline at end of file
src/components/CommonMenu/index.vue
浏览文件 @
ad7b8a83
...
@@ -128,14 +128,9 @@ const rightChange = (val) => {
...
@@ -128,14 +128,9 @@ const rightChange = (val) => {
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
/* 隐藏头部列表数量统计 */
.el-transfer-panel__header
{
display
:
none
;
}
.el-transfer
{
.el-transfer
{
display
:
flex
;
display
:
flex
;
align-items
:
center
;
height
:
100%
;
gap
:
50px
;
gap
:
50px
;
width
:
100%
;
width
:
100%
;
...
@@ -146,17 +141,20 @@ const rightChange = (val) => {
...
@@ -146,17 +141,20 @@ const rightChange = (val) => {
.el-transfer-panel
{
.el-transfer-panel
{
flex
:
1
;
flex
:
1
;
display
:
flex
;
flex-direction
:
column
;
/* 隐藏头部列表数量统计 */
.el-transfer-panel__header
{
display
:
none
;
}
.el-transfer-panel__body
{
.el-transfer-panel__body
{
height
:
500px
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
.el-transfer-panel__list
{
flex
:
1
;
flex
:
1
;
}
}
}
}
}
.el-transfer-panel
:nth-last-of-type
(
1
)
{
.el-transfer-panel
:nth-last-of-type
(
1
)
{
.el-checkbox__inner
{
.el-checkbox__inner
{
...
...
src/views/bi/prd_tag/index.vue
浏览文件 @
ad7b8a83
<
template
>
<
template
>
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<el-row
:gutter=
"20"
class=
"client-fix-height"
>
<el-row
:gutter=
"20"
class=
"client-fix-height"
>
<!--商品分类-->
<!--商品分类-->
<category-tree
:options=
"tagsOptions"
<category-tree
:options=
"tagsOptions"
:defaultProps=
"defaultProps"
:defaultProps=
"defaultProps"
...
@@ -41,10 +42,11 @@
...
@@ -41,10 +42,11 @@
<el-table-column
label=
"系列名称"
<el-table-column
label=
"系列名称"
prop=
"series"
/>
prop=
"series"
/>
</el-table>
</el-table>
</el-col>
</el-row>
<!-- 添加或修改商品-标签详情对话框 -->
<!-- 添加或修改商品-标签详情对话框 -->
<el-dialog
:title=
"title"
<el-dialog
:title=
"title"
v-model=
"open"
v-model=
"open"
>
append-to-body
>
<el-form
ref=
"formRef"
<el-form
ref=
"formRef"
:model=
"form"
:model=
"form"
:rules=
"rules"
:rules=
"rules"
...
@@ -73,13 +75,10 @@
...
@@ -73,13 +75,10 @@
<el-button
@
click=
"cancel"
>
取 消
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</div>
</el-dialog>
</el-dialog>
</el-col>
</el-row>
</div>
</div>
</template>
</template>
<
script
setup
>
<
script
setup
>
// import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/gen/info";
import
{
getSeriesListAPI
,
getProductListAPI
,
createSeriesGoodsTagAPI
,
getSeriesGoodsTagListAPI
,
getPrdTagDetailAPI
,
deleteSeriesGoodsTagAPI
}
from
'@/api'
;
import
{
getSeriesListAPI
,
getProductListAPI
,
createSeriesGoodsTagAPI
,
getSeriesGoodsTagListAPI
,
getPrdTagDetailAPI
,
deleteSeriesGoodsTagAPI
}
from
'@/api'
;
const
{
proxy
}
=
getCurrentInstance
();
const
{
proxy
}
=
getCurrentInstance
();
...
@@ -301,7 +300,6 @@ getSeriesGoodsTagList()
...
@@ -301,7 +300,6 @@ getSeriesGoodsTagList()
.app-container
{
.app-container
{
.el-row
{
.el-row
{
background-color
:
var
(
--
el-bg-color-overlay
);
background-color
:
var
(
--
el-bg-color-overlay
);
}
.right_col
{
.right_col
{
flex
:
1
!
important
;
flex
:
1
!
important
;
...
@@ -326,11 +324,28 @@ getSeriesGoodsTagList()
...
@@ -326,11 +324,28 @@ getSeriesGoodsTagList()
}
}
}
}
</
style
>
<
style
lang=
"scss"
>
::v-deep
(
.el-dialog
)
{
.my_popper
{
display
:
flex
;
.el-scrollbar__wrap
{
flex-direction
:
column
;
height
:
400px
!
important
;
.el-dialog__body
{
display
:
flex
;
flex-direction
:
column
;
.el-form
{
flex
:
1
;
.el-cascader
{
width
:
100%
;
}
}
}
.dialog-footer
{
align-self
:
flex-end
;
}
}
}
}
}
</
style
>
</
style
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论