Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
87ed926a
Commit
87ed926a
authored
Aug 15, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 8.15
parent
317c2e3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
ruoyi-ui/src/views/smartSchool/schoolProperty/outboundLedger/index.vue
+13
-5
ruoyi-ui/src/views/smartSchool/schoolProperty/warehousingLedger/index.vue
+7
-1
No files found.
ruoyi-ui/src/views/smartSchool/schoolProperty/outboundLedger/index.vue
View file @
87ed926a
...
@@ -34,14 +34,22 @@
...
@@ -34,14 +34,22 @@
<el-table-column
label=
"规格"
align=
"center"
prop=
"specification"
fixed=
"left"
/>
<el-table-column
label=
"规格"
align=
"center"
prop=
"specification"
fixed=
"left"
/>
<el-table-column
label=
"分类编码"
align=
"center"
prop=
"classificationCode"
/>
<el-table-column
label=
"分类编码"
align=
"center"
prop=
"classificationCode"
/>
<el-table-column
label=
"单位"
align=
"center"
prop=
"unit"
/>
<el-table-column
label=
"单位"
align=
"center"
prop=
"unit"
/>
<el-table-column
label=
"归属类型"
align=
"center"
prop=
"affiliationType"
/>
<el-table-column
align=
"center"
prop=
"affiliationType"
label=
"归属类型"
>
<el-table-column
label=
"设备状态"
align=
"center"
prop=
"equipmentState"
/>
<template
slot-scope=
"
{ row }">
<el-table-column
label=
"投产日期"
align=
"center"
prop=
"dateOfProduction"
width=
"200"
/>
<div>
{{
selectDictLabel
(
dict
.
type
.
affiliation_type
,
row
.
affiliationType
)
}}
</div>
<el-table-column
label=
"价格(元)"
align=
"center"
prop=
"price"
width=
"180"
/>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"equipmentState"
label=
"设备状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
equipment_state
,
row
.
equipmentState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
label=
"投产日期"
align=
"center"
prop=
"dateOfProduction"
width=
"200"
/>
<el-table-column
label=
"价格(元)"
align=
"center"
prop=
"price"
width=
"180"
/>
<el-table-column
label=
"效用年限(年)"
align=
"center"
prop=
"lifeOfUtility"
width=
"120px"
/>
<el-table-column
label=
"效用年限(年)"
align=
"center"
prop=
"lifeOfUtility"
width=
"120px"
/>
<el-table-column
label=
"地点"
align=
"center"
prop=
"place"
/>
<el-table-column
label=
"地点"
align=
"center"
prop=
"place"
/>
<el-table-column
label=
"使用人"
align=
"center"
prop=
"useName"
/>
<el-table-column
label=
"使用人"
align=
"center"
prop=
"useName"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
width=
"200"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
width=
"200"
/>
<el-table-column
label=
"操作"
align=
"center"
prop=
"orgname"
width=
"200"
fixed=
"right"
>
<el-table-column
label=
"操作"
align=
"center"
prop=
"orgname"
width=
"200"
fixed=
"right"
>
<
template
slot-scope=
"{ row }"
>
<
template
slot-scope=
"{ row }"
>
<el-button
type=
"text"
size=
"small"
@
click=
"handleLook(row)"
>
查看
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"handleLook(row)"
>
查看
</el-button>
...
...
ruoyi-ui/src/views/smartSchool/schoolProperty/warehousingLedger/index.vue
View file @
87ed926a
...
@@ -41,8 +41,14 @@
...
@@ -41,8 +41,14 @@
<el-table-column
align=
"center"
prop=
"unit"
label=
"单位"
>
<el-table-column
align=
"center"
prop=
"unit"
label=
"单位"
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
prop=
"affiliationType"
label=
"归属类型"
>
<el-table-column
align=
"center"
prop=
"affiliationType"
label=
"归属类型"
>
<template
slot-scope=
"
{ row }">
<div>
{{
selectDictLabel
(
dict
.
type
.
affiliation_type
,
row
.
affiliationType
)
}}
</div>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
prop=
"equipmentState"
label=
"设备状态"
>
<el-table-column
align=
"center"
prop=
"equipmentState"
label=
"设备状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
equipment_state
,
row
.
equipmentState
)
}}
</div>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
prop=
"dateOfProduction"
label=
"投产日期"
width=
"130"
>
<el-table-column
align=
"center"
prop=
"dateOfProduction"
label=
"投产日期"
width=
"130"
>
</el-table-column>
</el-table-column>
...
@@ -54,7 +60,7 @@
...
@@ -54,7 +60,7 @@
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
prop=
"useName"
label=
"使用人"
>
<el-table-column
align=
"center"
prop=
"useName"
label=
"使用人"
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
label=
"备注"
>
<el-table-column
align=
"center"
prop=
"remark"
label=
"备注"
width=
"200"
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"操作"
width=
"180"
align=
"center"
fixed=
"right"
>
<el-table-column
label=
"操作"
width=
"180"
align=
"center"
fixed=
"right"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment