|
|
@@ -187,8 +187,8 @@ export default {
|
|
|
return
|
|
|
} else {
|
|
|
Dialog.confirm({
|
|
|
- title: '有藏品已售罄,无法购买!',
|
|
|
- confirmButtonText: '一键删除',
|
|
|
+ title: '确认将这' + this.totalSettlement + '个藏品删除?',
|
|
|
+ confirmButtonText: '删除',
|
|
|
cancelButtonText: '再想想',
|
|
|
confirmButtonColor: '#FF4F50',
|
|
|
cancelButtonColor: '#626366'
|
|
|
@@ -197,6 +197,11 @@ export default {
|
|
|
}).catch(() => { })
|
|
|
}
|
|
|
},
|
|
|
+ pad(n, width, z) {
|
|
|
+ z = z || '0';
|
|
|
+ n = n + '';
|
|
|
+ return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
|
|
|
+ },
|
|
|
getList(isFirst = false) {
|
|
|
if (isFirst) {
|
|
|
this.page = 0;
|
|
|
@@ -245,6 +250,9 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
+/deep/ .van-dialog__header{
|
|
|
+ padding-top: 24px !important;
|
|
|
+}
|
|
|
.shopping_cart {
|
|
|
background: #000000;
|
|
|
|