|
@@ -48,6 +48,11 @@
|
|
|
<el-input :readonly="true" :disabled="method==='view'" placeholder="请填写项目编号" v-model="scope.row.programNo"/>
|
|
|
</template>
|
|
|
</vxe-table-column>
|
|
|
+ <vxe-table-column field="reportNo" title="报告号" :edit-render="{}">
|
|
|
+ <template v-slot:edit="scope">
|
|
|
+ <el-input :readonly="true" :disabled="method==='view'" v-model="scope.row.reportNo" placeholder="请填写报告号"/>
|
|
|
+ </template>
|
|
|
+ </vxe-table-column>
|
|
|
<vxe-table-column field="account" align="center" title="发票金额(元)" :edit-render="{}">
|
|
|
<template v-slot:edit="scope">
|
|
|
<el-input
|
|
@@ -70,11 +75,6 @@
|
|
|
<!-- <el-input :readonly="true" placeholder="请填写委托方" v-model="scope.row.clientName"/>-->
|
|
|
<!-- </template>-->
|
|
|
<!-- </vxe-table-column>-->
|
|
|
- <vxe-table-column field="reportNo" title="报告号" :edit-render="{}">
|
|
|
- <template v-slot:edit="scope">
|
|
|
- <el-input :readonly="true" :disabled="method==='view'" v-model="scope.row.reportNo" placeholder="请填写报告号"/>
|
|
|
- </template>
|
|
|
- </vxe-table-column>
|
|
|
<vxe-table-column title="操作" width="100">
|
|
|
<template v-slot="scope">
|
|
|
<el-button type="danger" :disabled="method==='view'" @click="removeEvent(scope.row,scope.$rowIndex,'base')">删除</el-button>
|
|
@@ -268,7 +268,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="发票金额(元)" prop="accountTotal"
|
|
|
+ <el-form-item label="发票金额(元)" prop="account"
|
|
|
:rules="[
|
|
|
{required: true, message:'发票金额不能为空', trigger:'blur'}
|
|
|
]">
|
|
@@ -276,7 +276,7 @@
|
|
|
@input="fixedAccount"
|
|
|
placeholder="请填写发票金额"
|
|
|
maxlength="15"
|
|
|
- v-model="inputForm.accountTotal"
|
|
|
+ v-model="inputForm.account"
|
|
|
:disabled="true"
|
|
|
>
|
|
|
|