WXL
2025-04-27 400d13ddc80a7560860939f65b318b2fa78f9004
src/views/patient/follow/index.vue
@@ -11,7 +11,8 @@
          v-show="showSearch"
          label-width="98px"
        >
          <el-form-item label="姓名" prop="name">
          <el-form-item label="姓名"
          width="100" prop="name">
            <el-input
              v-model="queryParams.name"
              placeholder="请输入姓名"
@@ -73,11 +74,12 @@
          <el-table-column
            fixed
            label="姓名"
          width="100"
            align="center"
            key="name"
            prop="name"
          />
          <el-table-column label="性别" align="center" key="sex" prop="sex">
          <el-table-column label="性别"width="100" align="center" key="sex" prop="sex">
            <template slot-scope="scope">
              <span>{{ scope.row.sex == 1 ? "男" : "女" }}</span>
            </template>
@@ -180,7 +182,7 @@
                @click="
                  $router.push({
                    path: '/patient/patient/profile/',
                    query: { id: scope.row.patid },
                    query: { id: scope.row.id },
                  })
                "
@@ -219,7 +221,7 @@
import { delUser } from "@/api/system/user";
import {
  messagelistpatient,
  patarchivelist,
  alterpatient,
  addfiltration,
  particularpatient,
@@ -367,8 +369,7 @@
    /** 查询患者列表 */
    getList() {
      this.loading = true;
      messagelistpatient(this.queryParams).then((response) => {
      patarchivelist(this.queryParams).then((response) => {
        console.log(response);
        this.userList = response.rows;
        this.total = response.total;
@@ -518,7 +519,7 @@
    /** 下载模板操作 */
    importTemplate() {
      this.download(
        "system/user/importTemplate",
        "smartor/import/getImportPatTemplate",
        {},
        `user_template_${new Date().getTime()}.xlsx`
      );