Commit f0884de0 authored by 黄媛媛's avatar 黄媛媛

新增查询条件

parent 00914964
...@@ -355,7 +355,7 @@ export default { ...@@ -355,7 +355,7 @@ export default {
}; };
</script> </script>
<style> <style scoped>
/* .personTable .el-table--border::after, .personTable .el-table--group::after, .personTable .el-table::before{ /* .personTable .el-table--border::after, .personTable .el-table--group::after, .personTable .el-table::before{
background-color: transparent; background-color: transparent;
......
...@@ -117,6 +117,12 @@ ...@@ -117,6 +117,12 @@
<div class="flexOne currentManage"> <div class="flexOne currentManage">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li>
<span>
<em>编号</em>
<el-input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')" v-model="msg.ID"></el-input>
</span>
</li>
<li> <li>
<span> <span>
<em>银行账户</em> <em>银行账户</em>
...@@ -323,6 +329,13 @@ ...@@ -323,6 +329,13 @@
this.getList(); this.getList();
}, },
methods: { methods: {
checkInt(obj){
// obj.value = obj.value.replace(/[^/d.]/g,"");
//必须保证第一位为数字而不是.
// obj.value = obj.value.replace(/^/./g,"");
},
AddR(item){ AddR(item){
this.form.ID=item.ID; this.form.ID=item.ID;
this.form.AccountName=item.AccountName; this.form.AccountName=item.AccountName;
......
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