cz 1 year ago
parent
commit
7036445af4

+ 14 - 8
src/views/WDLY/purchaseManage/payment/index.vue

@@ -212,16 +212,22 @@
             placement="top"
             v-for="(activity, index) in activities"
             :key="index"
-            :timestamp="activity.payUserName"
           >
-            <el-button
-              type="primary"
-              plain
-              style="float: right"
-              @click="handleGetDtl(activity)"
-              >查看详情</el-button
+            <div
+              style="
+                display: flex;
+                justify-content: space-between;
+                align-items: center;
+              "
             >
-            <div>
+              <div style="color: #909399">
+                {{ activity.payUserName }}
+              </div>
+              <el-button type="primary" plain @click="handleGetDtl(activity)"
+                >查看详情</el-button
+              >
+            </div>
+            <div style="margin-top: 5px">
               付款账号:
               {{ dictValueLabel(activity.payAccount, accountData) }}
             </div>

+ 1 - 1
src/views/WDLY/purchaseManage/updatePurchaseData/index.vue

@@ -2040,7 +2040,7 @@ const submitUpdate = () => {
       preferential: data.preferential,
     };
     data.victoriatouristJson = JSON.stringify(victoriatouristJson);
-    proxy.post("/purchase/edit", data).then((res) => {
+    proxy.post("/purchase/purchaseCorrect", data).then((res) => {
       ElMessage({
         message: `操作成功`,
         type: "success",