Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
c63a00af
Commit
c63a00af
authored
Jul 09, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
3f0b3215
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
40 deletions
+36
-40
backbill-form.vue
src/components/sale/backbill-form.vue
+5
-1
backflow-form.vue
src/components/sale/backflow-form.vue
+10
-9
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+21
-30
No files found.
src/components/sale/backbill-form.vue
View file @
c63a00af
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
</backinfoForm>
</backinfoForm>
</div>
</div>
<div
v-if=
"tabCheck=='second'"
>
<div
v-if=
"tabCheck=='second'"
>
<backflowForm
:seting-obj=
"setingObj"
:showType=
"showType"
@
close=
"closeShenheForm"
@
success=
"refreshPage"
>
<backflowForm
:seting-obj=
"setingObj"
:showType=
"showType"
:Id=
"Id"
@
close=
"closeShenheForm"
@
success=
"refreshPage"
>
</backflowForm>
</backflowForm>
</div>
</div>
</q-card>
</q-card>
...
@@ -85,6 +85,10 @@
...
@@ -85,6 +85,10 @@
showType
:
{
showType
:
{
type
:
Number
,
type
:
Number
,
default
:
1
default
:
1
},
Id
:{
type
:
Number
,
default
:
null
}
}
},
},
components
:
{
components
:
{
...
...
src/components/sale/backflow-form.vue
View file @
c63a00af
...
@@ -148,12 +148,12 @@
...
@@ -148,12 +148,12 @@
<
script
>
<
script
>
import
{
import
{
queryBackBillAdui
tInfo
GetEduReceip
tInfo
}
from
'../../api/
sale/bill
'
}
from
'../../api/
teacher/index
'
export
default
{
export
default
{
props
:
{
props
:
{
setingObj
:
{
Id
:
{
type
:
Object
,
type
:
Number
,
default
:
null
default
:
null
}
}
},
},
...
@@ -164,24 +164,25 @@
...
@@ -164,24 +164,25 @@
return
{
return
{
persistent
:
true
,
persistent
:
true
,
qMsg
:
{
qMsg
:
{
Back
Id
:
0
Id
:
0
},
},
DataList
:
[]
DataList
:
[]
}
}
},
},
created
()
{
created
()
{
this
.
qMsg
.
BackId
=
this
.
setingObj
.
Back
Id
;
this
.
qMsg
.
Id
=
this
.
Id
;
},
},
mounted
()
{
mounted
()
{
this
.
getStuBaclFlow
();
this
.
getStuBaclFlow
();
},
},
methods
:
{
methods
:
{
getStuBaclFlow
()
{
getStuBaclFlow
()
{
queryBackBillAduitInfo
(
this
.
qMsg
).
then
(
res
=>
{
GetEduReceiptInfo
(
this
.
qMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
if
(
res
.
Code
==
1
)
{
this
.
DataList
=
res
.
Data
;
console
.
log
(
res
,
'数据'
);
this
.
DataList
=
res
.
Data
}
}
})
})
.
catch
(()
=>
{})
}
}
},
},
}
}
...
...
src/pages/teacher/changeClassManager.vue
View file @
c63a00af
...
@@ -25,11 +25,11 @@
...
@@ -25,11 +25,11 @@
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
filled
v-model=
"msg.AuditStatus"
:options=
"ShowOpts"
<q-select
@
input=
"resetSearch"
filled
v-model=
"msg.AuditStatus"
:options=
"ShowOpts"
emit-value
map-options
label=
"
流程
状态"
/>
emit-value
map-options
label=
"
审核
状态"
/>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
option-value=
"Id"
option-label=
"Name"
filled
v-model=
"
aa
"
:options=
"OrderTypeList"
<q-select
@
input=
"resetSearch"
option-value=
"Id"
option-label=
"Name"
filled
v-model=
"
msg.ReceiptType
"
:options=
"OrderTypeList"
emit-value
map-options
label=
"
订单
类型"
/>
emit-value
map-options
label=
"
单据
类型"
/>
</div>
</div>
<div
class=
"col-3 Sysuser_Date"
>
<div
class=
"col-3 Sysuser_Date"
>
<q-field
filled
>
<q-field
filled
>
...
@@ -39,7 +39,6 @@
...
@@ -39,7 +39,6 @@
</el-date-picker>
</el-date-picker>
</
template
>
</
template
>
</q-field>
</q-field>
<span
@
click=
"goDetail()"
>
跳转
</span>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -82,7 +81,7 @@
...
@@ -82,7 +81,7 @@
</q-td>
</q-td>
</template>
</template>
</q-table>
</q-table>
<backbill-form
v-if=
"isShowBillForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
<backbill-form
v-if=
"isShowBillForm"
:seting-obj=
"billObj"
:
Id=
"Id"
:
showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
@
success=
"refreshPage"
>
</backbill-form>
</backbill-form>
<createbackbill-form
v-if=
"isShowCreateBillForm"
:seting-obj=
"billObj"
@
close=
"closeBillForm"
<createbackbill-form
v-if=
"isShowCreateBillForm"
:seting-obj=
"billObj"
@
close=
"closeBillForm"
...
@@ -94,8 +93,7 @@
...
@@ -94,8 +93,7 @@
<
script
>
<
script
>
import
{
import
{
GetEducationReceiptPage
,
GetEducationReceiptPage
,
GetEducationReceiptType
,
GetEducationReceiptType
GetEduReceiptInfo
}
from
'../../api/teacher/index'
}
from
'../../api/teacher/index'
import
backbillForm
from
'../../components/sale/backbill-form'
;
import
backbillForm
from
'../../components/sale/backbill-form'
;
...
@@ -112,6 +110,11 @@
...
@@ -112,6 +110,11 @@
return
{
return
{
currentUrl
:
""
,
currentUrl
:
""
,
columns
:
[{
columns
:
[{
name
:
'Id'
,
label
:
'单号'
,
field
:
'Id'
,
align
:
'left'
},{
name
:
'Title'
,
name
:
'Title'
,
label
:
'标题'
,
label
:
'标题'
,
field
:
'Title'
,
field
:
'Title'
,
...
@@ -150,10 +153,7 @@
...
@@ -150,10 +153,7 @@
data
:
[],
data
:
[],
loading
:
true
,
loading
:
true
,
applyDateList
:
[],
//申请日期
applyDateList
:
[],
//申请日期
ShowOpts
:
[{
ShowOpts
:
[
label
:
'全部'
,
value
:
'0'
},
{
{
label
:
'审核中'
,
label
:
'审核中'
,
value
:
'1'
value
:
'1'
...
@@ -176,10 +176,11 @@
...
@@ -176,10 +176,11 @@
pageSize
:
12
,
pageSize
:
12
,
rowsPerPage
:
12
,
rowsPerPage
:
12
,
ClassName
:
""
,
//学员、班级、老师名称
ClassName
:
""
,
//学员、班级、老师名称
AuditStatus
:
"
0
"
,
//审核状态
AuditStatus
:
""
,
//审核状态
Q
StartTime
:
""
,
//开始时间
StartTime
:
""
,
//开始时间
Q
EndTime
:
""
,
//结束时间
EndTime
:
""
,
//结束时间
Conditon
:
1
,
Conditon
:
1
,
ReceiptType
:
''
//单据类型
},
},
tabCheck
:
"1"
,
tabCheck
:
"1"
,
pageCount
:
0
,
pageCount
:
0
,
...
@@ -188,7 +189,7 @@
...
@@ -188,7 +189,7 @@
billObj
:
{},
//单据信息
billObj
:
{},
//单据信息
showType
:
1
,
//1-查看,2-审核
showType
:
1
,
//1-查看,2-审核
OrderTypeList
:
[],
OrderTypeList
:
[],
aa
:
1
Id
:
0
}
}
},
},
created
()
{
created
()
{
...
@@ -227,6 +228,7 @@
...
@@ -227,6 +228,7 @@
this
.
isShowBillForm
=
true
;
this
.
isShowBillForm
=
true
;
this
.
showType
=
type
;
this
.
showType
=
type
;
this
.
billObj
=
item
.
DataObj
;
this
.
billObj
=
item
.
DataObj
;
this
.
Id
=
item
.
Id
;
},
},
//重新查询
//重新查询
resetSearch
()
{
resetSearch
()
{
...
@@ -245,11 +247,11 @@
...
@@ -245,11 +247,11 @@
this
.
pageCount
=
0
;
this
.
pageCount
=
0
;
this
.
msg
.
Conditon
=
this
.
tabCheck
;
this
.
msg
.
Conditon
=
this
.
tabCheck
;
if
(
this
.
applyDateList
&&
this
.
applyDateList
.
length
>
0
)
{
if
(
this
.
applyDateList
&&
this
.
applyDateList
.
length
>
0
)
{
this
.
msg
.
Q
StartTime
=
this
.
applyDateList
[
0
];
this
.
msg
.
StartTime
=
this
.
applyDateList
[
0
];
this
.
msg
.
Q
EndTime
=
this
.
applyDateList
[
1
];
this
.
msg
.
EndTime
=
this
.
applyDateList
[
1
];
}
else
{
}
else
{
this
.
msg
.
Q
StartTime
=
''
;
this
.
msg
.
StartTime
=
''
;
this
.
msg
.
Q
EndTime
=
''
;
this
.
msg
.
EndTime
=
''
;
}
}
GetEducationReceiptPage
(
this
.
msg
).
then
(
res
=>
{
GetEducationReceiptPage
(
this
.
msg
).
then
(
res
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
...
@@ -272,17 +274,6 @@
...
@@ -272,17 +274,6 @@
this
.
OrderTypeList
=
res
.
Data
;
this
.
OrderTypeList
=
res
.
Data
;
}
}
}).
catch
(()
=>
{})
}).
catch
(()
=>
{})
},
//详情
goDetail
(){
let
msg
=
{
Id
:
1
}
GetEduReceiptInfo
(
msg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
console
.
log
(
res
,
'数据'
);
}
}).
catch
(()
=>
{})
}
}
},
},
watch
:
{
watch
:
{
...
...
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