|
@@ -199,7 +199,7 @@
|
|
|
type="link"
|
|
|
class="button-primary"
|
|
|
:loading="spinning"
|
|
|
- @click="handleAdd(record, false, 'noRefresh')"
|
|
|
+ @click.stop="handleAdd(record, false, 'noRefresh')"
|
|
|
>添加</a-button>
|
|
|
</template>
|
|
|
</s-table>
|
|
@@ -322,7 +322,7 @@
|
|
|
type="link"
|
|
|
class="button-error"
|
|
|
:loading="spinning"
|
|
|
- @click="handleDel(record)"
|
|
|
+ @click.stop="handleDel(record)"
|
|
|
:id="'allocateBillEdit-del-btn'+record.id">删除</a-button>
|
|
|
</template>
|
|
|
</s-table>
|
|
@@ -612,7 +612,9 @@ export default {
|
|
|
return {
|
|
|
on: {
|
|
|
dblclick: (event) => {
|
|
|
- this.handleAdd(record, false, 'noRefresh')
|
|
|
+ if (!this.spinning) {
|
|
|
+ this.handleAdd(record, false, 'noRefresh')
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|