|
|
@@ -385,11 +385,14 @@ export default {
|
|
|
possessId: this.id,
|
|
|
typeId: 1
|
|
|
};
|
|
|
- this.$api.systemuserowner(data).then(res => {
|
|
|
- if (res.data.code === 200) {
|
|
|
- self.payStatus = res.data.data.payStatus;
|
|
|
- }
|
|
|
- });
|
|
|
+ if (this.$method.isLogin()) {
|
|
|
+ this.$api.systemuserowner(data).then(res => {
|
|
|
+ if (res.data.code === 200) {
|
|
|
+ self.payStatus = res.data.data.payStatus;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
},
|
|
|
//提交订单
|
|
|
getorder() {
|