Przeglądaj źródła

采购预留处理-删除部分无用注释代码,修改页面中数字框

002390 1 rok temu
rodzic
commit
830ac6a99d
1 zmienionych plików z 11 dodań i 11 usunięć
  1. 11 11
      src/views/purchase/ownership/columns.js

+ 11 - 11
src/views/purchase/ownership/columns.js

@@ -83,64 +83,64 @@ export default function useColumns() {
       item: { key: "source", title: "单据来源" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "puCode", title: "集采编号" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "createTime", title: "创建时间" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "customerName", title: "客户" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "materialCode", title: "物料编码" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "materialName", title: "物料" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "usedQty", title: "已用量" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "reservedQty", title: "预留数量" },
       attr: {
         is: "el-input",
-        readonly: true,
+        disabled: true,
       }
     },
     {
       item: { key: "qty", title: "可用量" },
       attr: {
-        is: "el-input",
-        type: "number",
-        min: "0",
+        is: "el-input-number",
+        min: 0,
+        controlsPosition: "right",
       }
     },
   ]