|
|
@ -82,7 +82,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button type="primary" icon="search" @click="getCodeList"
|
|
|
|
<el-button type="primary" icon="search" @click="searchCode"
|
|
|
|
>查询
|
|
|
|
>查询
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -144,6 +144,7 @@
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
layout="prev, pager, next,total"
|
|
|
|
layout="prev, pager, next,total"
|
|
|
|
:total="total"
|
|
|
|
:total="total"
|
|
|
|
|
|
|
|
:current-page="query.page"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-pagination>
|
|
|
|
</el-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -219,7 +220,10 @@ export default {
|
|
|
|
this.query.page = val;
|
|
|
|
this.query.page = val;
|
|
|
|
this.getCodeList();
|
|
|
|
this.getCodeList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
searchCode() {
|
|
|
|
|
|
|
|
this.query.page = 1;
|
|
|
|
|
|
|
|
this.getCodeList();
|
|
|
|
|
|
|
|
},
|
|
|
|
getCodeList() {
|
|
|
|
getCodeList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
|
this.query.productIdFk = this.idQuery.relIdFk;
|
|
|
|
this.query.productIdFk = this.idQuery.relIdFk;
|
|
|
|