MicroCommunityWeb/public/pages/admin/housekeepingSjServManage/housekeepingSjServManage.html
2021-07-10 13:15:15 +08:00

135 lines
7.2 KiB
HTML

<div>
<div class="row" v-if="housekeepingServManageInfo.componentShow == 'housekeepingServManage'">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入服务名称"
v-model="housekeepingServManageInfo.conditions.servName" class=" form-control">
</div>
</div>
<!--<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请选择上架日期"
v-model="housekeepingServManageInfo.conditions.createTime" class=" form-control servSjtmentTime">
</div>
</div>-->
<div class="col-sm-4">
<div class="form-group">
<select class="custom-select" v-model="housekeepingServManageInfo.conditions.hktId">
<option selected value="">请选择服务类型</option>
<option v-for="(item,index) in housekeepingServManageInfo.housekeepingTypes" :value="item.hktId">
{{item.hktName}}
</option>
</select>
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryHousekeepingServMethod()">
<i class="glyphicon glyphicon-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" v-if="housekeepingServManageInfo.componentShow == 'housekeepingServManage'">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>上架服务</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_listHousekeepingServsToDay()">
<i class="glyphicon glyphicon-plus"></i>
今日上架
</button>
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_listHousekeepingServsAll()"> 所有上架
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<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>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="housekeepingServ in housekeepingServManageInfo.housekeepingServs">
<td class="text-center">{{housekeepingServ.servId}}</td>
<td class="text-center">{{housekeepingServ.servName}}</td>
<td class="text-center">{{housekeepingServ.servDesc}}</td>
<td class="text-center">{{housekeepingServ.hktName}}</td>
<td class="text-center" v-if="housekeepingServ.repairWay == '100'">抢单</td>
<td class="text-center" v-else-if="housekeepingServ.repairWay == '200'">指派</td>
<td class="text-center" v-else-if="housekeepingServ.repairWay == '300'">轮训</td>
<td class="text-center" v-if="housekeepingServ.returnVisitFlag == '001'">都不回访</td>
<td class="text-center" v-else-if="housekeepingServ.returnVisitFlag == '002'">已评价不回访</td>
<td class="text-center" v-else-if="housekeepingServ.returnVisitFlag == '003'">都回访</td>
<td class="text-center">{{housekeepingServ.sales}}</td>
<td class="text-center">{{housekeepingServ.defaultFee}}</td>
<td class="text-center">{{housekeepingServ.sort}}</td>
<td class="text-center">{{housekeepingServ.state == '1001'?'未上架':'上架'}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditHousekeepingServModel(housekeepingServ)">详情</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteHousekeepingServModel(housekeepingServ)">删除</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<div v-bind:class="{no_display:housekeepingServManageInfo.componentShow != 'editHousekeepingServ'}">
<vc:create path="common/editHousekeepingServ"></vc:create>
</div>
<vc:create path="common/deleteHousekeepingServ"></vc:create>
</div>