Explorar o código

操作日志增加商户名称筛选

pengyh hai 1 ano
pai
achega
0fab74e6de
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      src/views/setting/oplog/index.vue

+ 3 - 0
src/views/setting/oplog/index.vue

@@ -9,6 +9,7 @@
           
         </div>
         <div class="fr">
+		  <el-input type="text" v-model="screenForm.companyWechatName" @change="getList()" size="small" style="width: 240px;margin-right: 20px;" placeholder="输入商户名称"></el-input>
           <el-select v-model="screenForm.moduleName" placeholder="全部" size="small" style="width: 140px;" @change="getListByScreen">
             <el-option label="选择模块" value=""></el-option>
             <el-option :label="item" :value="item" v-for="(item, index) in moduleList" :key="index"></el-option>
@@ -93,6 +94,7 @@ export default {
       moduleList: null, // 模块列表
       listLoading: true, // 列表加载loading
       screenForm: { // 筛选表单数据
+				companyWechatName: '', // 商户名称
         moduleName: '', // 模块名称
         date: '', // 日期
       },
@@ -110,6 +112,7 @@ export default {
       this.listLoading = true;
 
       let params = {
+		companyWechatName: this.screenForm.companyWechatName,
         moduleName: this.screenForm.moduleName,
         startTime: this.screenForm.date ? this.screenForm.date[0] : '',
         endTime: this.screenForm.date ? this.screenForm.date[1] : '',