tapd相关修改更新

This commit is contained in:
GaoHao
2025-03-19 18:19:34 +08:00
parent 994cf8bf2b
commit f01bc839f7
53 changed files with 1084 additions and 1032 deletions

View File

@@ -23,17 +23,11 @@
<view :style="{color:item.waitAmount>0?' #F02C45;':''}">
{{item.waitAmount}}
</view>
<view class="">
剩余支付金额
</view>
<view class=""> 剩余支付金额 </view>
</view>
<view class="">
<view style="color: #318AFE;">
{{item.waitCount}}未付
</view>
<view class="">
待付款笔数
</view>
<view style="color: #318AFE;"> {{item.waitCount}}未付 </view>
<view class=""> 待付款笔数 </view>
</view>
</view>
<view class="df">
@@ -66,6 +60,8 @@
<up-button type="primary" style="background-color: #318AFE;color: #fff;" @tap="toUrl('PAGES_ADD_SUPPLIER')"
:plain="true" text="添加供应商"></up-button>
</view>
</template>
<script setup>
@@ -98,10 +94,21 @@
* 删除供应商
*/
let deleteEvent = (id) => {
delVendor(id).then(() => {
getList()
})
uni.showModal({
title: '提示',
content: '是否确认删除此供应商?',
success: res => {
if(res.confirm){
delVendor(id).then(() => {
getList()
})
}
},
fail: () => {},
complete: () => {}
});
}
let toUrl = (url, d) => {
go.to(url, d)
}