This commit is contained in:
2025-04-05 23:47:00 +08:00
commit 8001f8eaeb
215 changed files with 14655 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
Component({
properties: {
info: Object,
token: String
},
data: {},
methods: {
order: function() {
if (0 == this.properties.info.stock || 1 != this.properties.info.status) return !1;
wx.navigateTo({
url: "/pages/orderIndex/orderIndex?token=".concat(this.properties.token)
});
}
}
});