ZN
3 天以前 4f8ccd4b18baa9301c2e389bc0e53d499be54802
src/views/customerService/feedbackRegistration/index.vue
@@ -198,13 +198,12 @@
    dataType: "tag",
    
    formatData: (params) => {
      if (params === 1) {
        return "待处理";
      } else if (params === 2) {
        return "已处理";
      } else {
        return null;
      if (params) {
        let part = String(params)
        const item = workOrderStatusOptions.value.find(item => item.value === part);
        return item?.label || params;
      }
      return null;
    },
    formatType: (params) => {
      if (params === 1) {
@@ -300,6 +299,8 @@
  Object.keys(searchForm.value).forEach(key => {
    searchForm.value[key] = ""
  })
  page.current = 1;
  getList();
}
// 表格选择数据
const handleSelectionChange = (selection) => {