| | |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <!-- 报销金额字段(仅在报销管理时显示) --> |
| | | <el-row :gutter="30" v-if="props.approveType == 4"> |
| | | <el-col :span="12"> |
| | | <el-form-item label="报销金额:" prop="price"> |
| | | <el-input-number |
| | | v-model="form.price" |
| | | placeholder="请输入报销金额" |
| | | :min="0" |
| | | :precision="2" |
| | | :controls="false" |
| | | style="width: 100%" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row :gutter="30"> |
| | | <el-col :span="24"> |
| | | <el-form-item label="附件材料:" prop="remark"> |
| | |
| | | approveReason: "", |
| | | checkResult: "", |
| | | tempFileIds: [], |
| | | approverList: [] // 新增字段,存储所有节点的审批人id |
| | | approverList: [], // 新增字段,存储所有节点的审批人id |
| | | price: null // 报销金额 |
| | | }, |
| | | rules: { |
| | | approveTime: [{ required: false, message: "请输入", trigger: "change" },], |