Selaa lähdekoodia

打款页面优化

lxf 1 vuosi sitten
vanhempi
commit
487bfba78b
1 muutettua tiedostoa jossa 4 lisäystä ja 13 poistoa
  1. 4 13
      src/views/finance/fundManage/accountPayment/index.vue

+ 4 - 13
src/views/finance/fundManage/accountPayment/index.vue

@@ -263,9 +263,10 @@ const formConfig = computed(() => {
     },
     {
       type: "input",
-      prop: "remark",
+      prop: "paymentRemark",
       label: "摘要",
       disabled: true,
+      itemType: "textarea",
     },
     {
       type: "title",
@@ -300,18 +301,8 @@ const formConfig = computed(() => {
       type: "input",
       prop: "remark",
       label: "摘要",
+      itemType: "textarea",
     },
-    // {
-    // 	type: 'upload',
-    // 	prop: 'upload',
-    // 	label: '摘要',
-    // },
-    // {
-    // 	type: 'slot',
-    // 	slotName: 'productPic',
-    // 	prop: 'fileList',
-    // 	label: '上传附件',
-    // },
   ];
 });
 const newPassword = () => {
@@ -433,7 +424,7 @@ const getDtl = (row) => {
   modalType.value = "edit";
   proxy.post("/accountPayment/detail", { id: row.id }).then((res) => {
     formData.data = res;
-    formData.data.expensesTime = moment().format("yyyy-MM-DD HH:mm:ss")
+    formData.data.expensesTime = moment().format("yyyy-MM-DD HH:mm:ss");
     dialogVisible.value = true;
   });
 };