|
|
@@ -919,7 +919,10 @@ export default {
|
|
|
getHolds()
|
|
|
.then(() => {
|
|
|
console.log(_this.info.type === 'PICTURE');
|
|
|
- if (_this.info.holdDays === 0 && _this.info.source === 'OFFICIAL') {
|
|
|
+ if (
|
|
|
+ (_this.info.holdDays === 0 || _this.info.holdDays === '0') &&
|
|
|
+ _this.info.source === 'OFFICIAL'
|
|
|
+ ) {
|
|
|
return _this.$http.get('/sysConfig/get/OFFICIAL_CONSIGNMENT').then(res => {
|
|
|
holdDays = Number(res.value);
|
|
|
return Promise.resolve();
|