Commit 2ab40330 authored by 盖献康's avatar 盖献康

Merge remote-tracking branch 'origin/master'

parents 4aa50279 712f08ab
...@@ -708,7 +708,10 @@ export default { ...@@ -708,7 +708,10 @@ export default {
], ],
queryParams: { queryParams: {
id: null id: null,
orderByColumn: 'c.check_start_time',
isAsc: ' desc'
}, },
props: { multiple: true }, props: { multiple: true },
cityOptions: regionData, cityOptions: regionData,
......
...@@ -41,9 +41,9 @@ ...@@ -41,9 +41,9 @@
> >
<el-option <el-option
v-for="item in doctorNameList" v-for="item in doctorNameList"
:key="item.doctorId" :key="item.ruleId"
:label="item.doctorName" :label="item.doctorName"
:value="item.doctorName" :value="item.ruleId"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
...@@ -475,9 +475,9 @@ export default { ...@@ -475,9 +475,9 @@ export default {
handleExport() { handleExport() {
if (this.ids.length !== 0) { if (this.ids.length !== 0) {
const exportList = {} const exportList = {}
exportList.medicalId = this.ids exportList.medicalId = this.ids.reverse()
console.log('exportList' + exportList.medicalId) console.log('exportListaaaaaaaaaaaaaaaaaaaaaaaaa' + exportList.medicalId)
console.log('this.ids' + this.ids) console.log('this.ids' + this.ids.reverse())
this.download('business/record/export', exportList, `病历管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => { this.download('business/record/export', exportList, `病历管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => {
this.$refs.table.clearSelection() this.$refs.table.clearSelection()
this.ids = [] this.ids = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment