| | |
| | | <el-table-column |
| | | label="操作" |
| | | align="center" |
| | | width="160" |
| | | width="190" |
| | | class-name="small-padding fixed-width" |
| | | > |
| | | <template slot-scope="scope"> |
| | |
| | | type="text" |
| | | @click="handleUpdate(scope.row)" |
| | | v-hasPermi="['system:user:edit']" |
| | | ><span class="button-textxg" |
| | | ><span class="button-textxga" |
| | | ><i class="el-icon-edit"></i>修改</span |
| | | ></el-button |
| | | > |
| | |
| | | @click="Distributionservice(scope.row)" |
| | | v-hasPermi="['system:user:edit']" |
| | | ><span class="button-textxg" |
| | | ><i class="el-icon-edit"></i>服务</span |
| | | ><i class="el-icon-menu"></i>服务</span |
| | | ></el-button |
| | | > |
| | | </template> |
| | |
| | | <el-button @click="submitclose">取 消</el-button> |
| | | </div> |
| | | </el-dialog> |
| | | <!-- 跳转服务对话框 --> |
| | | <el-dialog title="选择服务类型" :visible.sync="serviceVisible"> |
| | | <el-radio-group v-model="serviceradio"> |
| | | <el-radio :label="1">宣教随访</el-radio> |
| | | <el-radio :label="2">门诊服务</el-radio> |
| | | <el-radio :label="3">出院服务</el-radio> |
| | | <el-radio :label="4">复诊服务</el-radio> |
| | | <el-radio :label="5">体检通知</el-radio> |
| | | <el-radio :label="6">问卷服务</el-radio> |
| | | </el-radio-group> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <el-button @click="serviceVisible = false">取 消</el-button> |
| | | <el-button type="primary" @click="CreateService">创建服务</el-button> |
| | | </div> |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | // 默认密码 |
| | | initPassword: undefined, |
| | | amendtag: false, //是否修改 |
| | | serviceVisible: false, |
| | | serviceradio: 1, |
| | | // 日期范围 |
| | | dateRange: [], |
| | | paperstypes: [ |
| | |
| | | this.loading = false; |
| | | }); |
| | | }, |
| | | |
| | | // 筛选节点 |
| | | filterNode(value, data) { |
| | | if (!value) return true; |
| | | return data.label.indexOf(value) !== -1; |
| | | }, |
| | | // 节点单击事件 |
| | | handleNodeClick(data) { |
| | | this.queryParams.deptId = data.id; |
| | | this.handleQuery(); |
| | | Distributionservice(row) { |
| | | this.serviceVisible = true; |
| | | }, |
| | | |
| | | // 取消按钮 |
| | |
| | | this.$modal.msgSuccess("删除成功"); |
| | | }) |
| | | .catch(() => {}); |
| | | }, |
| | | //服务跳转 |
| | | CreateService() { |
| | | this.$router.push({ |
| | | path: "/followvisit/particty", |
| | | query: { type: this.serviceradio }, |
| | | }); |
| | | }, |
| | | /** 导出按钮操作 */ |
| | | handleExport() { |
| | |
| | | .button-textsc { |
| | | color: #28cfe6; |
| | | } |
| | | .button-textxg { |
| | | color: #de7897; |
| | | } |
| | | </style> |