MicroCommunityWeb/public/components/admin/chooseClue/chooseClue.html
2021-04-12 12:02:13 +08:00

73 lines
4.1 KiB
HTML

<div id = "chooseClueModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseClueModelLabel" aria-hidden="true" >
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="chooseClueModelLabel">选择线索管理</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class=" row">
<div class="col-lg-12">
<div class="ibox ">
<div class="row">
<div class="col-sm-7 m-b-xs">
</div>
<div class="col-sm-5">
<div class="input-group">
<input placeholder="输入线索管理名称" type="text" v-model="chooseClueInfo._currentClueName" class="form-control form-control-sm">
<span class="input-group-append">
<button type="button" class="btn btn-sm btn-primary" v-on:click="queryClues()">查询</button>
</span>
</div>
</div>
</div>
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">线索ID</th>
<th class="text-center">项目名称</th>
<th class="text-center">项目位置</th>
<th class="text-center">项目概述</th>
<th class="text-center">投资额</th>
<th class="text-center">投资方名称</th>
<th class="text-center">电话</th>
<th class="text-center">投资方简介</th>
<th class="text-center">目前进展情况</th>
<th class="text-center">下一步推进计划</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="clue in chooseClueInfo.clues">
<td class="text-center">{{clue.clueId}}</td>
<td class="text-center">{{clue.projectName}}</td>
<td class="text-center">{{clue.projectSite}}</td>
<td class="text-center">{{clue.projectSummary}}</td>
<td class="text-center">{{clue.investmentAmount}}</td>
<td class="text-center">{{clue.investmentName}}</td>
<td class="text-center">{{clue.tel}}</td>
<td class="text-center">{{clue.investmentSummary}}</td>
<td class="text-center">{{clue.nowSituation}}</td>
<td class="text-center">{{clue.nextSituation}}</td>
<td>
<button class="btn btn-primary btn-xs" v-on:click="chooseClue(clue)">选择</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>