WXL
11 小时以前 510b43356f18aa5be351a0990c7cdc1d4478b5e7
测试完成
已修改1个文件
10 ■■■■ 文件已修改
src/views/patient/patient/outpatient.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/patient/patient/outpatient.vue
@@ -20,9 +20,9 @@
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="患者编号" prop="patid">
          <el-form-item label="患者编号" prop="patno">
            <el-input
              v-model="queryParams.patid"
              v-model="queryParams.patno"
              placeholder="请输入患者编号"
              clearable
              style="width: 250px"
@@ -256,7 +256,7 @@
                @click="
                  $router.push({
                    path: '/patient/patient/profile/',
                    query: { id: scope.row.patid },
                    query: { id: scope.row.patno },
                  })
                "
                v-hasPermi="['system:user:edit']"
@@ -619,7 +619,7 @@
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map((item) => item.patid);
      this.ids = selection.map((item) => item.patno);
      this.single = selection.length != 1;
      this.multiple = !selection.length;
    },
@@ -633,7 +633,7 @@
    /** 修改按钮操作 */
    handleUpdate(row) {
      console.log(row);
      const userIds = row.patid || this.ids;
      const userIds = row.patno || this.ids;
      particularpatient(userIds).then((response) => {
        console.log(response);
        this.form = response.data;