Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
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
hujun
tl_estate
Commits
84a9015f
Commit
84a9015f
authored
Feb 27, 2019
by
zw
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'test'
parents
5139aadd
ca45042e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
6 deletions
+26
-6
daily_details.html
application/index/view/finance/daily_details.html
+3
-1
getCollection.html
application/index/view/finance/getCollection.html
+1
-1
footer_tpl.html
application/index/view/global/footer_tpl.html
+1
-1
shopinspectionLogList.html
...tion/index/view/shopinspection/shopinspectionLogList.html
+16
-1
schoolBusiness.js
public/resource/js/schoolBusiness.js
+1
-1
shopInspectionLog.js
public/resource/js/shopInspectionLog.js
+4
-1
No files found.
application/index/view/finance/daily_details.html
View file @
84a9015f
...
...
@@ -188,7 +188,9 @@
}
.modal-body-width-du
{
width
:
1200px
;
/*width: 1200px;*/
width
:
998px
;
}
.col-xs-12
{
overflow
:
hidden
;
...
...
application/index/view/finance/getCollection.html
View file @
84a9015f
...
...
@@ -5,7 +5,7 @@
padding-left
:
8px
;
padding-right
:
8px
;
}
;
}
.reportArea
{
float
:
left
;
position
:
relative
;
...
...
application/index/view/global/footer_tpl.html
View file @
84a9015f
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=20190
18866
'
charset=
'utf-8'
></script>
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=20190
66688
'
charset=
'utf-8'
></script>
application/index/view/shopinspection/shopinspectionLogList.html
View file @
84a9015f
...
...
@@ -24,6 +24,18 @@
.clear
{
clear
:
both
;
}
/*加载图标*/
#main_loading_pic
{
position
:
fixed
;
top
:
50%
;
left
:
50%
;
width
:
100px
;
height
:
100px
;
margin-left
:
50px
;
margin-top
:
-150px
;
;
overflow
:
hidden
;
display
:
none
;
}
</style>
<div
id=
"page-content-wrapper"
>
<div
class=
"container"
>
...
...
@@ -97,7 +109,10 @@
</div>
</div>
</div>
<!--加载图标-->
<div
id=
"main_loading_pic"
>
<img
src=
"/resource/image/jz2.gif"
>
</div>
...
...
public/resource/js/schoolBusiness.js
View file @
84a9015f
...
...
@@ -46,7 +46,7 @@ define (['doT', 'text!temp/schoolBusiness_template_tpl.html','ckfinder','ckfinde
});
_doc
.
on
(
'click'
,
'.pdf-pre-a'
,
function
()
{
var
file_id
=
$
(
this
).
parent
(
'li'
).
attr
(
'id'
)
-
0
;
var
_url
=
'/index/downloadFile'
;
var
_url
=
ServerHostImageLiu
+
'/index/downloadFile'
;
window
.
open
(
_url
+
'?file_id='
+
file_id
);
});
$
(
"#search"
).
click
(
function
(){
...
...
public/resource/js/shopInspectionLog.js
View file @
84a9015f
...
...
@@ -60,7 +60,9 @@ define(['doT', 'text!temp/shop_inspectionlog_template_tpl.html', 'css!style/home
data
:
params
,
timeout
:
30000
,
dataType
:
'json'
,
beforeSend
:
function
()
{},
beforeSend
:
function
()
{
$
(
'#main_loading_pic'
).
show
();
},
success
:
function
(
data
)
{
if
(
typeof
data
===
'object'
)
{
...
...
@@ -84,6 +86,7 @@ define(['doT', 'text!temp/shop_inspectionlog_template_tpl.html', 'css!style/home
alert
(
'error'
);
},
complete
:
function
(
xhr
,
textStatus
)
{
$
(
'#main_loading_pic'
).
hide
();
if
(
textStatus
===
'timeout'
)
{
alert
(
'请求超时'
);
};
...
...
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