This commit is contained in:
linfso 2025-05-19 18:50:46 +08:00
parent 69fd87e059
commit 8c0b961570
3 changed files with 6 additions and 6 deletions

View File

@ -110,7 +110,7 @@
</el-table-column>
<el-table-column :label="$t('总已用额度')" align="center" prop="useMoney" min-width="120" :sortable="true">
<template slot-scope="scope">
{{ scope.row.useMoney }}
<div class="link-type" @click="handleShowBillList(scope.row,null)">{{ scope.row.useMoney }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('账期内已用')" align="center" prop="inTermMoney" min-width="120" :sortable="true">

View File

@ -167,7 +167,7 @@
</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>
@ -184,12 +184,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: "emisSettleInvoiceChRecord",
name: "EmisSettleInvoiceChRecordForm",
props:{
applyId:{
type:Number
@ -198,7 +198,7 @@ export default {
type:String
}
},
components: { elDateSimplePicker,emisSettleInvoiceChRecordForm ,ManualInvoiceChRecordForm},
components: { elDateSimplePicker,EmisSettleInvoiceChRecordForm ,ManualInvoiceChRecordForm},
dicts: ['emis_invoice_ch_type'
],
data() {

View File

@ -126,7 +126,7 @@
</el-col>
<el-col :span="10">
<el-form-item label="开票金额" prop="openMoney">
<el-input-number v-model="form.openMoney" placeholder="" :min="1.0" :controls="false" :precision="2"></el-input-number>
<el-input-number v-model="form.openMoney" placeholder="" :min="1.0" :controls="false" :precision="2" disabled></el-input-number>
<span style="font-size: 12px;color:red" v-if="invoiceApplyData!=null">(申请开票金额:¥{{ invoiceApplyData.applyMoney }})</span>
</el-form-item>
</el-col>