|
@@ -217,15 +217,16 @@
|
|
|
<el-row>
|
|
|
<el-col span="24">
|
|
|
<div style="text-align: right">
|
|
|
- <!--<el-button size="small" type="" style="margin-right: 8px" :disabled="editSave"-->
|
|
|
- <!-- :loading="saveLoading" @click="ResetFilter">重置条件-->
|
|
|
- <!--</el-button>-->
|
|
|
+
|
|
|
<el-checkbox v-model="appendType" :disabled="editSave" false-label="检索"
|
|
|
true-label="追加">追加</el-checkbox>
|
|
|
- <el-button size="small" type="primary" style="margin-right: 8px"
|
|
|
+
|
|
|
+ <el-button size="small" type="primary"
|
|
|
:disabled="editSave || (tableData.length > 0 && appendType == '检索')"
|
|
|
:loading="saveLoading" @click="retrievalfun">检 索
|
|
|
</el-button>
|
|
|
+ <el-button size="small" :disabled="tableData.length>0" @click="ResetFilter">重置条件
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -849,7 +850,12 @@ export default {
|
|
|
},
|
|
|
// 重置条件
|
|
|
ResetFilter() {
|
|
|
- this.form = {}
|
|
|
+ this.form ={
|
|
|
+ dc: 'C',
|
|
|
+ mblno: null,
|
|
|
+ corpCnName: null,
|
|
|
+ corpId: null
|
|
|
+ }
|
|
|
},
|
|
|
// 弹窗选择
|
|
|
retrievePopupsSelect(row) {
|