|
|
|
@ -288,7 +288,6 @@ |
|
|
|
>{{ handlegetLable(scope.row, item.label) }}</el-button |
|
|
|
> |
|
|
|
</template> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div v-else> |
|
|
|
<el-button |
|
|
|
@ -604,8 +603,11 @@ export default { |
|
|
|
let params = this.urlEncodeObject(this.queryParams, "order,sort"); |
|
|
|
const { data, code } = await this.option.buttons.query.api(params); |
|
|
|
if (code != "200") return; |
|
|
|
this.records = data.records; |
|
|
|
this.total = data.total; |
|
|
|
this.records = []; |
|
|
|
this.$nextTick(()=> { |
|
|
|
this.records = data.records; |
|
|
|
this.total = data.total; |
|
|
|
}) |
|
|
|
}, |
|
|
|
// 重置 |
|
|
|
handleResetForm() { |
|
|
|
|