Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-ui
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pda
pda-ui
Commits
87dcc0fb
Commit
87dcc0fb
authored
Jan 22, 2024
by
hiyonx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售订单功能完善
parent
6ce827a7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
419 additions
and
185 deletions
+419
-185
index.vue
src/components/SapPropertyData/index.vue
+12
-10
index.vue
src/views/mes/order/sales/index.vue
+23
-175
index.vue
src/views/mes/order/salesdetail/index.vue
+384
-0
No files found.
src/components/SapPropertyData/index.vue
View file @
87dcc0fb
...
...
@@ -2,17 +2,19 @@
<div
class=
"base-info"
>
<el-form
:model=
"sapData"
ref=
"form"
label-width=
"120px"
size=
"mini"
>
<el-row
class=
"form-wrap"
:gutter=
"gutter"
>
<template
v-for=
"(sapProperties, key) in sapPropertyMap"
>
<div
class=
"separator"
>
{{
getViewTypeName
(
key
)
}}
</div>
<template
v-for=
"item in sapProperties"
>
<el-col
:span=
"span"
:key=
"item.id"
>
<el-form-item
:label=
"item.name"
:prop=
"item.sapField"
:rules=
"
{required: item.required, validator: (rule, value, callback) => onValidate(rule, value, callback, item), trigger: ['blur', 'change']}">
<el-input-all
v-model=
"sapData[item.sapField]"
:item=
"item"
/>
</el-form-item>
</el-col>
<div>
<template
v-for=
"(sapProperties, key) in sapPropertyMap"
>
<div
class=
"separator"
>
{{
getViewTypeName
(
key
)
}}
</div>
<template
v-for=
"item in sapProperties"
>
<el-col
:span=
"span"
:key=
"item.id"
>
<el-form-item
:label=
"item.name"
:prop=
"item.sapField"
:rules=
"
{required: item.required, validator: (rule, value, callback) => onValidate(rule, value, callback, item), trigger: ['blur', 'change']}">
<el-input-all
v-model=
"sapData[item.sapField]"
:item=
"item"
/>
</el-form-item>
</el-col>
</
template
>
</template>
</
template
>
</
div
>
</el-row>
<div
class=
"footer"
>
...
...
src/views/mes/order/sales/index.vue
View file @
87dcc0fb
This diff is collapsed.
Click to expand it.
src/views/mes/order/salesdetail/index.vue
0 → 100644
View file @
87dcc0fb
This diff is collapsed.
Click to expand it.
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