This commit is contained in:
@zuopngfei 2025-05-26 14:51:17 +08:00
parent 2c5866d8f6
commit 3e4e1c6156
2 changed files with 22 additions and 2 deletions

View File

@ -12,7 +12,8 @@
@change="handleDateChange"
clearable
/>
<el-button type="primary">搜索</el-button>
<el-button type="primary" icon="Search" @click="handleSearch">搜索</el-button>
<el-button icon="Refresh" @click="handleReset">重置</el-button>
<el-button type="primary" @click="handleBatchDelete" :disabled="selectedRows.length === 0">批量删除</el-button>
<el-button style="float: right;" type="primary" @click="addNews">添加文章</el-button>
</div>

View File

@ -2,7 +2,26 @@
<div>
<div class="user-search">
<el-input style="width: 200px;margin-right: 10px;" v-model="search" placeholder="请输入患者姓名" />
<el-button type="primary">搜索</el-button>
<el-input style="width: 200px;margin-right: 10px;" v-model="search" placeholder="请输入账号" />
<!-- 选择胆道闭锁时间 -->
<el-date-picker
v-model="dateTime"
type="date"
placeholder="选择胆道闭锁时间"
/>
<!-- 请选择当前风险 -->
<el-select v-model="risk" placeholder="请选择当前风险">
<el-option label="高风险" value="1" />
<el-option label="中风险" value="2" />
<el-option label="低风险" value="3" />
</el-select>
<el-date-picker
v-model="dateTime"
type="date"
placeholder="选择下次随访时间"
/>
<el-button type="primary" icon="Search" @click="handleSearch">搜索</el-button>
<el-button icon="Refresh" @click="handleReset">重置</el-button>
</div>
<div class="user-table">
<el-table :data="tableData" style="width: 100%">