| | |
| | | size="mini" |
| | | :disabled="multiple" |
| | | @click="batch" |
| | | v-hasPermi="['reservation:reservation:remove']" |
| | | |
| | | >撤销预约</el-button |
| | | > |
| | | <!-- v-hasPermi="['reservation:reservation:remove']" --> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button |
| | |
| | | size="mini" |
| | | :disabled="single" |
| | | @click="receipt" |
| | | v-hasPermi="['reservation:reservation:remove']" |
| | | |
| | | >补打小票</el-button |
| | | > |
| | | <!-- v-hasPermi="['reservation:reservation:remove']" --> |
| | | </el-col> |
| | | <right-toolbar |
| | | :showSearch.sync="showSearch" |
| | |
| | | unallocatedUserList(this.queryParams).then(res => { |
| | | console.log(res,6969); |
| | | |
| | | this.userList = res.rows; |
| | | this.userList = res.rows.map(item=>{ |
| | | item.deptName = item.dept ? item.dept.deptName : ''; |
| | | return item |
| | | }) |
| | | this.total = res.total; |
| | | }); |
| | | }, |