|
@ -195,6 +195,11 @@ |
|
|
<GuipInput width="90%" v-model="scope.row.price" @change="changePrice(scope.row)" /> |
|
|
<GuipInput width="90%" v-model="scope.row.price" @change="changePrice(scope.row)" /> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="price" label="治疗时长(分钟)" min-width="155"> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
<GuipInput width="90%" v-model="scope.row.treat_time" @change="changeTreatTime(scope.row)" /> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
<el-table-column prop="classify_id" label="分组" min-width="155"> |
|
|
<el-table-column prop="classify_id" label="分组" min-width="155"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<GuipSelect width="90%" v-model="scope.row.classify_id" |
|
|
<GuipSelect width="90%" v-model="scope.row.classify_id" |
|
@ -697,6 +702,10 @@ export default { |
|
|
changePrice(row) { |
|
|
changePrice(row) { |
|
|
this.editorProjectInfo({ price: row.price, project_id: row.id }) |
|
|
this.editorProjectInfo({ price: row.price, project_id: row.id }) |
|
|
}, |
|
|
}, |
|
|
|
|
|
// 修改项目价格 |
|
|
|
|
|
changeTreatTime(row) { |
|
|
|
|
|
this.editorProjectInfo({ treat_time: row.treat_time, project_id: row.id }) |
|
|
|
|
|
}, |
|
|
// 修改分类 |
|
|
// 修改分类 |
|
|
changeClassify(row) { |
|
|
changeClassify(row) { |
|
|
this.editorProjectInfo({ classify_id: row.classify_id, project_id: row.id }) |
|
|
this.editorProjectInfo({ classify_id: row.classify_id, project_id: row.id }) |
|
|