禅道bug修复
This commit is contained in:
parent
72dd689bdc
commit
b17e2b03eb
|
|
@ -21,12 +21,6 @@
|
|||
"icon": "fa fa-cog",
|
||||
"target": "_self",
|
||||
"child": [
|
||||
{
|
||||
"title": "标段工程",
|
||||
"href": "page/system/bid_pro_list.html",
|
||||
"icon": "fa fa-list-ul",
|
||||
"target": "_self"
|
||||
},
|
||||
{
|
||||
"title": "安全用品物资类型",
|
||||
"href": "page/aq_basic/type_list.html",
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ function getCheckStatus(statusType, status) {
|
|||
if(statusType === '0' && status === '0'){
|
||||
return "<span style='color:#FF9900;margin:0 5px 0 5px;font-size:16px'>●</span>已撤回";
|
||||
}
|
||||
if (statusType === '1') {
|
||||
if (statusType === '1' && status != '3') {
|
||||
return "<span style='color:#19BE6B;margin:0 5px 0 5px;font-size:16px;'>●</span>审核通过";
|
||||
} else if (statusType === '2') {
|
||||
company = "分公司";
|
||||
|
|
|
|||
|
|
@ -14,9 +14,11 @@ function setParams(params) {
|
|||
if (data.value === '2') { // 通过
|
||||
$('#auditRemark').removeAttr('lay-verify');
|
||||
$('#auditRemarksLabel').removeClass('required');
|
||||
$('#auditRemark').val('审核通过'); // 自动填充审核通过意见
|
||||
} else if (data.value === '3') { // 不通过
|
||||
$('#auditRemark').attr('lay-verify', 'required');
|
||||
$('#auditRemarksLabel').addClass('required');
|
||||
$('#auditRemark').val('审核不通过'); // 自动填充审核不通过意见
|
||||
}
|
||||
});
|
||||
form.render();
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ function initTable() {
|
|||
},
|
||||
{
|
||||
field: "proName",
|
||||
width: '9%',
|
||||
width: '8%',
|
||||
title: "工程名称",
|
||||
unresize: true,
|
||||
align: "center",
|
||||
|
|
@ -166,7 +166,7 @@ function initTable() {
|
|||
},
|
||||
{
|
||||
field: "needNum",
|
||||
width: '6%',
|
||||
width: '7%',
|
||||
title: "需用量",
|
||||
unresize: true,
|
||||
align: "center",
|
||||
|
|
@ -177,7 +177,7 @@ function initTable() {
|
|||
},
|
||||
{
|
||||
field: "totalCg",
|
||||
width: '6%',
|
||||
width: '7%',
|
||||
title: "采购量",
|
||||
unresize: true,
|
||||
align: "center",
|
||||
|
|
@ -189,7 +189,7 @@ function initTable() {
|
|||
{
|
||||
field: "totalLk",
|
||||
title: "利库量",
|
||||
width: '6%',
|
||||
width: '7%',
|
||||
unresize: true,
|
||||
align: "center",
|
||||
sort: true,
|
||||
|
|
@ -203,7 +203,7 @@ function initTable() {
|
|||
},
|
||||
{
|
||||
field: "price",
|
||||
width: '6%',
|
||||
width: '5%',
|
||||
title: "单价",
|
||||
unresize: true,
|
||||
align: "center",
|
||||
|
|
@ -229,7 +229,7 @@ function initTable() {
|
|||
},
|
||||
{
|
||||
field: "totalPrice",
|
||||
width: '6%',
|
||||
width: '5%',
|
||||
title: "总价",
|
||||
unresize: true,
|
||||
align: "center",
|
||||
|
|
|
|||
|
|
@ -125,7 +125,6 @@
|
|||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
|
|
|||
Loading…
Reference in New Issue