|
@@ -357,6 +357,28 @@
|
|
|
<input type="date" class="form-control" value="" id="bid-start-date">
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="col-12 mb-2">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-prepend">
|
|
|
+ <span class="input-group-text" >招标方式</span>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="bid-type">
|
|
|
+ <option>公开招标</option>
|
|
|
+ <option>邀请招标</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-12 mb-2">
|
|
|
+ <div class="input-group input-group-sm">
|
|
|
+ <div class="input-group-prepend">
|
|
|
+ <span class="input-group-text" style="width:90px">合同计价方式</span>
|
|
|
+ </div>
|
|
|
+ <select class="form-control" id="deal-calc-type">
|
|
|
+ <option>总价合同</option>
|
|
|
+ <option>单价合同</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -839,6 +861,8 @@
|
|
|
$('#control-price').val(property.bid_info.controlPrice);
|
|
|
$('#bid-price').val(property.bid_info.bidPrice);
|
|
|
$('#bid-start-date').val(property.bid_info.bidStartDate);
|
|
|
+ $('#bid-type').find("option:contains('" + property.bid_info.bidType + "')").attr("selected",true);
|
|
|
+ $('#deal-calc-type').find("option:contains('" + property.bid_info.dealCalcType + "')").attr("selected",true);
|
|
|
}
|
|
|
|
|
|
$('#bd-set-1').on('show.bs.modal', function () {
|
|
@@ -898,6 +922,8 @@
|
|
|
controlPrice: _.toNumber($('#control-price').val()),
|
|
|
bidPrice: _.toNumber($('#bid-price').val()),
|
|
|
bidStartDate: $('#bid-start-date').val(),
|
|
|
+ bidType: $('#bid-type').find("option:selected").text(),
|
|
|
+ dealCalcType: $('#deal-calc-type').find("option:selected").text(),
|
|
|
}
|
|
|
};
|
|
|
const tenderId = window.location.pathname.split('/')[2];
|