tapd相关修改更新
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user