|
@@ -364,14 +364,15 @@
|
|
|
function getList() {
|
|
|
loading.value = true;
|
|
|
listOnceWorkOrder(queryParams.value).then((response) => {
|
|
|
+ list.value = [];
|
|
|
list.value = response.rows;
|
|
|
total.value = response.total;
|
|
|
loading.value = false;
|
|
|
+ entrustSourceApi().then((res)=>{
|
|
|
+ entrustSource.value = res.data;
|
|
|
+ console.log(res.data)
|
|
|
+ })
|
|
|
});
|
|
|
- // entrustSourceApi().then((res)=>{
|
|
|
- // entrustSource.value = res.data;
|
|
|
- // console.log(res.data)
|
|
|
- // })
|
|
|
}
|
|
|
|
|
|
/** 是否为自己负责 */
|