lkk
2024-12-16 c7b33db117fd2893d7d1c93bf5d46e87d33e44d0
src/views/system/register/index.vue
@@ -76,7 +76,7 @@
        <!-- <el-button type="warning" plain icon="el-icon-refresh-left" size="mini" @click="handleDelete"
          v-hasPermi="['hosp:order:export']">撤销预约</el-button> -->
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" style="margin-right:20px"></right-toolbar>
      <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" style="margin-right:20px"></right-toolbar> -->
    </el-row>
    <template>
@@ -90,6 +90,7 @@
          <template slot-scope="scope">
            <span v-if="scope.row.sex == '0'">男</span>
            <span v-if="scope.row.sex == '1'">女</span>
            <span v-if="scope.row.sex == '2'">未知</span>
          </template>
        </el-table-column>
        <el-table-column label="年龄" align="center" prop="age" height="10px" :show-overflow-tooltip="true" width="55px"/>
@@ -124,7 +125,7 @@
            <span>{{ parseTime(scope.row.reservationTime) }}</span>
          </template> -->
        </el-table-column>
        <el-table-column label="撤销人员" align="center" prop="name" width="100px" height="10px" :show-overflow-tooltip="true">
        <el-table-column label="撤销人员" align="center" prop="updateBy" width="100px" height="10px" :show-overflow-tooltip="true">
          <!-- <template slot-scope="scope">
            <span>{{ parseTime(scope.row.reservationTime) }}</span>
          </template> -->
@@ -496,6 +497,8 @@
      this.loading = true;
      let token = user.state.token;
      getselectTj(token).then((response) => {
        console.log(response,9999);
        this.orderList = response.rows;
        response.rows.forEach((item, index) => {
          item.newID =
@@ -588,7 +591,7 @@
      }
      /** 查询部门下拉树结构 */
      projectGetList().then((response) => {
        this.Treedata = response.data;
        this.Treedata = response.data.list;
      });
      this.Projectopen = true;
    },