Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yongxinda-admin
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
刘旭
yongxinda-admin
Commits
28357208
提交
28357208
authored
1月 11, 2023
作者:
刘旭
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改合口味logo
上级
23a08fa6
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
9 行增加
和
7 行删除
+9
-7
hkw.png
src/assets/hkw.png
+0
-0
logo1.png
src/assets/logo1.png
+0
-0
MenuLogo.vue
src/layout/menu/MenuLogo.vue
+5
-2
login.vue
src/views/login/login.vue
+1
-1
topic.vue
src/views/promotion/topic.vue
+2
-3
topicCreate.vue
src/views/promotion/topicCreate.vue
+1
-1
没有找到文件。
src/assets/hkw.png
0 → 100644
浏览文件 @
28357208
17.2 KB
src/assets/logo1.png
deleted
100644 → 0
浏览文件 @
23a08fa6
72.3 KB
src/layout/menu/MenuLogo.vue
浏览文件 @
28357208
<
template
>
<
template
>
<div
class=
"logo"
>
<div
class=
"logo"
>
<img
src=
"@/assets/logo.png"
alt=
"logo"
/>
<!--
<img
src=
"@/assets/logo.png"
alt=
"logo"
/>
-->
<span
class=
"title"
>
永信达商城
</span>
<img
src=
"@/assets/hkw.png"
alt=
"logo"
/>
<span
class=
"title"
>
合口味商城
</span>
</div>
</div>
</
template
>
</
template
>
<
script
setup
lang=
"ts"
>
<
script
setup
lang=
"ts"
>
...
@@ -16,11 +17,13 @@
...
@@ -16,11 +17,13 @@
align-items
:
center
;
align-items
:
center
;
padding-left
:
15px
;
padding-left
:
15px
;
color
:
#fff
;
color
:
#fff
;
img
{
img
{
width
:
64px
;
width
:
64px
;
height
:
32px
;
height
:
32px
;
margin-right
:
12px
;
margin-right
:
12px
;
}
}
span
{
span
{
font-weight
:
600
;
font-weight
:
600
;
line-height
:
50px
;
line-height
:
50px
;
...
...
src/views/login/login.vue
浏览文件 @
28357208
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"logincontainer"
>
<div
class=
"logincontainer"
>
<el-form
class=
"loginForm"
:model=
"loginModel"
ref=
"loginFormRef"
:rules=
"rules"
:inline=
"false"
>
<el-form
class=
"loginForm"
:model=
"loginModel"
ref=
"loginFormRef"
:rules=
"rules"
:inline=
"false"
>
<el-form-item>
<el-form-item>
<div
class=
"loginTitle"
>
永信达
商城系统
</div>
<div
class=
"loginTitle"
>
合口味
商城系统
</div>
</el-form-item>
</el-form-item>
<el-form-item
prop=
"username"
>
<el-form-item
prop=
"username"
>
<el-input
placeholder=
"请输入账户"
size=
"large"
v-model=
"loginModel.username"
>
<el-input
placeholder=
"请输入账户"
size=
"large"
v-model=
"loginModel.username"
>
...
...
src/views/promotion/topic.vue
浏览文件 @
28357208
<
template
>
<
template
>
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<!-- 查询和其他操作 -->
<!-- 查询和其他操作 -->
<div
class=
"filter-container"
>
<div
class=
"filter-container"
>
<el-input
v-model=
"listQuery.title"
clearable
class=
"filter-item"
style=
"width: 200px;"
<el-input
v-model=
"listQuery.title"
clearable
class=
"filter-item"
style=
"width: 200px;"
...
@@ -61,8 +60,8 @@
...
@@ -61,8 +60,8 @@
<!-- 查看详情 -->
<!-- 查看详情 -->
<html-details
:html-data=
"htmlData"
/>
<html-details
:html-data=
"htmlData"
/>
<topic-create
ref=
"topicCreateRef"
@
init=
"getList"
/>
<topic-create
ref=
"topicCreateRef"
@
init=
"getList"
/>
<topic-edit
ref=
"topicEditRef"
@
init=
"getList"
/>
<topic-edit
ref=
"topicEditRef"
@
init=
"getList"
/>
</div>
</div>
</template>
</template>
...
...
src/views/promotion/topicCreate.vue
浏览文件 @
28357208
...
@@ -221,7 +221,7 @@ let confirmAdd = () => {
...
@@ -221,7 +221,7 @@ let confirmAdd = () => {
topic
.
value
.
goods
=
topic
.
value
.
goods
?.
concat
(
newGoodsIds
)
topic
.
value
.
goods
=
topic
.
value
.
goods
?.
concat
(
newGoodsIds
)
goodsList
.
value
=
goodsList
.
value
?.
concat
(
newGoodsList
)
goodsList
.
value
=
goodsList
.
value
?.
concat
(
newGoodsList
)
}
}
handleCancel
()
addVisiable
.
value
=
false
}
}
let
handleDelete
=
(
row
:
any
)
=>
{
let
handleDelete
=
(
row
:
any
)
=>
{
for
(
var
index
=
0
;
index
<
topic
.
value
.
goods
.
length
;
index
++
)
{
for
(
var
index
=
0
;
index
<
topic
.
value
.
goods
.
length
;
index
++
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论