Commit 2784f252 by zhouqian

Merge branch 'development-202206' into 'development-202206'

Development 202206

See merge request fukai/vue-gjjs!20
parents 6b9a0f47 6c58e0fe
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
<c-input <c-input
v-model="ucl.usr" v-model="ucl.usr"
placeholder="请输入用户ID" placeholder="请输入用户ID"
disabled=true
> >
</c-input> </c-input>
</el-form-item> </el-form-item>
......
...@@ -122,6 +122,7 @@ export default { ...@@ -122,6 +122,7 @@ export default {
*/ */
uclAdd() { uclAdd() {
this.ucl = new Ucl().data; this.ucl = new Ucl().data;
this.ucl.usr=this.model.extkey;
this.operate = "add"; this.operate = "add";
this.uclDialog = true; this.uclDialog = true;
}, },
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
size="small" size="small"
@click="onInfactSearch()" @click="onSearch()"
>查询 >查询
</el-button> </el-button>
</c-col> </c-col>
...@@ -176,6 +176,12 @@ export default { ...@@ -176,6 +176,12 @@ export default {
handleReset() { handleReset() {
this.root.$refs.modelForm.resetFields(); this.root.$refs.modelForm.resetFields();
}, },
onSearch(){
this.model.pageNum = 1;
this.model.pageSize = 5;
this.onInfactSearch();
},
onInfactSearch() { onInfactSearch() {
queryByPage(this.model).then(res => { queryByPage(this.model).then(res => {
/** /**
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
size="small" size="small"
@click="onInfBchSearch()" @click="onSearch()"
>查询 >查询
</el-button> </el-button>
</c-col> </c-col>
...@@ -160,6 +160,11 @@ export default { ...@@ -160,6 +160,11 @@ export default {
handleReset() { handleReset() {
this.root.$refs.modelForm.resetFields(); this.root.$refs.modelForm.resetFields();
}, },
onSearch(){
this.model.pageNum = 1;
this.model.pageSize = 5;
this.onInfBchSearch();
},
onInfBchSearch() { onInfBchSearch() {
queryByPage(this.model).then(res => { queryByPage(this.model).then(res => {
/** /**
......
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
size="small" size="small"
@click="onInffecSearch()" @click="onSearch()"
>查询 >查询
</el-button> </el-button>
</c-col> </c-col>
...@@ -220,6 +220,11 @@ export default { ...@@ -220,6 +220,11 @@ export default {
handleReset() { handleReset() {
this.root.$refs.modelForm.resetFields(); this.root.$refs.modelForm.resetFields();
}, },
onSearch(){
this.model.pageNum = 1;
this.model.pageSize = 5;
this.onInffecSearch();
},
onInffecSearch() { onInffecSearch() {
queryByPage(this.model).then(res => { queryByPage(this.model).then(res => {
/** /**
......
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
size="small" size="small"
@click="onInfptySearch()" @click="onSearch()"
>查询 >查询
</el-button> </el-button>
</c-col> </c-col>
...@@ -296,6 +296,11 @@ export default { ...@@ -296,6 +296,11 @@ export default {
handleReset() { handleReset() {
this.root.$refs.modelForm.resetFields(); this.root.$refs.modelForm.resetFields();
}, },
onSearch(){
this.model.pageNum = 1;
this.model.pageSize = 5;
this.onInfptySearch();
},
onInfptySearch() { onInfptySearch() {
queryByPage(this.model).then(res => { queryByPage(this.model).then(res => {
/** /**
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
size="small" size="small"
@click="onInfusrSearch()" @click="onSearch()"
>查询 >查询
</el-button> </el-button>
</c-col> </c-col>
...@@ -148,6 +148,11 @@ export default { ...@@ -148,6 +148,11 @@ export default {
handleReset() { handleReset() {
this.root.$refs.modelForm.resetFields(); this.root.$refs.modelForm.resetFields();
}, },
onSearch(){
this.model.pageNum = 1;
this.model.pageSize = 5;
this.onInfusrSearch();
},
onInfusrSearch() { onInfusrSearch() {
queryByPage(this.model).then(res => { queryByPage(this.model).then(res => {
/** /**
......
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