Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨硕
template_vue
Commits
732b999a
Commit
732b999a
authored
May 21, 2024
by
高宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.设置三级菜单
parent
2688f785
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
5 deletions
+38
-5
enterboundTwo.vue
src/views/template/enterboundTwo.vue
+38
-5
No files found.
src/views/template/enterboundTwo.vue
View file @
732b999a
...
...
@@ -43,6 +43,15 @@
/>
</el-select>
</el-form-item>
<el-form-item
label=
"lot"
prop=
"lot"
>
<el-input
v-model=
"queryParams.lot"
placeholder=
"请输入lot"
clearable
size=
"small"
style=
"width: 150px"
/>
</el-form-item>
<el-form-item>
<el-button
:class=
"commonField.queryClass"
...
...
@@ -117,23 +126,33 @@
{{
scope
.
row
.
pn
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"出入情况"
prop=
"ioType"
:show-overflow-tooltip=
"true"
min-width=
"1
2
0"
>
<el-table-column
label=
"出入情况"
prop=
"ioType"
:show-overflow-tooltip=
"true"
min-width=
"1
0
0"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.ioType === '1'"
>
入
</span>
<span
v-else-if=
"scope.row.ioType === '2'"
>
出
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"qty"
prop=
"qty"
:show-overflow-tooltip=
"true"
min-width=
"1
2
0"
>
<el-table-column
label=
"qty"
prop=
"qty"
:show-overflow-tooltip=
"true"
min-width=
"1
0
0"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
qty
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"rank"
prop=
"rank"
:show-overflow-tooltip=
"true"
min-width=
"1
2
0"
>
<el-table-column
label=
"rank"
prop=
"rank"
:show-overflow-tooltip=
"true"
min-width=
"1
0
0"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
rank
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"lot"
prop=
"lot"
:show-overflow-tooltip=
"true"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
lot
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"location"
prop=
"location"
:show-overflow-tooltip=
"true"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
location
||
'-'
}}
</
template
>
</el-table-column>
<!-- <el-table-column label="申请人" prop="createBy" :show-overflow-tooltip="true">-->
<!-- <template slot-scope="scope">-->
<!-- <span v-if="scope.row.ioType !=='1'">{{ scope.row.createName }}</span>-->
...
...
@@ -147,7 +166,7 @@
<!-- <span v-else>-</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column
label=
"创建人"
prop=
"updateBy"
:show-overflow-tooltip=
"true"
min-width=
"1
4
0"
>
<el-table-column
label=
"创建人"
prop=
"updateBy"
:show-overflow-tooltip=
"true"
min-width=
"1
0
0"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
createName
||
'-'
}}
</
template
>
...
...
@@ -238,7 +257,21 @@
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"cj:"
prop=
"cj"
>
<span>
{{ getManufacturerLabel(singleDetails.cj) || '-' }}
</span>
<span>
{{getManufacturerLabel(singleDetails.cj) || '-' }}
</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"lot:"
prop=
"lot"
>
<span>
{{ singleDetails.lot || '-' }}
</span>
<!-- <el-input v-model.trim="singleDetails.ioType" :readonly="true" />-->
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"location:"
prop=
"location"
>
<span>
{{ singleDetails.location || '-' }}
</span>
<!-- <el-input v-model.trim="singleDetails.ioType" :readonly="true" />-->
</el-form-item>
</el-col>
</el-row>
...
...
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