Procházet zdrojové kódy

fix:隐藏全选按钮

snow před 2 roky
rodič
revize
11dee4cf65

+ 2 - 2
src/views/purchase/orderRecord/config/content.config.ts

@@ -1,8 +1,8 @@
 import { ContentConfig } from "/@/components/PageContent";
 import { httpList, httpDel } from "/@/api/purchase/orderRecord";
 
-import dayjs from "dayjs";
 import { h } from "vue";
+import dayjs from "dayjs";
 import { ElTag } from "element-plus";
 import { statusOptions } from "./configs";
 
@@ -98,7 +98,7 @@ const columns = [
   {
     label: "操作",
     fixed: "right",
-    width: 100,
+    width: 60,
     slot: "operation"
   }
 ];

+ 8 - 0
src/views/purchase/purchPay/component/create-payment/add-order-modal.vue

@@ -80,3 +80,11 @@ onMounted(() => requestPaymentList());
     </div>
   </el-dialog>
 </template>
+
+<style lang="scss" scoped>
+:deep(.el-table__header) {
+  .el-checkbox {
+    display: none;
+  }
+}
+</style>

+ 1 - 6
src/views/purchase/ticketReturn/detail.vue

@@ -3,6 +3,7 @@ import { computed, onMounted, ref } from "vue";
 import { useRoute, useRouter } from "vue-router";
 import { httpStatus, httpInfo } from "/@/api/purchase/ticketReturn";
 import { useResponseHandle } from "/@/hooks";
+
 import TicketDetail from "./components/ticket-detail/index.vue";
 import FinancialAudit from "./components/approval-process/financial-audit.vue";
 import Authentication from "./components/approval-process/authentication.vue";
@@ -47,12 +48,6 @@ async function requestChangeInvStatus(otherParams: any) {
   });
 }
 
-// 测试状态;
-// httpStatus({
-//   hpNo: hpNo.value,
-//   status: "3"
-// });
-
 //初始化采购回票详情数据
 onMounted(() => requesetInvDetail());
 </script>

+ 1 - 0
src/views/purchase/ticketReturn/index.vue

@@ -46,6 +46,7 @@ function toDetail({ hpNo }) {
       @search-btn-click="handleSearchClick"
       @reset-btn-click="handleResetClick"
     />
+
     <PageContent
       ref="pageContentRef"
       @preview-btn-click="toDetail"