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
843bd8fc
Commit
843bd8fc
authored
Jul 27, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
dc6a8668
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
17 deletions
+29
-17
contract.js
src/api/sale/contract.js
+11
-4
contractAudit_new.vue
src/pages/sale/contractAudit_new.vue
+15
-3
contractManage.vue
src/pages/sale/contractManage.vue
+3
-10
No files found.
src/api/sale/contract.js
View file @
843bd8fc
...
@@ -142,7 +142,14 @@ export function GenerateOrder(data) {
...
@@ -142,7 +142,14 @@ export function GenerateOrder(data) {
})
})
}
}
/**
* 获取合同管理分页列表
*
*/
export
function
GetMyEducationContractPageList
(
data
)
{
return
request
({
url
:
'/EducationContract/GetMyEducationContractPageList'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/pages/sale/contractAudit_new.vue
View file @
843bd8fc
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
label=
"类型"
label=
"类型"
/>
/>
</div>
</div>
<div
class=
"col-3"
>
<
!--
<
div
class=
"col-3"
>
<q-select
<q-select
@
input=
"resetSearch"
@
input=
"resetSearch"
standout=
"bg-primary text-white"
standout=
"bg-primary text-white"
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
emit-value
emit-value
map-options
map-options
/>
/>
</div>
</div>
-->
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-input
<q-input
@
change=
"resetSearch"
@
change=
"resetSearch"
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
<q-table
<q-table
:pagination=
"msg"
:pagination=
"msg"
:loading=
"loading"
:loading=
"loading"
no-data-label=
"暂无相关数据
"
:no-data-label=
"noDataMsg
"
flat
flat
class=
"sticky-column-table"
class=
"sticky-column-table"
separator=
"none"
separator=
"none"
...
@@ -241,6 +241,12 @@
...
@@ -241,6 +241,12 @@
<!--
</div>
-->
<!--
</div>
-->
</q-td>
</q-td>
</
template
>
</
template
>
<
template
v-slot:no-data=
"props"
>
<div>
<q-icon
size=
"2em"
:name=
"props.icon"
/>
<span>
{{
props
.
message
}}
</span>
</div>
</
template
>
</q-table>
</q-table>
</div>
</div>
</div>
</div>
...
@@ -369,6 +375,7 @@ export default {
...
@@ -369,6 +375,7 @@ export default {
},
},
],
],
type
:
0
,
type
:
0
,
noDataMsg
:
"暂无相关数据"
,
};
};
},
},
created
()
{},
created
()
{},
...
@@ -382,6 +389,11 @@ export default {
...
@@ -382,6 +389,11 @@ export default {
GetEducationContractPageCodeList
(
this
.
msg
).
then
((
res
)
=>
{
GetEducationContractPageCodeList
(
this
.
msg
).
then
((
res
)
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
if
(
res
.
Code
==
1
)
{
if
(
res
.
Code
==
1
)
{
if
(
res
.
Data
.
PageData
.
Type
===
0
)
{
this
.
noDataMsg
=
res
.
Message
;
}
else
{
this
.
noDataMsg
=
"暂无相关数据"
;
}
this
.
dataList
=
res
.
Data
.
PageData
.
Result
;
this
.
dataList
=
res
.
Data
.
PageData
.
Result
;
this
.
type
=
res
.
Data
.
PageData
.
Type
;
this
.
type
=
res
.
Data
.
PageData
.
Type
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
...
...
src/pages/sale/contractManage.vue
View file @
843bd8fc
...
@@ -241,13 +241,6 @@
...
@@ -241,13 +241,6 @@
</div>
</div>
</q-td>
</q-td>
</
template
>
</
template
>
<
template
v-slot:no-data=
"{ icon, message, filter }"
>
<div
class=
"full-width row flex-center text-accent q-gutter-sm"
>
<q-icon
size=
"2em"
:name=
"filter ? 'filter_b_and_w' : icon"
/>
<span>
{{
message
}}
</span>
</div>
</
template
>
</q-table>
</q-table>
</div>
</div>
<eduinfo-form
<eduinfo-form
...
@@ -262,6 +255,7 @@
...
@@ -262,6 +255,7 @@
<
script
>
<
script
>
import
{
import
{
GetEducationContractPageCodeList
,
GetEducationContractPageCodeList
,
GetMyEducationContractPageList
,
SetEducationContractAudit
,
SetEducationContractAudit
,
GetDownLoadEducationContract
,
GetDownLoadEducationContract
,
SetEducationContractCopy
,
SetEducationContractCopy
,
...
@@ -423,12 +417,11 @@ export default {
...
@@ -423,12 +417,11 @@ export default {
//获取校区列表
//获取校区列表
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
Get
EducationContractPageCod
eList
(
this
.
msg
).
then
((
res
)
=>
{
Get
MyEducationContractPag
eList
(
this
.
msg
).
then
((
res
)
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
if
(
res
.
Code
==
1
)
{
if
(
res
.
Code
==
1
)
{
this
.
dataList
=
res
.
Data
.
PageData
.
Result
;
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
}
else
{
}
}
});
});
},
},
...
...
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