| | |
| | | <template> |
| | | <zt-dialog ref="dialog" column="3" :title="title" :stepMarker="stepMarker" @confirm="formSubmit"> |
| | | <el-form ref="dataForm" style="padding-top: 0" :inline="true" :disabled="dataForm.disabled" :model="dataForm" |
| | | label-width="120px" class="warehouseFormAuto"> |
| | | label-width="120px" class="contractFormAuto"> |
| | | <div> |
| | | <el-form-item label-width="60px" label="编号:" style="width:100%;margin-bottom: -5px"> |
| | | <span>{{dataForm.contractReview.code || '编号自动生成'}}</span> |
| | | </el-form-item> |
| | | </div> |
| | | <div style="border: 1px solid rgba(0,0,0,.2);width: 99%"> |
| | | <div style="border-bottom: 1px solid rgba(0,0,0,.2);" class="warehouseContentWidth"> |
| | | <div style="border-bottom: 1px solid rgba(0,0,0,.2);" class="contractContentWidth"> |
| | | <el-form-item class="marginTopAndMarginBottom" label="客户名称" style="width: 49%"> |
| | | <el-input v-model="dataForm.testAgencyInfo.agencyName" placeholder="请输入客户名称"></el-input> |
| | | </el-form-item> |
| | | <el-form-item class="marginTopAndMarginBottom" label="联系电话" style="width: 49%"> |
| | | <el-input v-model="dataForm.testAgencyInfo.labContactNum" placeholder="请输入联系电话"></el-input> |
| | | </el-form-item> |
| | | <el-form-item class="marginTopAndMarginBottom reviewLeft" style="width: 49%"> |
| | | <zt-dict v-model="dataForm.contractReview.reviewType" :radio="true" dict="review_type"></zt-dict> |
| | | <el-form-item label-width="60px" label="原委托单编号:" style="width:100%;margin-bottom: -5px"> |
| | | </el-form-item> |
| | | <el-form-item label-width="160px" class="lastChild" label="原委托单编号:" style="width: 49%"> |
| | | <span>{{dataForm.contractReview.orderCode}}</span> |
| | | </el-form-item> |
| | | </div> |
| | |
| | | <span v-html="indexFormat(scope.$index)"></span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="item" width="200" label="配置项名称"> |
| | | <el-table-column prop="item" min-width="400" label="配置项名称"> |
| | | <template v-slot="{ row }"> |
| | | <el-input v-model="row.item" placeholder="评审项"></el-input> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="result" label="密级" width="100" align="center"> |
| | | <el-table-column prop="result" label="密级" width="180" align="center"> |
| | | <template v-slot="{ row }"> |
| | | <zt-dict v-model="row.result" placeholder="评审结果" dict="tristate1"></zt-dict> |
| | | </template> |
| | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div class="el-flexManageDialog el-border-bottom"> |
| | | <div class="DFormWidth DAlign DHold"> |
| | | 评审记录 |
| | | </div> |
| | | <div style="width: calc(100% - 120px)" class="el-border-left"> |
| | | <el-form-item class="el-wt-form-item-margin" label-width="20px" style="width: 85%"> |
| | | <el-form-item class="el-CMTextarea" label-width="20px" style="width: 100%;padding: 5px"> |
| | | <el-input type="textarea" :rows="2" placeholder="请输入内容" |
| | | v-model="dataForm.contractReview.reviewRecord"></el-input> |
| | | </el-form-item> |
| | |
| | | </el-form-item> |
| | | </div> |
| | | </div> |
| | | <div class="el-flexManageDialog"> |
| | | <div class="el-flexManageDialog el-border-bottom"> |
| | | <div class="DFormWidth DAlign DHold"> |
| | | 分包 |
| | | </div> |
| | |
| | | </el-form-item> |
| | | </div> |
| | | </div> |
| | | <div class="el-flexManageDialog"> |
| | | <div class="el-flexManageDialog el-border-bottom"> |
| | | <div class="DFormWidth DAlign DHold"> |
| | | 评审结论 |
| | | </div> |
| | |
| | | <span>{{dataForm.contractReview.technicalDirector}}</span> |
| | | </el-form-item> |
| | | <el-form-item label="日期:" style="width: 48%"> |
| | | <span>{{dataForm.contractReview.reviewDate}}</span> |
| | | {{ dataForm.contractReview.reviewDate | filterTime('YYYY年MM月DD日') }} |
| | | </el-form-item> |
| | | </div> |
| | | </div> |
| | |
| | | <el-input type="textarea" :rows="2" placeholder="请输入内容" |
| | | v-model="dataForm.contractReview.reviewPanelMember"></el-input> |
| | | </el-form-item> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <add-or-update-check ref="addOrUpdate" @recall="setCheckId"/> |
| | |
| | | } |
| | | } |
| | | </script> |
| | | <style> |
| | | .ManageFormAuto { |
| | | width: 70%; |
| | | margin: 0 auto; |
| | | } |
| | | |
| | | .confirmDAuto { |
| | | border: 1px solid; |
| | | } |
| | | |
| | | .el-flexManageDialog { |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | |
| | | .DFormWidth { |
| | | width: 120px; |
| | | } |
| | | |
| | | .DAlign { |
| | | text-align: center; |
| | | } |
| | | |
| | | .DManageForm { |
| | | /*border-left: 1px solid;*/ |
| | | width: 100%; |
| | | } |
| | | |
| | | .DManageForm > .el-form-item > .el-form-item__content { |
| | | width: calc(100% - 120px); |
| | | } |
| | | |
| | | .el-form-item.el-CMTextarea > .el-form-item__content { |
| | | width: 100%; |
| | | } |
| | | |
| | | .el-form .el-form-item.el-wt-form-item-margin { |
| | | margin-left: 120px; |
| | | } |
| | | |
| | | .el-form-border { |
| | | border-top: 1px solid; |
| | | border-bottom: 1px solid; |
| | | } |
| | | |
| | | .el-margin-top-bot { |
| | | margin-top: 5px; |
| | | margin-bottom: 5px; |
| | | } |
| | | |
| | | .zt .el-table.el-software th { |
| | | background: transparent; |
| | | } |
| | | |
| | | .zt .el-table.el-software th > .cell { |
| | | font-weight: 500; |
| | | } |
| | | |
| | | .DHold { |
| | | font-weight: 600; |
| | | } |
| | | |
| | | .zt .el-table.el-software { |
| | | font-size: 14px; |
| | | } |
| | | |
| | | .contractContentWidth > .el-form-item > .el-form-item__content { |
| | | width: calc(100% - 120px); |
| | | } |
| | | |
| | | .contractContentWidth > .el-form-item.reviewLeft > .el-form-item__content { |
| | | margin-left: 17%; |
| | | } |
| | | |
| | | .contractContentWidth > .el-form-item.lastChild > .el-form-item__content { |
| | | width: calc(100% - 160px); |
| | | } |
| | | |
| | | .contractFormAuto .marginTopAndMarginBottom { |
| | | margin-top: 10px !important; |
| | | margin-bottom: 0 !important; |
| | | } |
| | | |
| | | .contractFormAuto .marginTopAndMarginBottom2 { |
| | | margin-top: -10px !important; |
| | | margin-bottom: 0 !important; |
| | | } |
| | | </style> |