Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
sy-sxk-ui
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
黄麒宇
sy-sxk-ui
Commits
2eef2d06
Commit
2eef2d06
authored
Sep 22, 2022
by
huangqy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交四巷库
parent
855ef303
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
32 行增加
和
5 行删除
+32
-5
loginbg.png
src/assets/images/loginbg.png
+0
-0
loginbg2.png
src/assets/images/loginbg2.png
+0
-0
goodsDrawer.vue
src/views/account/component/goods/goodsDrawer.vue
+1
-1
station.vue
src/views/basicData/station.vue
+27
-0
index.vue
src/views/index.vue
+1
-1
index全显示.vue
src/views/index全显示.vue
+2
-2
Login.vue
src/views/login/Login.vue
+1
-1
没有找到文件。
src/assets/images/loginbg.png
View replaced file @
855ef303
View file @
2eef2d06
差异被折叠。
点击展开。
src/assets/images/loginbg2.png
View replaced file @
855ef303
View file @
2eef2d06
差异被折叠。
点击展开。
src/views/account/component/goods/goodsDrawer.vue
View file @
2eef2d06
...
...
@@ -4,7 +4,7 @@
<!--
<el-table-column
min-width=
"60"
prop=
"storeId"
label=
"储存区域"
align=
"center"
/>
-->
<el-table-column
min-width=
"60"
prop=
"positionCode"
label=
"货位代码"
align=
"center"
/>
<el-table-column
min-width=
"60"
prop=
"palletId"
label=
"托盘号"
align=
"center"
/>
<el-table-column
prop=
"billName"
label=
"凭证号"
align=
"center"
/>
<el-table-column
prop=
"billName"
label=
"凭证号"
align=
"center"
:show-overflow-tooltip=
"true"
/>
<!--
<el-table-column
prop=
"billNo"
label=
"出库单号"
align=
"center"
/>
-->
<el-table-column
prop=
"fwOrgName"
label=
"发物单位"
align=
"center"
/>
<el-table-column
prop=
"prodDate"
label=
"生产日期"
align=
"center"
>
...
...
src/views/basicData/station.vue
View file @
2eef2d06
...
...
@@ -64,6 +64,17 @@
<el-tag
v-else
size=
"mini"
type=
"success"
>
通用
</el-tag>
</
template
>
</el-table-column>
<el-table-column
label=
"出库开关"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-switch
v-model=
"scope.row.outSwitch"
active-color=
"#409EFF"
inactive-color=
"#F56C6C"
:active-value=
"1"
:inactive-value=
"2"
@
change=
"changeEnabled(scope.row, scope.row.outSwitch)"
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"remark"
label=
"备注"
align=
"center"
/>
<el-table-column
label=
"操作"
width=
"220"
align=
"center"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -260,6 +271,22 @@ export default {
this
.
total
=
res
.
data
.
totalRows
-
0
this
.
stationData
=
res
.
data
.
records
},
async
changeEnabled
(
data
,
val
)
{
const
_this
=
this
const
url
=
'/station/updateOutSwitch'
const
params
=
{
id
:
data
.
id
,
outSwitch
:
val
}
const
{
data
:
res
}
=
await
this
.
$axios
.
post
(
url
,
params
)
if
(
res
.
code
!==
99200
)
{
if
(
data
.
outSwitch
===
1
)
{
data
.
outSwitch
=
2
}
if
(
data
.
outSwitch
===
2
)
{
data
.
outSwitch
=
1
}
return
this
.
$message
.
error
(
res
.
message
)
}
this
.
$message
.
success
(
res
.
message
)
this
.
getStationData
()
},
// 重置
resClick
()
{
...
...
src/views/index.vue
View file @
2eef2d06
...
...
@@ -4,7 +4,7 @@
<el-header
class=
"ltk-header"
>
<div
class=
"logo"
@
click=
"goHome()"
>
<img
src=
"../assets/logo.png"
alt=
"logo"
/>
<span>
智能
库房作业
系统
</span>
<span>
智能
自动化库房作业管理信息
系统
</span>
</div>
<div
class=
"time_box"
@
click=
"cut"
>
<bo-time></bo-time>
...
...
src/views/index全显示.vue
View file @
2eef2d06
<
temp
late
>
<
temp
late
>
...
...
@@ -4,7 +4,7 @@
<el-header
class=
"ltk-header"
>
<div
class=
"logo"
@
click=
"goHome()"
>
<img
src=
"../assets/logo.png"
alt=
"logo"
/>
<span>
智能
库房作业
系统
</span>
<span>
智能
自动化库房作业管理信息
系统
</span>
</div>
<div
class=
"time_box"
@
click=
"cut"
>
<bo-time></bo-time>
...
...
src/views/login/Login.vue
View file @
2eef2d06
<
template
>
<div
class=
"login_container"
@
keyup
.
enter=
"loginClick()"
>
<dv-border-box-12
:color=
"['#fff','#fff']"
style=
"width: 450px;height: 320px;display: block;float: right;margin-right: 3
5
%;margin-top: 24%"
>
<dv-border-box-12
:color=
"['#fff','#fff']"
style=
"width: 450px;height: 320px;display: block;float: right;margin-right: 3
6
%;margin-top: 24%"
>
<span
style=
"font-size: 26px;color:#fff;padding:0px 172px;display:inline-block;margin-top: 20px"
>
用户登录
</span>
<el-form
class=
"login_form"
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论