|
@ -104,13 +104,6 @@ |
|
|
show-overflow-tooltip |
|
|
show-overflow-tooltip |
|
|
min-width="100" |
|
|
min-width="100" |
|
|
/> |
|
|
/> |
|
|
<el-table-column |
|
|
|
|
|
label="总月数" |
|
|
|
|
|
align="center" |
|
|
|
|
|
prop="followupMonth" |
|
|
|
|
|
show-overflow-tooltip |
|
|
|
|
|
min-width="100" |
|
|
|
|
|
/> |
|
|
|
|
|
<el-table-column |
|
|
<el-table-column |
|
|
label="总月数" |
|
|
label="总月数" |
|
|
align="center" |
|
|
align="center" |
|
@ -140,8 +133,8 @@ |
|
|
min-width="100" |
|
|
min-width="100" |
|
|
> |
|
|
> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span v-if="scope.row.status == 0" style="color: #F56C6C">禁用</span> |
|
|
<span v-if="scope.row.status == 0" style="color: #f56c6c">禁用</span> |
|
|
<span v-else style="color: #67C23A">启用</span> |
|
|
<span v-else style="color: #67c23a">启用</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column |
|
|
<el-table-column |
|
@ -152,7 +145,9 @@ |
|
|
> |
|
|
> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span v-if="scope.row.type == 1">公共队列</span> |
|
|
<span v-if="scope.row.type == 1">公共队列</span> |
|
|
<span v-else-if="scope.row.status == 1" style="color: #67C23A">本院队列</span> |
|
|
<span v-else-if="scope.row.status == 1" style="color: #67c23a" |
|
|
|
|
|
>本院队列</span |
|
|
|
|
|
> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column |
|
|
<el-table-column |
|
@ -288,7 +283,7 @@ import { |
|
|
followupAdd, |
|
|
followupAdd, |
|
|
followupUpd, |
|
|
followupUpd, |
|
|
followupDel, |
|
|
followupDel, |
|
|
commonQueue |
|
|
commonQueue, |
|
|
} from "@/api/followupFile"; |
|
|
} from "@/api/followupFile"; |
|
|
export default { |
|
|
export default { |
|
|
name: "Notice", |
|
|
name: "Notice", |
|
@ -299,7 +294,8 @@ export default { |
|
|
openCron: false, |
|
|
openCron: false, |
|
|
// 传入的表达式 |
|
|
// 传入的表达式 |
|
|
expression: "", |
|
|
expression: "", |
|
|
idCardType: [{ |
|
|
idCardType: [ |
|
|
|
|
|
{ |
|
|
label: "身份证", |
|
|
label: "身份证", |
|
|
value: 0, |
|
|
value: 0, |
|
|
}, |
|
|
}, |
|
@ -397,11 +393,11 @@ export default { |
|
|
getList() { |
|
|
getList() { |
|
|
this.loading = true; |
|
|
this.loading = true; |
|
|
followupQuery(this.queryParams).then((res) => { |
|
|
followupQuery(this.queryParams).then((res) => { |
|
|
let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) |
|
|
let commonQueue = JSON.parse(localStorage.getItem("commonQueue")); |
|
|
this.listDat = res.data.list; |
|
|
this.listDat = res.data.list; |
|
|
commonQueue?.forEach(i=>{ |
|
|
commonQueue?.forEach((i) => { |
|
|
this.listDat.unshift(i) |
|
|
this.listDat.unshift(i); |
|
|
}) |
|
|
}); |
|
|
this.total = res.data.total; |
|
|
this.total = res.data.total; |
|
|
this.loading = false; |
|
|
this.loading = false; |
|
|
}); |
|
|
}); |
|
|