diff --git a/src/components/manual-distribution/index.vue b/src/components/manual-distribution/index.vue
index 37231f6cd04388d079ecf285344ff3745628b04c..c56e87a8af8bb366f1fc1e521a88424117f12ea6 100644
--- a/src/components/manual-distribution/index.vue
+++ b/src/components/manual-distribution/index.vue
@@ -4,12 +4,7 @@
-
+
关闭
@@ -61,6 +56,8 @@ const history = computed(() => {
*/
return props.row?.history || null;
});
+
+const is_all = computed(() => props.is_all);
const emits = defineEmits(["update:visible"]);
const form = ref(null);
// 关闭调用
diff --git a/src/page/main/ticket/business-ticket-manage/index.vue b/src/page/main/ticket/business-ticket-manage/index.vue
index 51b44e95edc22ddfb07c144f20c705cad9035f40..07dc68a3b2fbc83235f18d569f7a85cdec7e5476 100644
--- a/src/page/main/ticket/business-ticket-manage/index.vue
+++ b/src/page/main/ticket/business-ticket-manage/index.vue
@@ -231,6 +231,10 @@ let headers = reactive([
fixed: "right",
},
]);
+const history = ref({
+ methods: [],
+ lists: [],
+});
let rows = ref([]);
const selectable = (row, index) => {
return !row.timing_state;
@@ -279,6 +283,26 @@ const active_row = ref(null);
const operation = (row) => {
active_row.value = row;
visible.value = true;
+ const params = {
+ id: row.id,
+ };
+ axios.get("/v1/api/work_order/work_order_manage/details", { params }).then((res) => {
+ if (res.data.code == 200) {
+ let { data } = res.data;
+ if (!data) return;
+ active_row.value.history = {
+ method: data.push_obj.push_method == 3 ? ["1", "2"] : [`${data.push_obj.push_method}`] || [],
+ lists:
+ data.push_obj.user_obj?.map((e) => {
+ return {
+ user_id: e.system_account,
+ user_name: e.user_name,
+ phone: e.phone,
+ };
+ }) || [],
+ };
+ }
+ });
};
// 编辑调用
const Edit = (row) => {