Commit f0386a0f authored by 吴春's avatar 吴春

提交代码

parent a2742dfd
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
<span>导游管理</span> <span>导游管理</span>
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex;flex-direction: row;align-items: center">
<el-button type="primary" class="el-button--small" @click="addRecharge">新增</el-button> <el-button type="primary" class="el-button--small" @click="addRecharge">新增</el-button>
<el-button type="primary" @click="SetProduct(0)" style="margin-left:10px;" class="el-button--small">启用导游</el-button> <el-button type="primary" @click="SetProduct(0)" style="margin-left:10px;" class="el-button--small">启用</el-button>
<el-button type="primary" @click="SetProduct(1)" style="margin-left:10px;" class="el-button--small">冻结导游</el-button> <el-button type="primary" @click="SetProduct(1)" style="margin-left:10px;" class="el-button--small">冻结</el-button>
</div> </div>
</div> </div>
<div class="content"> <div class="content">
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<div class="block" > <div class="block" >
<div class="searchInput" style="width:200px"> <div class="searchInput" style="width:200px">
<el-input style="display:inline-block;width:170px;height:30px" <el-input style="display:inline-block;width:170px;height:30px"
placeholder="请输入导游名称搜索" placeholder="请输入导游名称"
v-model="msg.Name" v-model="msg.Name"
size="small" size="small"
@clear="getList" @clear="getList"
...@@ -24,11 +24,12 @@ ...@@ -24,11 +24,12 @@
</div> </div>
<div class="searchInput" style="width:200px"> <div class="searchInput" style="width:200px">
<el-input style="display:inline-block;width:170px;height:30px" <el-input style="display:inline-block;width:170px;height:30px"
placeholder="请输入导游编号搜索" placeholder="请输入导游ID"
v-model="searchId" v-model="searchId"
size="small" size="small"
@clear="getList" @clear="getList"
@keyup.enter.native="getList" @keyup.enter.native="getList"
type="number"
clearable> clearable>
</el-input> </el-input>
<span @click="getList" class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span> <span @click="getList" class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span>
...@@ -39,7 +40,7 @@ ...@@ -39,7 +40,7 @@
<el-option v-for="item in IsEnableList" :key="item.id" :label="item.name" :value="item.id"> <el-option v-for="item in IsEnableList" :key="item.id" :label="item.name" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
<span style="margin-left: 15px">时间:</span> <span style="margin-left: 15px">注册时间:</span>
<el-date-picker v-model="dateList" @change="msg.pageIndex=1,getList()" size="small" type="datetimerange" range-separator="至" <el-date-picker v-model="dateList" @change="msg.pageIndex=1,getList()" size="small" type="datetimerange" range-separator="至"
value-format="yyyy-MM-dd HH:mm:ss" start-placeholder="开始日期" end-placeholder="结束日期"> value-format="yyyy-MM-dd HH:mm:ss" start-placeholder="开始日期" end-placeholder="结束日期">
</el-date-picker> </el-date-picker>
...@@ -50,12 +51,12 @@ ...@@ -50,12 +51,12 @@
<div class="content" style="margin-top: 0px"> <div class="content" style="margin-top: 0px">
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex;flex-direction: row;align-items: center">
<div class="block" > <div class="block" >
<span style="margin-left: 10px">工作年限范围</span> <span style="margin-left: 10px">工作年限:</span>
<el-input style="display:inline-block;width:100px;height:30px" :min="0" placeholder="请输入" v-model="msg.StartWorkYears" size="small" type="number"></el-input> <el-input style="display:inline-block;width:100px;height:30px" :min="0" placeholder="请输入" v-model="msg.StartWorkYears" size="small" type="number"></el-input>
<span style="margin: 0 10px ;">~</span> <span style="margin: 0 10px ;">~</span>
<el-input style="display:inline-block;width:100px;height:30px" :min="0" placeholder="请输入" v-model="msg.EndWorkYears" size="small" type="number"></el-input> <el-input style="display:inline-block;width:100px;height:30px" :min="0" placeholder="请输入" v-model="msg.EndWorkYears" size="small" type="number"></el-input>
<span style="margin-left: 20px">评分范围</span> <span style="margin-left: 20px">评分:</span>
<el-input style="display:inline-block;width:100px;height:30px" placeholder="请输入" v-model="msg.StartScore" size="small" type="number"></el-input> <el-input style="display:inline-block;width:100px;height:30px" placeholder="请输入" v-model="msg.StartScore" size="small" type="number"></el-input>
<span style="margin: 0 10px ;">~</span> <span style="margin: 0 10px ;">~</span>
<el-input style="display:inline-block;width:100px;height:30px" placeholder="请输入" v-model="msg.EndScore" size="small" type="number"></el-input> <el-input style="display:inline-block;width:100px;height:30px" placeholder="请输入" v-model="msg.EndScore" size="small" type="number"></el-input>
......
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