Commit 579c4749 authored by agping's avatar agping

列表

parent c9a05745
......@@ -165,7 +165,7 @@
</div>
</td>
</tr>
<tr v-if="false">
<tr v-if="true">
<td colspan="4">
<div class="fl">案场权限人:</div>
<div class="fl">
......@@ -175,6 +175,16 @@
</div>
</td>
</tr>
<tr v-if="true">
<td colspan="4">
<div class="fl">上传人:</div>
<div class="fl">
<ul class="oh phone-list">
<li class="fl oh">{{d.upload_user}}</li>
</ul>
</div>
</td>
</tr>
<tr>
<td>上传时间:{{d.create_time}}</td>
<td>最后编辑时间:{{d.update_time}}</td>
......
......@@ -92,6 +92,12 @@
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<td colspan="14" class="maintable-top-sub-tr">
<a class="btn btn-info liudan_pic_btn">商铺</a>
<a class="btn btn-default liudan_pic_btn">公楼</a>
</td>
</tr>
<tr>
<td colspan="12">
<form id="form_search">
......
......@@ -96,6 +96,7 @@
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<td colspan="10">
<form id="form_search">
......@@ -103,6 +104,11 @@
<div class="clear">
</div>
<select class="form-control ld-Marheight btn4" name="" id="maintable_shop_type_yeji">
<option value="">房源类型</option>
<option value="0">商铺</option>
<option value="1">办公楼</option>
</select>
<span class="fore-span ld-Marheight">收佣日期/开票日期:</span>
<input class="form-control btn4 ld-Marheight" value="" data-rule-phoneus="false" data-rule-required="false" id="create_time" name="start_date" type="date">
<span class="fore-span ld-Marheight">-</span>
......
......@@ -80,6 +80,12 @@
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<td colspan="14" class="maintable-top-sub-tr">
<a class="btn btn-info liudan_pic_btn">商铺</a>
<a class="btn btn-default liudan_pic_btn">公楼</a>
</td>
</tr>
<tr>
<td colspan="9">
<form id="form_search">
......
......@@ -62,6 +62,12 @@
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<td colspan="14" class="maintable-top-sub-tr">
<a class="btn btn-info liudan_pic_btn">商铺</a>
<a class="btn btn-default liudan_pic_btn">公楼</a>
</td>
</tr>
<!--三级审核的搜索功能-->
<tr>
<td colspan="16">
......
......@@ -52,6 +52,18 @@ define(['doT', 'text!temp/commission_template_tpl.html', 'css!style/home.css', '
},
event: function() {
var _doc = $(document);
//商铺 办公楼切换
_doc.on('click', '.maintable-top-sub-tr>a', function(e){
e.preventDefault();
e.stopPropagation();
var _this = $(this);
_this.removeClass('btn-default').addClass('btn-info').siblings().removeClass('btn-info').addClass('btn-default');
if($(this).index() == 0){
}else if($(this).index() == 1){
}
});
$("#search").click(function() {
bargain.getList(1);
});
......
......@@ -17,17 +17,17 @@ define(['doT','text!temp/performance_subsidiary_template_tpl.html', 'text!temp/r
},
event: function() {
var _doc = $(document);
//主页面一级审核,二级审核,三级审核,结单四个tab的点击事件
//专员审核 总监审核 经理审核 出纳审核
//商铺 办公楼切换
_doc.on('click', '.maintable-top-sub-tr>a', function(e){
e.preventDefault();
e.stopPropagation();
var _this = $(this);
_this.removeClass('btn-default').addClass('btn-info').siblings().removeClass('btn-info').addClass('btn-default');
bargain.mainTabIndex = _this.index();
console.log(bargain.mainTabIndex);
bargain.getList(1);
if($(this).index() == 0){
}else if($(this).index() == 1){
}
});
//成交报告详情 点击商铺 查看商铺详情
_doc.on('click', 'a[href="#modal_shop_detail"]', function(e){
......
......@@ -16,10 +16,22 @@ define(['doT','text!temp/tax_template_tpl.html', 'css!style/home.css', 'css!styl
},
event: function() {
var _doc = $(document);
$("#search").click(function() {
//商铺 办公楼切换
_doc.on('click', '.maintable-top-sub-tr>a', function(e){
e.preventDefault();
e.stopPropagation();
var _this = $(this);
_this.removeClass('btn-default').addClass('btn-info').siblings().removeClass('btn-info').addClass('btn-default');
if($(this).index() == 0){
}else if($(this).index() == 1){
}
});
$("#search").click(function() {
bargain.getList(1);
});
$("#reset").click(function() { //重置
$("#reset").click(function() { //重置
document.getElementById("form_search").reset();
});
//主页面一级审核,二级审核,三级审核,结单四个tab的点击事件
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment