Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pseer
gxpt_web
Commits
7b871ff0
Commit
7b871ff0
authored
Oct 09, 2023
by
wuwenlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ea92aa6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
1 deletions
+31
-1
index.vue
src/views/system/order/index.vue
+31
-1
No files found.
src/views/system/order/index.vue
View file @
7b871ff0
...
...
@@ -228,6 +228,16 @@
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"备注"
align
=
"center"
prop
=
"remark"
/>
<
el
-
table
-
column
label
=
"预约开始时间"
align
=
"center"
prop
=
"preStartDate"
width
=
"180"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
preStartDate
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"预约结束时间"
align
=
"center"
prop
=
"preEndDate"
width
=
"180"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
preEndDate
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
<
template
slot
-
scope
=
"scope"
>
<
el
-
button
...
...
@@ -343,6 +353,22 @@
<
el
-
form
-
item
label
=
"备注"
prop
=
"remark"
>
<
el
-
input
v
-
model
=
"form.remark"
type
=
"textarea"
placeholder
=
"请输入内容"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"预约开始时间"
prop
=
"preStartDate"
>
<
el
-
date
-
picker
clearable
v
-
model
=
"form.preStartDate"
type
=
"date"
value
-
format
=
"yyyy-MM-dd"
placeholder
=
"请选择预约开始时间"
>
<
/el-date-picker
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"预约结束时间"
prop
=
"preEndDate"
>
<
el
-
date
-
picker
clearable
v
-
model
=
"form.preEndDate"
type
=
"date"
value
-
format
=
"yyyy-MM-dd"
placeholder
=
"请选择预约结束时间"
>
<
/el-date-picker
>
<
/el-form-item
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
...
...
@@ -397,6 +423,8 @@ export default {
status
:
null
,
startDate
:
null
,
endDate
:
null
,
preStartDate
:
null
,
preEndDate
:
null
}
,
// 表单参数
form
:
{
}
,
...
...
@@ -467,7 +495,9 @@ export default {
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
remark
:
null
remark
:
null
,
preStartDate
:
null
,
preEndDate
:
null
}
;
this
.
resetForm
(
"form"
);
}
,
...
...
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