Browse Source

fixes sonar provide issus

devlop
邓雄飞 4 years ago
parent
commit
7bf589cc2f
3 changed files with 20 additions and 29 deletions
  1. 1
      pages/follow-up-records/index.vue
  2. 47
      pages/order-detail/index.vue
  3. 1
      pages/store-settings/index.vue

1
pages/follow-up-records/index.vue

@ -104,7 +104,6 @@ export default {
return new Promise((resolve, reject) => {
getVisitRecordList({ ...this.params, ...this.pagination })
.then((res) => {
// console.log('', res)
if (res) {
if (res.current == 1) {
this.list = res.records

47
pages/order-detail/index.vue

@ -470,8 +470,8 @@ export default {
if (res.confirm) {
supplierDelivery({
supplierOrderId: this.orderInfo.orderId
}).then((res) => {
if (res) {
}).then((success) => {
if (success) {
uni.showToast({
title: '确认送货成功',
icon: 'success',
@ -521,8 +521,8 @@ export default {
if (res.confirm) {
supplierConfirmRepay({
supplierOrderId: this.orderInfo.orderId
}).then((res) => {
if (res) {
}).then((susses) => {
if (susses) {
uni.showToast({
title: '确认还款成功',
icon: 'success',
@ -638,29 +638,6 @@ export default {
}
}
}
.button {
height: 88rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 30rpx;
border-radius: 10rpx;
}
.button_cancel {
width: 270rpx;
border: 1px solid #979797;
}
.button_confirm {
width: 400rpx;
background-color: #007aff;
color: #fff;
}
.button_contact {
width: 220rpx;
border: 1px solid #007aff;
color: #007aff;
margin: 0 14rpx;
}
.default-upload {
width: 120rpx;
height: 120rpx;
@ -726,6 +703,7 @@ export default {
}
}
.button {
height: 88rpx;
flex-grow: 0;
flex-shrink: 0;
display: flex;
@ -748,4 +726,19 @@ export default {
height: 88rpx;
background: #007aff;
}
.button_cancel {
width: 270rpx;
border: 1px solid #979797;
}
.button_confirm {
width: 400rpx;
background-color: #007aff;
color: #fff;
}
.button_contact {
width: 220rpx;
border: 1px solid #007aff;
color: #007aff;
margin: 0 14rpx;
}
</style>

1
pages/store-settings/index.vue

@ -194,7 +194,6 @@ export default {
background-color: #ffffff;
}
.store-setting-name {
// font-size: 28rpx;
color: #000000;
letter-spacing: 0;
font-weight: 500;

Loading…
Cancel
Save