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"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
:disabled="scope.row.type == 1"
>修改</el-button
>
<el-button
@ -160,6 +161,7 @@
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
:disabled="scope.row.type == 1"
>删除</el-button
>
</template>
@ -357,7 +359,7 @@ export default {
followupQuery(this.queryParams).then((res) => {
let commonQueue = JSON.parse(localStorage.getItem('commonQueue'))
this.listDat = res.data.list;
commonQueue.forEach(i=>{
commonQueue?.forEach(i=>{
this.listDat.unshift(i)
})
this.total = res.data.total;

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

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

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

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

Loading…
Cancel
Save