| | |
| | | @confirm="submitForm" |
| | | @cancel="closeDialog" |
| | | > |
| | | <el-form :model="form" :rules="rules" ref="formRef" label-width="120px"> |
| | | <el-form :model="form" :rules="rules" ref="formRef" label-width="100px"> |
| | | <el-row v-if="isView" :gutter="20"> |
| | | <el-col :span="12"> |
| | | <el-form-item label="状态"> |
| | |
| | | </el-col> |
| | | </el-row> |
| | | <el-row :gutter="20"> |
| | | <el-col :span="8"> |
| | | <el-col :span="10"> |
| | | <el-form-item label="金额(不含税)" prop="amount"> |
| | | <el-input-number |
| | | v-model="form.amount" |
| | |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <el-col :span="7"> |
| | | <el-form-item label="税额"> |
| | | <el-input v-model="form.taxAmount" disabled /> |
| | | <el-input v-model="form.taxAmount" style="width: 100%;" disabled /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <el-col :span="7"> |
| | | <el-form-item label="价税合计"> |
| | | <el-input v-model="form.totalAmount" disabled /> |
| | | <el-input v-model="form.totalAmount" style="width: 100%;" disabled /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |