feat: 已完成&售后
This commit is contained in:
@@ -104,8 +104,8 @@
|
||||
></up-image>
|
||||
微信登录
|
||||
</view>
|
||||
<view class="login_other_item" @click="aa">
|
||||
<!-- <view v-if="!isIOS" class="login_other_item" @click="alipayOneLogin"> -->
|
||||
<!-- <view class="login_other_item" @click="aa"> -->
|
||||
<view v-if="!isIOS" class="login_other_item" @click="alipayOneLogin">
|
||||
<up-image
|
||||
src="/static/login/ZFB.png"
|
||||
width="44"
|
||||
|
||||
@@ -475,25 +475,28 @@ export default {
|
||||
|
||||
// 删除
|
||||
deleteOrder(item) {
|
||||
console.log("删除", item);
|
||||
console.log("删除", item, this.form.type);
|
||||
this.deleteShow = true;
|
||||
this.deleteInfo = item;
|
||||
},
|
||||
async againDeleteOrder() {
|
||||
let params;
|
||||
if (this.deleteInfo.status === 4) {
|
||||
if (this.form.type === 4 && (this.deleteInfo.status === 4 || this.deleteInfo.status === 5 || this.deleteInfo.status === 6 || this.deleteInfo.status === 7)) {
|
||||
params = {
|
||||
orderId: this.deleteInfo.id,
|
||||
type: 1
|
||||
}
|
||||
}
|
||||
if (this.deleteInfo.status === 7) {
|
||||
if (this.form.type === 5 && this.deleteInfo.status === 7) {
|
||||
params = {
|
||||
orderId: this.deleteInfo.afterId,
|
||||
type: 2
|
||||
}
|
||||
}
|
||||
console.log("删除-1", params);
|
||||
if(!params.orderId){
|
||||
return;
|
||||
}
|
||||
const res = await deleteOrderQuery(params);
|
||||
if (res.bizcode == 100) {
|
||||
this.$refs.uToastRef.show({
|
||||
|
||||
Reference in New Issue
Block a user