|
@@ -1,17 +1,19 @@
|
|
|
<template>
|
|
|
<div class="reply" ref = "replyModal">
|
|
|
<a-modal
|
|
|
- title="生成工资单"
|
|
|
+ title="调整工资基数"
|
|
|
width="25%"
|
|
|
:visible="visible"
|
|
|
:confirmLoading="loading"
|
|
|
:getContainer ='()=>$refs.replyModal'
|
|
|
@cancel="handleCancel"
|
|
|
+ :closable="!loading"
|
|
|
+ :maskClosable="!loading"
|
|
|
destroyOnClose
|
|
|
>
|
|
|
<template #footer>
|
|
|
- <a-button @click="handleCancel" style="margin-left: 8px;">取消</a-button>
|
|
|
- <a-button @click="handleOk" type="primary" style="margin-left: 8px;">确认</a-button>
|
|
|
+ <a-button @click="handleCancel" :loading = "loading">取消</a-button>
|
|
|
+ <a-button @click="handleOk" type="primary" style="margin-left: 8px;" :loading = "loading">确认</a-button>
|
|
|
</template>
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form-model layout="inline" ref="form" :model="formState" :rules="validatorRules">
|