Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/admin/viewClueInfo/viewClueInfo.html
2025-12-09 20:22:03 +08:00

119 lines
5.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="线索明细信息" namespace="viewClueInfo"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_goback()">
返回
</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="项目名称" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.projectName}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="项目位置" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.projectSite}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="项目概述" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.projectSummary}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="投资额" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.investmentAmount}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="投资方名称" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.investmentName}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="电话" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.tel}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="投资方简介" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.investmentSummary}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="目前进展情况" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.nowSituation}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="下一步推进计划" namespace="viewClueInfo"></vc:i18n></span></label>
<label class="">{{viewClueInfo.nextSituation}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="跟进记录" namespace="viewClueInfo"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="table table-stripped">
<thead>
<tr>
<th scope="col"><span><vc:i18n name="序号" namespace="viewClueInfo"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="跟进" namespace="viewClueInfo"></vc:i18n></span>ID</th>
<th class="text-center"><span><vc:i18n name="跟进时间" namespace="viewClueInfo"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="目前进展情况" namespace="viewClueInfo"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="下一步推进计划" namespace="viewClueInfo"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="(clueAttr,index) in clueAttrs">
<td>{{index+1}}</td>
<td class="text-center">{{clueAttr.attrId}}</td>
<td class="text-center">{{clueAttr.nowTime}}</td>
<td class="text-center">{{clueAttr.nowSituation}}</td>
<td class="text-center">{{clueAttr.nextSituation}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>