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
bf6ac410
Commit
bf6ac410
authored
May 16, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
5d91a009
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
75 additions
and
49 deletions
+75
-49
shop_detail_pc.html
application/app_broker/view/index/shop_detail_pc.html
+4
-3
pay_check_list.html
application/index/view/finance/pay_check_list.html
+5
-5
openCheckList.js
public/resource/js/openCheckList.js
+45
-7
followHouseUp_template_tpl.html
public/resource/template/followHouseUp_template_tpl.html
+1
-1
open_check_template_tpl.html
public/resource/template/open_check_template_tpl.html
+20
-33
No files found.
application/app_broker/view/index/shop_detail_pc.html
View file @
bf6ac410
...
...
@@ -38,13 +38,14 @@
<td>
总铺数:{{d.total}}
</td>
</tr>
<tr>
<td>
业态:{{d.industry_type}}
</td>
<td>
{{(d.shop_type==1)?'当前经营':'已入驻'}}:{{d.enter_num}}
</td>
<td>
适合经营范围:{{d.industry_type}}
</td>
<!--<td>{{(d.shop_type==1)?'当前经营':'已入驻'}}:{{d.enter_num}}</td>-->
<td></td>
<td>
楼层:{{d.floor}}
</td>
<td></td>
</tr>
<tr>
<td
colspan=
"4"
>
最适合
业态:{{d.fit_industry_type}}
</td>
<td
colspan=
"4"
>
理想经营
业态:{{d.fit_industry_type}}
</td>
</tr>
<tr>
...
...
application/index/view/finance/pay_check_list.html
View file @
bf6ac410
...
...
@@ -313,11 +313,11 @@
<a
href=
"javascript:;"
>
开业审核
</a>
</li>
<div
class=
"btn-group"
>
<button
type=
"button"
class=
"choose_btn btn btn-info
"
data-value=
"1
"
style=
"margin-left: 20px;"
>
总监通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
"
data-value=
"2
"
>
财务一审通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
"
data-value=
"4
"
>
财务二审通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
"
data-value=
"4
"
>
未审核
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
"
data-value=
"-1
"
>
全部
</button>
<button
type=
"button"
class=
"choose_btn btn btn-info
choose_btn1"
data-value=
"/index/payCheckListDisc/4
"
style=
"margin-left: 20px;"
>
总监通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
choose_btn2"
data-value=
"/index/payCheckListOne/0
"
>
财务一审通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
choose_btn3"
data-value=
"/index/payCheckListTwo/1
"
>
财务二审通过
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
choose_btn4"
data-value=
"/index/payCheckListNo/2
"
>
未审核
</button>
<button
type=
"button"
class=
"choose_btn btn btn-default
choose_btn5"
data-value=
"/index/payCheckListAll
"
>
全部
</button>
</div>
</div>
<div
class=
"panel-body"
style=
"overflow:hidden;"
>
...
...
public/resource/js/openCheckList.js
View file @
bf6ac410
...
...
@@ -13,15 +13,49 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
agent_id_phone
:
''
,
check_status
:
1
,
deleteRefundId
:
''
,
url
:
''
,
init
:
function
()
{
//初始化dot
$
(
document
.
body
).
append
(
template
);
//判断权限 总监
if
(
check_auth
(
'index/payCheckListDisc/4'
)){
$
(
'.choose_btn1'
).
show
();
}
else
{
$
(
'.choose_btn1'
).
hide
();
};
//判断权限 财务一级
if
(
check_auth
(
'/index/payCheckListOne/0'
)){
$
(
'.choose_btn2'
).
show
();
}
else
{
$
(
'.choose_btn2'
).
hide
();
};
//判断权限 财务二级
if
(
check_auth
(
'index/payCheckListTwo/1'
)){
$
(
'.choose_btn3'
).
show
();
}
else
{
$
(
'.choose_btn3'
).
hide
();
};
//判断权限 未审核
if
(
check_auth
(
'index/payCheckListNo/2'
)){
$
(
'.choose_btn4'
).
show
();
}
else
{
$
(
'.choose_btn4'
).
hide
();
};
//判断权限 全部
if
(
check_auth
(
'index/payCheckListAll'
)){
$
(
'.choose_btn5'
).
show
();
}
else
{
$
(
'.choose_btn5'
).
hide
();
};
refund
.
url
=
$
(
'.btn-group .choose_btn:nth-of-type(1)'
).
attr
(
'data-value'
);
console
.
log
(
refund
.
url
);
refund
.
getList
(
1
);
refund
.
event
();
},
event
:
function
()
{
var
that
=
refund
;
var
_doc
=
$
(
document
);
$
(
'#print'
).
click
(
function
(){
var
header
=
window
.
document
.
head
.
innerHTML
;
var
printHtml
=
document
.
getElementById
(
'modal-check'
).
innerHTML
;
...
...
@@ -230,14 +264,18 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
});
_doc
.
on
(
'click'
,
'.choose_btn'
,
function
(
e
){
var
befor
=
that
.
check_status
//
var befor = that.check_status
// $('.btn-group').find("button").removeClass("btn-info")
// $(this).addClass("btn-info");
$
(
this
).
removeClass
(
'btn-default'
).
addClass
(
'btn-info'
).
siblings
().
removeClass
(
'btn-info'
).
addClass
(
'btn-default'
);
if
(
befor
!=
e
.
target
.
dataset
.
value
)
{
that
.
check_status
=
e
.
target
.
dataset
.
value
;
refund
.
getList
(
1
);
}
refund
.
url
=
e
.
target
.
dataset
.
value
;
refund
.
getList
(
1
);
// if ( befor != e.target.dataset.value) {
// that.check_status = e.target.dataset.value;
// refund.getList(1);
// }
})
$
(
"#changed_type"
).
click
(
function
()
{
var
type
=
$
(
this
).
val
();
...
...
@@ -662,7 +700,7 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
var
params
=
that
.
buildSearchParams
(
0
);
params
.
pageNo
=
that
.
pageNo
;
params
.
pageSize
=
that
.
pageSize
;
$
.
get
(
'/index/refundList'
,
params
,
function
(
data
){
$
.
get
(
refund
.
url
,
params
,
function
(
data
){
if
(
typeof
data
===
'object'
)
{
if
(
data
.
code
==
200
)
{
that
.
listData
=
data
.
data
.
list
;
...
...
@@ -832,7 +870,7 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
paramsStr
+=
"is_open="
+
is_open
+
'&'
;
}
params
.
status
=
that
.
check_status
;
//
params.status = that.check_status;
paramsStr
+=
"status="
+
that
.
check_status
;
if
(
is_excel
)
{
return
paramsStr
;
...
...
public/resource/template/followHouseUp_template_tpl.html
View file @
bf6ac410
...
...
@@ -9,7 +9,7 @@
<
td
>
[
%=
it
[
item
][
'house_id'
]
%
]
<
/td
>
<
td
>
[
%
if
(
it
[
item
][
"internal_title"
]
!=
null
)
{
%
]
[
%=
hideStr
(
it
[
item
][
'internal_title'
])
%
]
[
%=
it
[
item
][
'internal_title'
]
%
]
[
%
}
%
]
<
/td
>
...
...
public/resource/template/open_check_template_tpl.html
View file @
bf6ac410
<script
id=
"open_template_tpl"
type=
"text/template"
>
[
%
if
(
it
)
{
%
]
[
%
if
(
it
&&
it
.
length
)
{
%
]
[
%
for
(
var
item
in
it
){
%
]
<
tr
class
=
"text-center"
>
<
td
>
[
%=
it
[
item
][
'create_time'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'id'
]
%
]
<
/td
>
[
%
if
(
it
[
item
][
'status'
]
==
0
)
{
%
]
<
td
>
审核中
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
1
)
{
%
]
<
td
>
审核中
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
2
)
{
%
]
<
td
>
退款成功
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
3
)
{
%
]
<
td
>
已审核
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
4
)
{
%
]
<
td
>
驳回
<
/td
>
[
%
}
else
{
%
]
<
td
>--<
/td
>
[
%
}
%
]
<
td
>
[
%=
it
[
item
][
'create_time'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'agent_name'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'pay_log_id'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'bargain_id'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'order_id'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'refund_money'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'income_time'
]
%
]
<
/td
>
<!--<
td
>
[
%=
it
[
item
][
'type'
]
%
]
<
/td>--
>
[
%
if
(
it
[
item
][
'type'
]
==
1
)
{
%
]
<
td
>
意向金转定
<
/td
>
[
%
}
else
if
(
it
[
item
][
'type'
]
==
2
)
{
%
]
<
td
>
退保管金
<
/td
>
[
%
}
else
if
(
it
[
item
][
'type'
]
==
3
)
{
%
]
<
td
>
保管金转定
<
/td
>
[
%
}
else
if
(
it
[
item
][
'type'
]
==
4
)
{
%
]
<
td
>
退中介费
<
/td
>
[
%
}
else
if
(
it
[
item
][
'type'
]
==
5
)
{
%
]
<
td
>
[
%=
it
[
item
][
'house_id'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'house_address'
]
%
]
<
/td
>
[
%
if
(
it
[
item
][
'status'
]
==
2
)
{
%
]
<
td
>
财务一审
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
3
)
{
%
]
<
td
>
财务二审
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
1
)
{
%
]
<
td
>
总监审核
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
0
)
{
%
]
<
td
>
未审核
<
/td
>
[
%
}
else
if
(
it
[
item
][
'status'
]
==
5
)
{
%
]
<
td
>
退案场费
<
/td
>
[
%
}
else
if
(
it
[
item
][
'
type
'
]
==
0
)
{
%
]
[
%
}
else
if
(
it
[
item
][
'
status
'
]
==
0
)
{
%
]
<
td
>
退意向金
<
/td
>
[
%
}
else
{
%
]
<
td
>--<
/td
>
[
%
}
%
]
<
td
>
[
%=
it
[
item
][
'agent_name'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'store_name'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'house_id'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'address'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'check_time'
]
%
]
<
/td
>
<
td
>
[
%=
it
[
item
][
'disc_time'
]
%
]
<
/td
>
<
td
>
<
a
class
=
"btn1 btn-success rejected"
href
=
"#modal-check"
data
-
toggle
=
"modal"
data
-
id
=
'[%= it[item]["id"] %]'
>
开业审核
<
/a
>
<
a
class
=
"btn1 btn-success details-btn"
href
=
"#modal_detail"
data
-
toggle
=
"modal"
data
-
id
=
'322'
>
成交报告
<
/a
>
...
...
@@ -53,7 +40,7 @@
[
%
}
%
]
[
%
}
else
{
%
]
<
tr
>
<
td
colspan
=
"
8
"
style
=
"text-align:center;"
>
暂无数据
<
/td
>
<
td
colspan
=
"
15
"
style
=
"text-align:center;"
>
暂无数据
<
/td
>
<
/tr
>
[
%
}
%
]
</script>
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