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
56e93d45
Commit
56e93d45
authored
Apr 15, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
bb5e08ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
2 deletions
+21
-2
opensquareLogList.html
application/index/view/opensquare/opensquareLogList.html
+1
-1
financial_manager_daily_list.js
public/resource/js/financial_manager_daily_list.js
+10
-0
opensquareList.js
public/resource/js/opensquareList.js
+5
-1
reportList.js
public/resource/js/reportList.js
+5
-0
No files found.
application/index/view/opensquare/opensquareLogList.html
View file @
56e93d45
...
@@ -442,7 +442,7 @@
...
@@ -442,7 +442,7 @@
</div>
</div>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
<label
class=
"col-sm-2 control-label"
>
封面图:
</label>
<label
class=
"col-sm-2 control-label"
>
封面图:
(至少一张)
</label>
<div
class=
"col-xs-9"
>
<div
class=
"col-xs-9"
>
<ul
class=
"list-group"
>
<ul
class=
"list-group"
>
<li
class=
"list-group-item"
>
<li
class=
"list-group-item"
>
...
...
public/resource/js/financial_manager_daily_list.js
View file @
56e93d45
...
@@ -1115,6 +1115,16 @@ define(['doT', 'text!temp/financial_manager_daily_list_template_tpl.html', 'css!
...
@@ -1115,6 +1115,16 @@ define(['doT', 'text!temp/financial_manager_daily_list_template_tpl.html', 'css!
params
.
bank_card
=
$
(
'#pay_k'
).
html
();
params
.
bank_card
=
$
(
'#pay_k'
).
html
();
params
.
bank_card_new
=
$
(
'#pay_m'
).
html
();
params
.
bank_card_new
=
$
(
'#pay_m'
).
html
();
};
};
//验证店长 提交日报时间 小于当前时间
var
myDate
=
new
Date
();
var
y
=
myDate
.
getFullYear
();
var
m
=
myDate
.
getMonth
()
+
1
;
var
d
=
myDate
.
getDate
();
var
day_end
=
y
+
'-'
+
(
m
<
10
?
(
'0'
+
m
)
:
m
)
+
'-'
+
(
d
<
10
?
(
'0'
+
d
)
:
d
);
if
(
getTimeStamp
(
bargain
.
financialTime
)
>
getTimeStamp
(
day_end
)){
alert
(
'提交财务日报的时间不能大于当天的时间'
);
return
;
}
$
.
ajax
({
$
.
ajax
({
url
:
'/index/addDaily'
,
url
:
'/index/addDaily'
,
type
:
'GET'
,
type
:
'GET'
,
...
...
public/resource/js/opensquareList.js
View file @
56e93d45
...
@@ -336,7 +336,11 @@ define (['doT', 'text!temp/opensquareList_template_tpl.html','ckfinder','ckfinde
...
@@ -336,7 +336,11 @@ define (['doT', 'text!temp/opensquareList_template_tpl.html','ckfinder','ckfinde
_data
.
site_id
=
$
(
"#add_city_id"
).
val
();
//商学院标签id
_data
.
site_id
=
$
(
"#add_city_id"
).
val
();
//商学院标签id
// _data.district_id = $("#add_district_id").val(); //商学院标签id
// _data.district_id = $("#add_district_id").val(); //商学院标签id
_data
.
district_lable_id
=
$
(
"#add_district_id"
).
val
();
//商学院标签id
_data
.
district_lable_id
=
$
(
"#add_district_id"
).
val
();
//商学院标签id
if
(
!
pic
){
alert
(
'封面图至少上传一张'
);
return
}
console
.
log
(
pic
)
_data
.
cover_img
=
pic
;
//封面图 剪切后的字符串
_data
.
cover_img
=
pic
;
//封面图 剪切后的字符串
_data
.
content
=
con
;
_data
.
content
=
con
;
$
.
ajax
({
$
.
ajax
({
...
...
public/resource/js/reportList.js
View file @
56e93d45
...
@@ -962,6 +962,7 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
...
@@ -962,6 +962,7 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
// params.transfer_img = imgname.join(',');
// params.transfer_img = imgname.join(',');
params
.
transfer_img
=
JSON
.
stringify
(
imgname
);
params
.
transfer_img
=
JSON
.
stringify
(
imgname
);
}
else
{
}
else
{
alert
(
'请上传图片'
);
return
return
};
};
if
(
$
(
'.commission-pay-type'
).
val
()
==
91
){
if
(
$
(
'.commission-pay-type'
).
val
()
==
91
){
...
@@ -973,6 +974,10 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
...
@@ -973,6 +974,10 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
params
.
is_dividend
=
$
(
'.commission-type-anchang'
).
val
();
//是否分红
params
.
is_dividend
=
$
(
'.commission-type-anchang'
).
val
();
//是否分红
}
}
if
(
!
params
.
income_time
){
alert
(
'请填写入账日期'
);
return
;
}
$
.
ajax
({
$
.
ajax
({
'type'
:
'POST'
,
'type'
:
'POST'
,
'url'
:
'/broker/collectingBill'
,
'url'
:
'/broker/collectingBill'
,
...
...
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