@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.esm.js CHANGED
@@ -4172,10 +4172,25 @@ var GBT = {
4172
4172
  };
4173
4173
 
4174
4174
  var busicode = {
4175
- method: [
4175
+ // 计价方法
4176
+ pricingMethod: [
4176
4177
  {"code": "0", "text": "日结"},
4177
4178
  {"code": "1", "text": "小时"},
4178
4179
  {"code": "2", "text": "月结"}
4180
+ ],
4181
+ // 客房状态
4182
+ roomStatus: [
4183
+ {code: "0", text: "维修"},
4184
+ {code: "1", text: "空房"},
4185
+ {code: "2", text: "入住"},
4186
+ {code: "3", text: "脏房"},
4187
+ {code: "4", text: "已打扫"}
4188
+ ],
4189
+ // 订单状态
4190
+ businessStatus: [
4191
+ {code: "0", text: "预订"},
4192
+ {code: "1", text: "入住"},
4193
+ {code: "2", text: "离开"}
4179
4194
  ]
4180
4195
  };
4181
4196