Browse Source

公共队列不可修改删除,公共队列训练先校验

newMaster
1747191978@qq.com 4 months ago
parent
commit
923ffed2ce
  1. 4
      acupuncture-前台/src/views/followFile/index.vue
  2. 2
      acupuncture-前台/src/views/followFile/subjects.vue
  3. 2
      acupuncture-前台/src/views/medicalFile/index.vue

4
acupuncture-前台/src/views/followFile/index.vue

@ -153,6 +153,7 @@
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleUpdate(scope.row)" @click="handleUpdate(scope.row)"
:disabled="scope.row.type == 1"
>修改</el-button >修改</el-button
> >
<el-button <el-button
@ -160,6 +161,7 @@
type="text" type="text"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
:disabled="scope.row.type == 1"
>删除</el-button >删除</el-button
> >
</template> </template>
@ -357,7 +359,7 @@ export default {
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;

2
acupuncture-前台/src/views/followFile/subjects.vue

@ -289,7 +289,7 @@ export default {
}).then((res) => { }).then((res) => {
this.followupList = res.data.list; this.followupList = res.data.list;
let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) let commonQueue = JSON.parse(localStorage.getItem('commonQueue'))
commonQueue.forEach(i=>{ commonQueue?.forEach(i=>{
this.followupList.unshift(i) this.followupList.unshift(i)
}) })
}); });

2
acupuncture-前台/src/views/medicalFile/index.vue

@ -1077,7 +1077,7 @@
}).then((res) => { }).then((res) => {
this.followupList = res.data.list; this.followupList = res.data.list;
let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) let commonQueue = JSON.parse(localStorage.getItem('commonQueue'))
commonQueue.forEach(i=>{ commonQueue?.forEach(i=>{
this.followupList.unshift(i) this.followupList.unshift(i)
}) })
}); });

Loading…
Cancel
Save