| | |
| | | <el-form-item label="应收金额" style="margin-right: 20px"> |
| | | <el-input placeholder="应收金额" :value="TotalPrice1 + '.00'" disabled style="width: 150px"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="优惠折扣" style="margin-right: 20px"> |
| | | <!-- <el-input style="width: 100px" text="number" v-model="discount" :value="discount/100"></el-input> --> |
| | | <!-- <el-form-item label="优惠折扣" style="margin-right: 20px"> |
| | | <el-input style="width: 100px" text="number" v-model="discount" :value="discount/100"></el-input> |
| | | <el-input-number style="width: 140px" v-model="discount" :precision="2" :step="0.1" :max="10" :min="1" |
| | | @change="numberChange" :disabled="isfalse"></el-input-number> |
| | | </el-form-item> |
| | | </el-form-item> --> |
| | | <el-form-item label="实收金额" style="margin-right: 20px"> |
| | | <el-input placeholder="实收金额" v-model="TotalPrice" style="width: 94px"></el-input> |
| | | <el-input placeholder="实收金额" v-model="TotalPrice" disabled style="width: 190px"></el-input> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="submitPrice" size="mini" :disabled="confirm">预约登记</el-button> |
| | |
| | | <el-table :data="item.list" border style="width: 100%" height="270"> |
| | | <el-table-column prop="proName" label="项目" width="180"> |
| | | </el-table-column> |
| | | <el-table-column prop="proSex" label="性别" width="180"> |
| | | <el-table-column prop="proType" label="性别" width="180"> |
| | | <template slot-scope="scope" v-if="scope.row.proType == ''"> |
| | | {{ scope.row.proType == '' ? "全部" : ""}} |
| | | </template> |
| | | <template slot-scope="scope" v-else> |
| | | <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.proType" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="ordPrice" label="应收金额"> |
| | | </el-table-column> |
| | | <el-table-column prop="nowPrice" label="实收金额"> |
| | | </el-table-column> |
| | | <el-table-column prop="isEat" label="空腹"> |
| | | <el-table-column prop="proCheckMethod" label="空腹"> |
| | | <template slot-scope="scope"> |
| | | <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.proCheckMethod" /> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | </el-table> |