This commit is contained in:
linfso 2025-05-19 19:31:00 +08:00
parent 103c34a6d5
commit 2e40bd4d28

View File

@ -167,16 +167,10 @@
</XdTable>
<el-dialog :title="titleForm" :visible.sync="openForm" width="80%" :destroy-on-close="true" :close-on-click-modal="false" v-dialogDrag append-to-body>
<EmisSettleInvoiceChRecordForm :key="resetRefreshId+'1'" v-if="isManaul==false" :id="currentId" :applyId="applyId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisSettleInvoiceChRecordForm>
<emisSettleInvoiceChRecordForm :key="resetRefreshId+'1'" v-if="isManaul==false" :id="currentId" :applyId="applyId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></emisSettleInvoiceChRecordForm>
<ManualInvoiceChRecordForm :key="resetRefreshId+'2'" v-if="isManaul==true" :id="currentId" :applyId="applyId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></ManualInvoiceChRecordForm>
</el-dialog>
</div>
</template>
@ -184,12 +178,12 @@
import { listEmisSettleInvoiceChRecord,sendHXToOpen, getEmisSettleInvoiceChRecord, delEmisSettleInvoiceChRecord, addEmisSettleInvoiceChRecord, updateEmisSettleInvoiceChRecord,invalidInvoice } from "@/api/emis/emisSettleInvoiceChRecord";
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
// import emisSettleInvoiceChRecordView from '@/views/emis/emisSettleInvoiceChRecord/emisSettleInvoiceChRecordView';
import EmisSettleInvoiceChRecordForm from '@/views/emis/emisSettleInvoiceChRecord/emisSettleInvoiceChRecordForm';
import emisSettleInvoiceChRecordForm from '@/views/emis/emisSettleInvoiceChRecord/emisSettleInvoiceChRecordForm';
import ManualInvoiceChRecordForm from '@/views/emis/emisSettleInvoiceChRecord/ManualInvoiceChRecordForm';
export default {
name: "EmisSettleInvoiceChRecordForm",
name: "InvoiceChRecordList",
props:{
applyId:{
type:Number
@ -198,7 +192,7 @@ export default {
type:String
}
},
components: { elDateSimplePicker,EmisSettleInvoiceChRecordForm ,ManualInvoiceChRecordForm},
components: { elDateSimplePicker,emisSettleInvoiceChRecordForm ,ManualInvoiceChRecordForm},
dicts: ['emis_invoice_ch_type'
],
data() {