|
|
|
@ -354,14 +354,16 @@ |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<el-form :inline="true" label-position="top" :model="currentRow"> |
|
|
|
<el-form-item :label="$t('mrb.field.buyerBi')"> |
|
|
|
<el-input :value="currentRow.buyer || ''" disabled style="width: 120px"></el-input> |
|
|
|
<el-input :value="currentRow.buyerName || ''" disabled style="width: 281px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('mrb.field.plannerBi')"> |
|
|
|
<el-input :value="currentRow.planner || ''" disabled style="width: 120px"></el-input> |
|
|
|
<el-input :value="currentRow.plannerName || ''" disabled style="width: 281px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<template v-if="showBuyerPlannerFields"> |
|
|
|
<el-form-item :label="$t('mrb.field.buyerBi')"> |
|
|
|
<el-input :value="currentRow.buyer || ''" disabled style="width: 120px"></el-input> |
|
|
|
<el-input :value="currentRow.buyerName || ''" disabled style="width: 281px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('mrb.field.plannerBi')"> |
|
|
|
<el-input :value="currentRow.planner || ''" disabled style="width: 120px"></el-input> |
|
|
|
<el-input :value="currentRow.plannerName || ''" disabled style="width: 281px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</template> |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<el-form :inline="true" label-position="top" :model="currentRow"> |
|
|
|
@ -780,14 +782,14 @@ |
|
|
|
<div class="mrb-dialog-tab-pane"> |
|
|
|
<el-form :model="formData" label-position="top"> |
|
|
|
<el-row :gutter="12"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-col :span="showBuyerPlannerFields ? 6 : 12"> |
|
|
|
<el-form-item :label="$t('mrb.field.issueScarBi')"> |
|
|
|
<el-select v-model="formData.issueScar" clearable style="width: 100%" :disabled="formReadOnly"> |
|
|
|
<el-option v-for="item in issueScarOptions" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col v-if="showBuyerPlannerFields" :span="12"> |
|
|
|
<el-form-item> |
|
|
|
<span slot="label" class="click-label" @click="getBaseList(chooseTagNo.buyer, 6)"><a herf="#">{{ $t('mrb.field.buyerBi') }}</a></span> |
|
|
|
<el-input v-model="formData.buyer" :disabled="formReadOnly" @blur="buyerBlur(chooseTagNo.buyer)" style="width: 120px" /> |
|
|
|
@ -797,7 +799,7 @@ |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-row :gutter="12"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-col :span="showBuyerPlannerFields ? 6 : 12"> |
|
|
|
<el-form-item :label="$t('mrb.field.mrbConclusionBi')"> |
|
|
|
<dict-data-select |
|
|
|
v-model="formData.mrbConclusion" |
|
|
|
@ -807,7 +809,7 @@ |
|
|
|
:disabled="formReadOnly" /> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col v-if="showBuyerPlannerFields" :span="12"> |
|
|
|
<el-form-item> |
|
|
|
<span slot="label" class="click-label" @click="getBaseList(chooseTagNo.planner, 7)"><a herf="#">{{ $t('mrb.field.plannerBi') }}</a></span> |
|
|
|
<el-input v-model="formData.planner" :disabled="formReadOnly" @blur="plannerBlur(chooseTagNo.planner)" style="width: 120px" /> |
|
|
|
@ -1454,7 +1456,8 @@ export default { |
|
|
|
authSubmit: true, |
|
|
|
authReject: true, |
|
|
|
authClose: true, |
|
|
|
authExport: true |
|
|
|
authExport: true, |
|
|
|
showBuyerPlannerFields: false |
|
|
|
} |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
|