mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
优化巡检功能
This commit is contained in:
parent
475c3b47b7
commit
a7934bb1a6
@ -12,8 +12,14 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="计划名称、执行人员姓名"
|
<input type="text" placeholder="计划名称"
|
||||||
v-model="inspectionPlanManageInfo.conditions.keyWord" class=" form-control">
|
v-model="inspectionPlanManageInfo.conditions.inspectionPlanName" class=" form-control">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<div class="form-group">
|
||||||
|
<input type="text" placeholder="执行人员姓名"
|
||||||
|
v-model="inspectionPlanManageInfo.conditions.staffName" class=" form-control">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
@ -45,7 +51,7 @@
|
|||||||
<div class="ibox-tools" style="top:10px;">
|
<div class="ibox-tools" style="top:10px;">
|
||||||
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddInspectionPlanModal()">
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddInspectionPlanModal()">
|
||||||
<i class="fa fa-plus"></i>
|
<i class="fa fa-plus"></i>
|
||||||
添加巡检计划
|
添加
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -66,10 +72,7 @@
|
|||||||
<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-right">操作</th>
|
||||||
<th class="text-center">操作</th>
|
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -84,8 +87,7 @@
|
|||||||
<td class="text-center">{{inspectionPlan.createUserName}}</td>
|
<td class="text-center">{{inspectionPlan.createUserName}}</td>
|
||||||
<td class="text-center">{{inspectionPlan.createTime}}</td>
|
<td class="text-center">{{inspectionPlan.createTime}}</td>
|
||||||
<td class="text-center">{{inspectionPlan.stateName}}</td>
|
<td class="text-center">{{inspectionPlan.stateName}}</td>
|
||||||
<td class="text-center">{{inspectionPlan.remark}}</td>
|
<td class="text-right">
|
||||||
<td class="text-center">
|
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button class="btn-white btn btn-xs"
|
<button class="btn-white btn btn-xs"
|
||||||
v-on:click="_openEditInspectionPlanModel(inspectionPlan)">修改
|
v-on:click="_openEditInspectionPlanModel(inspectionPlan)">修改
|
||||||
|
|||||||
@ -14,7 +14,8 @@
|
|||||||
inspectionPlanName: '',
|
inspectionPlanName: '',
|
||||||
states:'',
|
states:'',
|
||||||
conditions: {
|
conditions: {
|
||||||
keyWord: '',
|
inspectionPlanName: '',
|
||||||
|
staffName:'',
|
||||||
state: '',
|
state: '',
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user