mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
支持编码映射like
This commit is contained in:
parent
ad0846b50b
commit
a94de23b6b
@ -12,20 +12,17 @@
|
|||||||
<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="请输入域" v-model="mappingManageInfo.conditions.domain"
|
<input type="text" placeholder="请输入域" v-model="mappingManageInfo.conditions.domain" class=" form-control">
|
||||||
class=" form-control">
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="请输入名称" v-model="mappingManageInfo.conditions.name"
|
<input type="text" placeholder="请输入名称" v-model="mappingManageInfo.conditions.nameLike" class=" form-control">
|
||||||
class=" form-control">
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-3">
|
<div class="col-sm-3">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="请输入键" v-model="mappingManageInfo.conditions.key"
|
<input type="text" placeholder="请输入键" v-model="mappingManageInfo.conditions.key" class=" form-control">
|
||||||
class=" form-control">
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-1">
|
<div class="col-sm-1">
|
||||||
@ -74,14 +71,12 @@
|
|||||||
<td class="text-center">{{mapping.value}}</td>
|
<td class="text-center">{{mapping.value}}</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<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="_openEditMappingModel(mapping)">
|
||||||
v-on:click="_openEditMappingModel(mapping)">
|
|
||||||
修改
|
修改
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<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="_openDeleteMappingModel(mapping)">
|
||||||
v-on:click="_openDeleteMappingModel(mapping)">
|
|
||||||
删除
|
删除
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
records: 1,
|
records: 1,
|
||||||
conditions: {
|
conditions: {
|
||||||
domain: '',
|
domain: '',
|
||||||
name:'',
|
nameLike: '',
|
||||||
key: ''
|
key: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -51,7 +51,8 @@
|
|||||||
dataCount: vc.component.mappingManageInfo.total,
|
dataCount: vc.component.mappingManageInfo.total,
|
||||||
currentPage: _page
|
currentPage: _page
|
||||||
});
|
});
|
||||||
},function(errInfo,error){
|
},
|
||||||
|
function(errInfo, error) {
|
||||||
console.log('请求失败处理');
|
console.log('请求失败处理');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user