| | |
| | | @keyup.enter.native="handleQuery" |
| | | ></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="创发送时间"> |
| | | <el-form-item label="发送时间"> |
| | | <el-date-picker |
| | | v-model="dateRange" |
| | | style="width: 240px" |
| | |
| | | sortable |
| | | align="center" |
| | | prop="createTime" |
| | | width="160" |
| | | width="180" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span>{{ formatTime(scope.row.createTime) }}</span> |
| | | <span>{{ parseTime(scope.row.createTime) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | |
| | | }, |
| | | ], |
| | | taskoptions: [ |
| | | { |
| | | value: "1", |
| | | label: "监测评估", |
| | | }, |
| | | // { |
| | | // value: "1", |
| | | // label: "监测评估", |
| | | // }, |
| | | { |
| | | value: "2", |
| | | label: "出院随访", |
| | |
| | | value: "5", |
| | | label: "复诊管理", |
| | | }, |
| | | { |
| | | value: "6", |
| | | label: "满意度调查", |
| | | }, |
| | | // { |
| | | // value: "6", |
| | | // label: "满意度调查", |
| | | // }, |
| | | { |
| | | value: "7", |
| | | label: "患者日常报告", |
| | | }, |
| | | { |
| | | value: "9", |
| | | label: "患者异常报告", |
| | | label: "患者报告", |
| | | }, |
| | | { |
| | | value: "8", |
| | |
| | | /** 查询任务列表 */ |
| | | getList() { |
| | | this.loading = true; |
| | | console.log(this.topqueryParams.type); |
| | | |
| | | this.topqueryParams.serviceType = Number(this.tasktopic); |
| | | if ( |
| | | this.tasktopic == 2 || |
| | |
| | | /** 搜索按钮操作 */ |
| | | handleQuerytask() { |
| | | this.topqueryParams.pageNum = 1; |
| | | if (this.tasktopic == 4) { |
| | | this.topqueryParams.type = 3; |
| | | }else{ |
| | | this.topqueryParams.type = 2; |
| | | } |
| | | // this.topqueryParams.type = ''; |
| | | this.getList(); |
| | | }, |
| | |
| | | this.TaskOperation.sendState = 2; |
| | | this.TaskOperation.sendType = 2; |
| | | this.$modal |
| | | .confirm({ |
| | | title: "确认操作", |
| | | text: "你确定要执行这个操作吗?", |
| | | showCancelButton: true, |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | }) |
| | | .then((result) => { |
| | | if (result.value) { |
| | | console.log("用户点击了确定按钮"); |
| | | } |
| | | }); |
| | | this.$modal |
| | | .confirm( |
| | | '当前选中任务名称为"' + |
| | | row.taskName + |