@yoooloo42/bean 1.0.35 → 1.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -4176,10 +4176,25 @@ var GBT = {
4176
4176
  };
4177
4177
 
4178
4178
  var busicode = {
4179
- method: [
4179
+ // 计价方法
4180
+ pricingMethod: [
4180
4181
  {"code": "0", "text": "日结"},
4181
4182
  {"code": "1", "text": "小时"},
4182
4183
  {"code": "2", "text": "月结"}
4184
+ ],
4185
+ // 客房状态
4186
+ roomStatus: [
4187
+ {code: "0", text: "维修"},
4188
+ {code: "1", text: "空房"},
4189
+ {code: "2", text: "入住"},
4190
+ {code: "3", text: "脏房"},
4191
+ {code: "4", text: "已打扫"}
4192
+ ],
4193
+ // 订单状态
4194
+ businessStatus: [
4195
+ {code: "0", text: "预订"},
4196
+ {code: "1", text: "入住"},
4197
+ {code: "2", text: "离开"}
4183
4198
  ]
4184
4199
  };
4185
4200