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
b85d6604
Commit
b85d6604
authored
Aug 17, 2018
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修改
parent
5697ae28
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
7 deletions
+15
-7
commission.html
application/index/view/finance/commission.html
+2
-0
tax.html
application/index/view/finance/tax.html
+2
-0
call_genjin_modal.css
public/resource/css/call_genjin_modal.css
+3
-0
callPhoneIndex.js
public/resource/js/callPhoneIndex.js
+3
-0
commission.js
public/resource/js/commission.js
+2
-2
tax.js
public/resource/js/tax.js
+2
-2
financeUpdateLog_template_tpl.html
public/resource/template/financeUpdateLog_template_tpl.html
+1
-1
tax_template_tpl.html
public/resource/template/tax_template_tpl.html
+0
-2
No files found.
application/index/view/finance/commission.html
View file @
b85d6604
...
...
@@ -207,6 +207,8 @@
<th
class=
"text-center"
>
现金奖(元)
</th>
<th
class=
"text-center"
>
实收佣金(元)
</th>
<th
class=
"text-center"
>
确认时间
</th>
<th
class=
"text-center"
>
操作
</th>
</tr>
</thead>
<tbody
class=
"text-center"
id=
"maid_new_table_list"
>
...
...
application/index/view/finance/tax.html
View file @
b85d6604
...
...
@@ -207,6 +207,8 @@
<th
class=
"text-center"
>
现金奖(元)
</th>
<th
class=
"text-center"
>
实收佣金(元)
</th>
<th
class=
"text-center"
>
确认时间
</th>
<th
class=
"text-center"
>
操作
</th>
</tr>
</thead>
<tbody
class=
"text-center"
id=
"maid_new_table_list"
>
...
...
public/resource/css/call_genjin_modal.css
View file @
b85d6604
...
...
@@ -124,11 +124,14 @@ html{
.call-btn-area
>
div
#call_btn_cancel
{
background-color
:
white
;
color
:
#FF9419
;
cursor
:
pointer
;
}
.call-btn-area
>
div
#call_btn_ok
{
background-color
:
#FF9419
;
color
:
white
;
margin-left
:
.3rem
;
cursor
:
pointer
;
}
.call-btn-area
>
div
#call_btn_ok_temp
{
background-color
:
#ccc
;
...
...
public/resource/js/callPhoneIndex.js
View file @
b85d6604
...
...
@@ -283,6 +283,9 @@ define(['doT', 'text!temp/callPhone_template_tpl.html', 'css!style/home.css', 'c
console
.
log
(
user
.
user_id
);
if
(
user
.
user_id
==
'null'
){
alert
(
'当前用户不存在'
);
$
(
'.user_call'
).
hide
();
}
else
{
$
(
'.user_call'
).
show
();
}
$
(
'.call-user-five'
).
html
(
''
);
$
(
'.detail-modal-body-sec-2'
).
show
();
...
...
public/resource/js/commission.js
View file @
b85d6604
define
([
'doT'
,
'text!temp/commission_template_tpl.html'
,
'text!temp/reportList_
template_tpl.html'
,
'css!style/home.css'
,
'css!style/report_list.css'
,
'ckfinder'
,
'ckfinderStart'
,
'pagination'
,
'bootstrapJs'
],
function
(
doT
,
template
,
template_tax
,
template_maid
,
template_maid_sub1
)
{
define
([
'doT'
,
'text!temp/commission_template_tpl.html'
,
'text!temp/reportList_
no_edit_template_tpl.html'
,
'css!style/home.css'
,
'css!style/report_list.css'
,
'ckfinder'
,
'ckfinderStart'
,
'pagination'
,
'bootstrapJs'
],
function
(
doT
,
template
,
template_tax
)
{
bargain
=
{
pageNo
:
1
,
/*第几页*/
...
...
@@ -13,7 +13,7 @@ define(['doT', 'text!temp/commission_template_tpl.html', 'text!temp/reportList_t
maidTotalCommission
:
0
,
//应收总佣金
init
:
function
()
{
//初始化dot
$
(
document
.
body
).
append
(
template
+
template_tax
+
template_maid
+
template_maid_sub1
);
$
(
document
.
body
).
append
(
template
+
template_tax
);
bargain
.
getList
(
1
);
bargain
.
event
();
},
...
...
public/resource/js/tax.js
View file @
b85d6604
define
([
'doT'
,
'text!temp/tax_template_tpl.html'
,
'text!temp/reportList_
template_tpl.html'
,
'css!style/home.css'
,
'css!style/report_list.css'
,
'ckfinder'
,
'ckfinderStart'
,
'pagination'
,
'bootstrapJs'
],
function
(
doT
,
template
,
template_tax
,
template_maid
,
template_maid_sub1
)
{
define
([
'doT'
,
'text!temp/tax_template_tpl.html'
,
'text!temp/reportList_
no_edit_template_tpl.html'
,
'css!style/home.css'
,
'css!style/report_list.css'
,
'ckfinder'
,
'ckfinderStart'
,
'pagination'
,
'bootstrapJs'
],
function
(
doT
,
template
,
template_tax
)
{
bargain
=
{
pageNo
:
1
,
/*第几页*/
...
...
@@ -13,7 +13,7 @@ define(['doT','text!temp/tax_template_tpl.html', 'text!temp/reportList_template_
maidTotalCommission
:
0
,
//应收总佣金
init
:
function
()
{
//初始化dot
$
(
document
.
body
).
append
(
template
+
template_tax
+
template_maid
+
template_maid_sub1
);
$
(
document
.
body
).
append
(
template
+
template_tax
);
bargain
.
getList
(
1
);
bargain
.
event
();
},
...
...
public/resource/template/financeUpdateLog_template_tpl.html
View file @
b85d6604
<script
id=
"financeUpdateLog_list_tpl"
type=
"text/template"
>
[
%
if
(
it
)
{
%
]
[
%
if
(
it
[
0
]
)
{
%
]
[
%
for
(
var
item
in
it
){
%
]
<
tr
>
<
td
width
=
"15%"
>
[
%=
it
[
item
][
'create_time'
]
%
]
<
/td
>
...
...
public/resource/template/tax_template_tpl.html
View file @
b85d6604
...
...
@@ -8,8 +8,6 @@
<
td
>
[
%=
it
[
item
][
'internal_address'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'house_number'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'fee'
]
%
]
<
/td
>
<
td
>
<
a
class
=
"btn1 btn-info details-btn"
href
=
"#modal_detail"
data
-
toggle
=
"modal"
data
-
id
=
'[%= it[item]["id"] %]'
>
详情
<
/a
>
<
a
class
=
"btn1 btn-info timeline"
href
=
"#modal-time"
data
-
toggle
=
"modal"
data
-
id
=
'[%= it[item]["id"] %]'
>
时间轴
<
/a
>
...
...
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