|
|
@ -50,8 +50,8 @@ |
|
|
|
]" |
|
|
|
> |
|
|
|
{{ |
|
|
|
!k.is_valid?'已售': |
|
|
|
k.is_take_up?'已占用':`¥${k.price || 0}` |
|
|
|
k.is_take_up?'已占用': |
|
|
|
!k.is_valid?'已售':`¥${k.price || 0}` |
|
|
|
}} |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -185,12 +185,12 @@ export default { |
|
|
|
let { venueList } = this; |
|
|
|
let _venueList = venueList.slice(); |
|
|
|
let _curTarget = { ..._venueList[i].items[j] }; |
|
|
|
if(!_curTarget.is_valid)return; |
|
|
|
if(_curTarget.is_take_up){ |
|
|
|
let _str = `操作人:${_curTarget.operator || '-'},收取金额: ${_curTarget.price || 0}\n原因: ${_curTarget.take_up_reason || '-'}`; |
|
|
|
util.showNone(_str) |
|
|
|
return |
|
|
|
} |
|
|
|
if(!_curTarget.is_valid)return; |
|
|
|
_venueList[i].items[j]._isSelect = !_curTarget._isSelect; |
|
|
|
let _ctnList = []; // 提示用, 连场列表 |
|
|
|
// 连场判断, 需要循环当前列表 |
|
|
|