gaoluyang
2 天以前 025e46e11cb2962fd7692adfa401333758cc779b
src/pages/procurementManagement/paymentEntry/index.vue
@@ -22,7 +22,7 @@
         <!-- 筛选开关 -->
         <view class="switch-row">
            <text class="switch-label">不显示待付款为0</text>
            <van-switch v-model="searchForm.status" @change="getList" size="18"/>
            <u-switch v-model="searchForm.status" @change="getList" active-color="#2979ff" inactive-color="#e5e5e5"/>
         </view>
      </view>
@@ -70,7 +70,7 @@
               
               <!-- 操作按钮 -->
               <view class="action-buttons">
                  <van-button
                  <u-button
                     type="primary"
                     size="small"
                     class="action-btn"
@@ -78,7 +78,7 @@
                     @click="openForm('add', item)"
                  >
                     新增付款
                  </van-button>
                  </u-button>
               </view>
            </view>
         </view>
@@ -94,7 +94,13 @@
<script setup>
import { ref } from 'vue'
import useUserStore from '@/store/modules/user'
import { showToast } from 'vant'
// 替换 toast 方法
const showToast = (message) => {
  uni.showToast({
    title: message,
    icon: 'none'
  })
}
import {onShow} from "@dcloudio/uni-app";
import {invoiceListPage} from "@/api/procurementManagement/procurementInvoiceLedger";