Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
4e4a96b2
Commit
4e4a96b2
authored
Jul 04, 2022
by
Marcus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
重泡货配置 改文案,关弹窗重置表单
parent
5fa2c517
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
0 deletions
+96
-0
index.vue
src/views/ecw/offer/components/special/index.vue
+96
-0
No files found.
src/views/ecw/offer/components/special/index.vue
0 → 100644
View file @
4e4a96b2
<
template
>
<div>
<el-dialog
title=
"特价申请"
:visible.sync=
"dialogVisible"
width=
"900px"
:before-close=
"handleClose()"
>
<div>
订单号:
{{
number
}}
</div>
<el-table
:data=
"[]"
style=
"width: 100%"
>
<el-table-column
prop=
"address"
label=
"品名"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"填单货物属性"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"入库货物属性"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"最后操作时间"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"原价"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"成本价"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"销售价"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"操作"
>
</el-table-column>
</el-table>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogVisible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"dialogVisible = false"
>
确 定
</el-button>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
export
default
{
name
:
"
Special
"
,
props
:
{
id
:
{
type
:
String
},
visible
:
{
tpe
:
Boolean
,
default
:
false
},
number
:
{
tpe
:
String
,
default
:
''
}
},
mounted
()
{
this
.
dialogVisible
=
visible
},
data
()
{
return
{
dialogVisible
:
false
}
},
methods
:
{
handleClose
()
{}
},
watch
:
{
visible
(
val
)
{
this
.
dialogVisible
=
val
},
dialogVisible
(
val
)
{
this
.
$emit
(
'
update:visible
'
,
this
.
dialogVisible
,
val
)
}
}
}
</
script
>
<
style
scoped
>
</
style
>
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