|
@@ -30,9 +30,12 @@
|
|
<el-button type="text" @click="adds(props.scope.row)"
|
|
<el-button type="text" @click="adds(props.scope.row)"
|
|
>订单收费信息</el-button
|
|
>订单收费信息</el-button
|
|
>
|
|
>
|
|
- <el-button type="text" @click="del(props.scope.row)"
|
|
|
|
|
|
+ <!-- <el-button
|
|
|
|
+ type="text"
|
|
|
|
+ :disabled="props.scope.row.goodsPayStatus !== 1"
|
|
|
|
+ @click="del(props.scope.row)"
|
|
>删除订单</el-button
|
|
>删除订单</el-button
|
|
- >
|
|
|
|
|
|
+ > -->
|
|
</template>
|
|
</template>
|
|
</table-list>
|
|
</table-list>
|
|
<pagination
|
|
<pagination
|
|
@@ -384,7 +387,7 @@ export default {
|
|
item.refundStatus !== 1 &&
|
|
item.refundStatus !== 1 &&
|
|
item.refundStatus !== 2 &&
|
|
item.refundStatus !== 2 &&
|
|
item.goodsPayStatus !== 3 &&
|
|
item.goodsPayStatus !== 3 &&
|
|
- item.goodsPayStatus !== 4 &&
|
|
|
|
|
|
+ item.goodsPayStatus !== 4 &&
|
|
item.orderGoodsStatus !== -1
|
|
item.orderGoodsStatus !== -1
|
|
);
|
|
);
|
|
});
|
|
});
|
|
@@ -567,7 +570,9 @@ export default {
|
|
init() {
|
|
init() {
|
|
this.search(2);
|
|
this.search(2);
|
|
},
|
|
},
|
|
- del(v) {},
|
|
|
|
|
|
+ del(v) {
|
|
|
|
+ console.log(v);
|
|
|
|
+ },
|
|
handleSizeChange(v) {
|
|
handleSizeChange(v) {
|
|
this.formData.pageSize = v;
|
|
this.formData.pageSize = v;
|
|
this.formData.pageNum = 1;
|
|
this.formData.pageNum = 1;
|