From 2df883fcbed176f83d8d144fd007e7f72fcb54d6 Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期四, 01 二月 2024 17:21:24 +0800 Subject: [PATCH] 修改 --- web/src/views/modules/itemCirculatOrder/ItemCirculatOrder-AddOrUpdate.vue | 634 ++++++++++++++++++++++++++++++++------------------------ 1 files changed, 362 insertions(+), 272 deletions(-) diff --git a/web/src/views/modules/itemCirculatOrder/ItemCirculatOrder-AddOrUpdate.vue b/web/src/views/modules/itemCirculatOrder/ItemCirculatOrder-AddOrUpdate.vue index 61b4afb..f580989 100644 --- a/web/src/views/modules/itemCirculatOrder/ItemCirculatOrder-AddOrUpdate.vue +++ b/web/src/views/modules/itemCirculatOrder/ItemCirculatOrder-AddOrUpdate.vue @@ -1,266 +1,286 @@ <template> - <zt-dialog ref="dialog" column="3" :title="title" :stepMarker="stepMarker" @confirm="formSubmit"> - <el-form :model="dataForm" :inline="true" ref="dataForm" style="padding-top: 0" :disabled="dataForm.disabled" - label-width="120px" class="circulationFormAuto"> - <div> - <el-form-item label-width="60px" label="缂栧彿:" style="width:100%;margin-bottom: -5px"> - <span>{{dataForm.circulatOrder.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="circulationContentWidth"> - <el-form-item class="marginTopAndMarginBottom" label="涓撲笟瀹為獙瀹�" style="width: 32%"> - <el-input v-model="dataForm.testAgencyInfo.agencyName" placeholder="涓撲笟瀹為獙瀹�"></el-input> - </el-form-item> - <el-form-item class="marginTopAndMarginBottom" label="浠诲姟缂栧彿" style="width: 32%"> - <el-input v-model="dataForm.project.softwareIdentity" placeholder="浠诲姟缂栧彿"></el-input> - </el-form-item> - <el-form-item class="marginTopAndMarginBottom" label="鐗╁搧鍚嶇О" style="width: 32%"> - <el-input v-model="dataForm.project.softwareName" placeholder="鐗╁搧鍚嶇О"></el-input> - </el-form-item> - <el-form-item class="marginTopAndMarginBottom3" label="鍨嬪彿" style="width: 32%"> - <zt-dict v-model="dataForm.project.softwareType" dict="is_embed_software" :radio="true"></zt-dict> - </el-form-item> - <el-form-item class="marginTopAndMarginBottom3" label="鐗╁搧缂栧彿" style="width: 32%"> - <el-input v-model="dataForm.project.softwareIdentity" placeholder="鐗╁搧缂栧彿"></el-input> - </el-form-item> - <el-form-item class="marginTopAndMarginBottom3" label="鏁� 閲�" style="width: 32%"> - <el-input v-model="dataForm.project.isContract" placeholder="鏁伴噺"></el-input> + <div> + <zt-dialog ref="dialog" column="3" :title="title" :stepMarker="stepMarker" @confirm="formSubmit"> + <el-form :model="dataForm" :inline="true" ref="dataForm" style="padding-top: 0" :disabled="dataForm.disabled" + label-width="120px" class="circulationFormAuto"> + <div> + <el-form-item label-width="60px" label="缂栧彿:" style="width:100%;margin-bottom: -5px"> + <span>{{dataForm.circulatOrder.code || '缂栧彿鑷姩鐢熸垚'}}</span> </el-form-item> </div> - <div style="border-bottom: 1px solid rgba(0,0,0,.2);"> - <div style="padding-left:5px;padding-right:5px;"> - <div style="padding: 5px">鐗╁搧鎶�鏈祫鏂欏強鏁伴噺锛�</div> - <div class="table-container"> - <el-table ref="tableCirculatOrderList" class="el-software el-margin-top-bot" border - :data="dataForm.technicalList" - stripe> - <el-table-column prop="no" align="center" width="60" label="搴忓彿"> - <template slot-scope="scope"> - <span v-html="indexFormat(scope.$index)"></span> - </template> - </el-table-column> - <el-table-column prop="infoName" min-width="180" label="鎶�鏈祫鏂欏悕绉�"> - <template v-slot="{ row }"> - <el-input v-model="row.name" placeholder="鎶�鏈祫鏂欏悕绉�"></el-input> - </template> - </el-table-column> - <el-table-column prop="identify" align="center" width="150" label="鏍囪瘑"> - <template v-slot="{ row }"> - <el-input v-model="row.version" placeholder="鏍囪瘑"></el-input> - </template> - </el-table-column> - <el-table-column prop="version" align="center" width="120" label="鐗堟湰"> - <template v-slot="{ row }"> - <el-input v-model="row.identify" placeholder="鐗堟湰"></el-input> - </template> - </el-table-column> - <el-table-column prop="secretClass" label="瀵嗙骇" width="100" align="center"> - <template v-slot="{ row }"> - <!-- <el-input v-model="row.secretClass" placeholder="瀵嗙骇"></el-input>--> - <zt-dict v-model="row.secretClass" dict="secret_class"></zt-dict> - </template> - </el-table-column> - <el-table-column prop="medium" label="浠嬭川" width="100" align="center"> - <template v-slot="{ row }"> - <el-input v-model="row.medium" placeholder="浠嬭川"></el-input> - </template> - </el-table-column> - <el-table-column prop="amount" label="鏁伴噺" width="80" align="center"> - <template v-slot="{ row }"> - <el-input v-model="row.amount" placeholder="鏁伴噺"></el-input> - </template> - </el-table-column> - <el-table-column prop="remark" label="澶囨敞" width="100" align="center"> - <template v-slot="{ row }"> - <el-input v-model="row.remark" placeholder="澶囨敞"></el-input> - </template> - </el-table-column> - <el-table-column fixed="right" prop="files" label="涓婁紶闄勪欢" width="300" align="center"> - <template v-slot="{ row }"> - <table-uploader busi-type="circulat_order" model-name="row" :dataForm="row" - v-model="row.files"/> - </template> - </el-table-column> - </el-table> - <div class="icon-container" @click="addCirculatRow()"> - <!-- 鏀剧疆鍥哄畾鐨勫浘鏍� --> - <i class="el-icon-plus"></i> + <div style="border: 1px solid rgba(0,0,0,.2);width: 99%"> + <div style="border-bottom: 1px solid rgba(0,0,0,.2);" class="circulationContentWidth"> + <el-form-item class="marginTopAndMarginBottom" label="涓撲笟瀹為獙瀹�" style="width: 32%"> + <el-input v-model="dataForm.testAgencyInfo.agencyName" placeholder="涓撲笟瀹為獙瀹�"></el-input> + </el-form-item> + <el-form-item class="marginTopAndMarginBottom" label="浠诲姟缂栧彿" style="width: 32%"> + <el-input v-model="dataForm.project.softwareIdentity" placeholder="浠诲姟缂栧彿"></el-input> + </el-form-item> + <el-form-item class="marginTopAndMarginBottom" label="鐗╁搧鍚嶇О" style="width: 32%"> + <el-input v-model="dataForm.project.softwareName" placeholder="鐗╁搧鍚嶇О"></el-input> + </el-form-item> + <el-form-item class="marginTopAndMarginBottom3" label="鍨嬪彿" style="width: 32%"> + <zt-dict v-model="dataForm.project.softwareType" dict="is_embed_software" :radio="true"></zt-dict> + </el-form-item> + <el-form-item class="marginTopAndMarginBottom3" label="鐗╁搧缂栧彿" style="width: 32%"> + <el-input v-model="dataForm.project.softwareIdentity" placeholder="鐗╁搧缂栧彿"></el-input> + </el-form-item> + <el-form-item class="marginTopAndMarginBottom3" label="鏁� 閲�" style="width: 32%"> + <el-input v-model="dataForm.project.isContract" placeholder="鏁伴噺"></el-input> + </el-form-item> + </div> + <div style="border-bottom: 1px solid rgba(0,0,0,.2);"> + <div style="padding-left:5px;padding-right:5px;"> + <div style="padding: 5px">鐗╁搧鎶�鏈祫鏂欏強鏁伴噺锛�</div> + <div class="table-container"> + <el-table ref="tableCirculatOrderList" class="el-software el-margin-top-bot" border + :data="dataForm.technicalList" + stripe> + <el-table-column prop="no" align="center" width="60" label="搴忓彿"> + <template slot-scope="scope"> + <span v-html="indexFormat(scope.$index)"></span> + </template> + </el-table-column> + <el-table-column prop="infoName" min-width="180" label="鎶�鏈祫鏂欏悕绉�"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.name" + placeholder="鎶�鏈祫鏂欏悕绉�"></el-input> + </template> + </el-table-column> + <el-table-column prop="identify" align="center" width="150" label="鏍囪瘑"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.version" placeholder="鏍囪瘑"></el-input> + </template> + </el-table-column> + <el-table-column prop="version" align="center" width="120" label="鐗堟湰"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.identify" + placeholder="鐗堟湰"></el-input> + </template> + </el-table-column> + <el-table-column prop="secretClass" label="瀵嗙骇" width="100" align="center"> + <template v-slot="{ row }"> + <!-- <el-input v-model="row.secretClass" placeholder="瀵嗙骇"></el-input>--> + <zt-dict :disabled="stepMarker!=='wplz_first'" v-model="row.secretClass" + dict="secret_class"></zt-dict> + </template> + </el-table-column> + <el-table-column prop="medium" label="浠嬭川" width="100" align="center"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.medium" placeholder="浠嬭川"></el-input> + </template> + </el-table-column> + <el-table-column prop="amount" label="鏁伴噺" width="80" align="center"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.amount" placeholder="鏁伴噺"></el-input> + </template> + </el-table-column> + <el-table-column prop="remark" label="澶囨敞" width="100" align="center"> + <template v-slot="{ row }"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="row.remark" placeholder="澶囨敞"></el-input> + </template> + </el-table-column> + <el-table-column fixed="right" prop="files" label="涓婁紶闄勪欢" width="300" align="center"> + <template v-slot="{ row }"> + <table-uploader busi-type="circulat_order" model-name="row" :dataForm="row" + v-model="row.files"/> + </template> + </el-table-column> + <el-table-column v-if="stepMarker=='wplz_first'" fixed="right" label="鎿嶄綔" align="center"> + <template slot-scope="scope"> + <zt-table-button @click="deleteRow(scope.$index,scope.row.id)">鍒犻櫎</zt-table-button> + </template> + </el-table-column> + </el-table> + <div class="icon-container" @click="addCirculatRow()"> + <!-- 鏀剧疆鍥哄畾鐨勫浘鏍� --> + <i class="el-icon-plus"></i> + </div> </div> </div> </div> - </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 鐗╁搧鐨勫叾瀹冭姹� + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 鐗╁搧鐨勫叾瀹冭姹� + </div> + <div style="width: calc(100% - 120px);"> + <div class="el-border-left"> + <el-form-item label="鐗╁搧鏄惁闇�瑕佽繑杩�" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.itemRequire" + :radio="true" + dict="is_or_not"></zt-dict> + </el-form-item> + <el-form-item label="鐗╁搧鐨勫叾浠栬姹傦細" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> + <el-input :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.itemOther"></el-input> + </el-form-item> + </div> + </div> </div> - <div style="width: calc(100% - 120px);"> - <div class="el-border-left"> - <el-form-item label="鐗╁搧鏄惁闇�瑕佽繑杩�" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.itemRequire" :radio="true" - dict="is_or_not"></zt-dict> + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 鐗╁搧鎺ユ敹浜� + </div> + <div class="el-border-left-right acceptDate" style="width: 20%;;height: 80px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.itemAcceptor}} </el-form-item> - <el-form-item label="鐗╁搧鐨勫叾浠栬姹傦細" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> - <el-input :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.itemOther"></el-input> + </div> + <div style="width: 52px;text-align: center;font-weight: 600"> + 鏃堕棿 + </div> + <div class="el-border-left-right acceptDate" style="width: 20%;height: 80px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{ dataForm.circulatOrder.acceptDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} + </el-form-item> + </div> + <div style="width: 84px;text-align: center;font-weight: 600"> + 鎯呭喌璇存槑 + </div> + <div class="el-border-left " style="width: 35%;height: 80px;"> + <el-form-item label="鏄惁瀹屾垚鐥呮瘨鏌ユ潃" label-width="150px" style="padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_wpjs'" v-model="dataForm.circulatOrder.acceptSituation" + :radio="true" dict="is_or_not"></zt-dict> + </el-form-item> + <el-form-item label="鐥呮瘨搴撶増鏈細" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> + <el-input :disabled="stepMarker!=='wplz_wpjs'" + v-model="dataForm.circulatOrder.virusLibraryVersion"></el-input> + </el-form-item> + </div> + </div> + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 妫�娴嬫帴鏀朵汉 + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.detectAcceptor}} + </el-form-item> + </div> + <div style="width: 52px;text-align: center;font-weight: 600"> + 鏃堕棿 + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.detectAcceptDate| filterTime('YYYY骞碝M鏈圖D鏃�')}} + </el-form-item> + </div> + <div style="width: 84px;text-align: center;font-weight: 600"> + 鎯呭喌璇存槑 + </div> + <div class="el-border-left " style="width: 35%;height: 40px;"> + <el-form-item label="鏄惁婊¤冻娴嬭瘯瑕佹眰" label-width="150px" style="padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_jcjs'" v-model="dataForm.circulatOrder.detectAcceptSituation" + :radio="true" dict="is_or_not"></zt-dict> + </el-form-item> + </div> + </div> + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 妫�娴嬩汉 + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.calibratDetector}} + </el-form-item> + </div> + <div style="width: 52px;text-align: center;font-weight: 600"> + 鏃堕棿 + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + <!-- {{dataForm.circulatOrder.detectDate}}--> + {{ dataForm.circulatOrder.detectDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} + </el-form-item> + </div> + <div style="width: 84px;text-align: center;font-weight: 600"> + 鎯呭喌璇存槑 + </div> + <div class="el-border-left " style="width: 35%;height: 40px;"> + <el-form-item label="鏄惁婊¤冻娴嬭瘯瑕佹眰" label-width="150px" style="padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_xzjc'" v-model="dataForm.circulatOrder.detectSituation" + :radio="true" dict="is_or_not"></zt-dict> + </el-form-item> + </div> + </div> + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 鐗╁搧鍏ュ簱浜� + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.depositor}} + </el-form-item> + </div> + <div style="width: 52px;text-align: center;font-weight: 600"> + 鏃堕棿 + </div> + <div class="el-border-left-right" style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.depositDate| filterTime('YYYY骞碝M鏈圖D鏃�')}} + </el-form-item> + </div> + <div style="width: 84px;text-align: center;font-weight: 600"> + 鎯呭喌璇存槑 + </div> + <div class="el-border-left " style="width: 35%;height: 40px;"> + <el-form-item label="鏄惁宸插叆鏍峰搧搴�" label-width="150px" style="padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_wprk'" v-model="dataForm.circulatOrder.depositSituation" + :radio="true" dict="is_or_not"></zt-dict> + </el-form-item> + </div> + </div> + <div class="el-flexCirculationDialog el-border-bottom"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 鐗╁搧鍙戞斁浜� + </div> + <div class="el-border-left-right " style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{dataForm.circulatOrder.itemIssuer}} + </el-form-item> + </div> + <div style="width: 52px;text-align: center;font-weight: 600"> + 鏃堕棿 + </div> + <div class="el-border-left-right " style="width: 20%;height: 40px;"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + {{ dataForm.circulatOrder.issueDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} + </el-form-item> + </div> + <div style="width: 84px;text-align: center;font-weight: 600"> + 鎯呭喌璇存槑 + </div> + <div class="el-border-left " style="width: 35%;height: 40px;"> + <el-form-item label="鏄惁瀹屾垚鏍峰搧鍙戞斁" label-width="150px" style="padding-left:20px;margin-bottom:0"> + <zt-dict :disabled="stepMarker!=='wplz_wpff'" v-model="dataForm.circulatOrder.issueSituation" + :radio="true" dict="is_or_not"></zt-dict> + </el-form-item> + </div> + </div> + <div class="el-flexCirculationDialog"> + <div style="width: 112px;text-align: center;font-weight: 600"> + 澶囨敞 + </div> + <div class="el-border-left " style="width: 20%;height: 40px"> + <el-form-item style="width: 100%;padding-left:20px;margin:0;"> + <el-input v-model="dataForm.circulatOrder.remark"></el-input> </el-form-item> </div> </div> </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 鐗╁搧鎺ユ敹浜� - </div> - <div class="el-border-left-right acceptDate" style="width: 20%;;height: 80px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.itemAcceptor}} - </el-form-item> - </div> - <div style="width: 52px;text-align: center;font-weight: 600"> - 鏃堕棿 - </div> - <div class="el-border-left-right acceptDate" style="width: 20%;height: 80px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{ dataForm.circulatOrder.acceptDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} - </el-form-item> - </div> - <div style="width: 84px;text-align: center;font-weight: 600"> - 鎯呭喌璇存槑 - </div> - <div class="el-border-left " style="width: 35%;height: 80px;"> - <el-form-item label="鏄惁瀹屾垚鐥呮瘨鏌ユ潃" label-width="150px" style="padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.acceptSituation" :radio="true" dict="is_or_not"></zt-dict> - </el-form-item> - <el-form-item label="鐥呮瘨搴撶増鏈細" label-width="150px" style="width:100%;padding-left:20px;margin-bottom:0"> - <el-input :disabled="stepMarker!=='wplz_first'" v-model="dataForm.circulatOrder.virusLibraryVersion"></el-input> - </el-form-item> - </div> - </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 妫�娴嬫帴鏀朵汉 - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.detectAcceptor}} - </el-form-item> - </div> - <div style="width: 52px;text-align: center;font-weight: 600"> - 鏃堕棿 - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.detectAcceptDate| filterTime('YYYY骞碝M鏈圖D鏃�')}} - </el-form-item> - </div> - <div style="width: 84px;text-align: center;font-weight: 600"> - 鎯呭喌璇存槑 - </div> - <div class="el-border-left " style="width: 35%;height: 40px;"> - <el-form-item label="鏄惁婊¤冻娴嬭瘯瑕佹眰" label-width="150px" style="padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_jcjs'" v-model="dataForm.circulatOrder.detectAcceptSituation" :radio="true" dict="is_or_not"></zt-dict> - </el-form-item> - </div> - </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 妫�娴嬩汉 - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.calibratDetector}} - </el-form-item> - </div> - <div style="width: 52px;text-align: center;font-weight: 600"> - 鏃堕棿 - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> -<!-- {{dataForm.circulatOrder.detectDate}}--> - {{ dataForm.circulatOrder.detectDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} - </el-form-item> - </div> - <div style="width: 84px;text-align: center;font-weight: 600"> - 鎯呭喌璇存槑 - </div> - <div class="el-border-left " style="width: 35%;height: 40px;"> - <el-form-item label="鏄惁婊¤冻娴嬭瘯瑕佹眰" label-width="150px" style="padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_xzjc'" v-model="dataForm.circulatOrder.detectSituation" :radio="true" dict="is_or_not"></zt-dict> - </el-form-item> - </div> - </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 鐗╁搧鍏ュ簱浜� - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.depositor}} - </el-form-item> - </div> - <div style="width: 52px;text-align: center;font-weight: 600"> - 鏃堕棿 - </div> - <div class="el-border-left-right" style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.depositDate| filterTime('YYYY骞碝M鏈圖D鏃�')}} - </el-form-item> - </div> - <div style="width: 84px;text-align: center;font-weight: 600"> - 鎯呭喌璇存槑 - </div> - <div class="el-border-left " style="width: 35%;height: 40px;"> - <el-form-item label="鏄惁宸插叆鏍峰搧搴�" label-width="150px" style="padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_wprk'" v-model="dataForm.circulatOrder.depositSituation" :radio="true" dict="is_or_not"></zt-dict> - </el-form-item> - </div> - </div> - <div class="el-flexCirculationDialog el-border-bottom"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 鐗╁搧鍙戞斁浜� - </div> - <div class="el-border-left-right " style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{dataForm.circulatOrder.itemIssuer}} - </el-form-item> - </div> - <div style="width: 52px;text-align: center;font-weight: 600"> - 鏃堕棿 - </div> - <div class="el-border-left-right " style="width: 20%;height: 40px;"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - {{ dataForm.circulatOrder.issueDate | filterTime('YYYY骞碝M鏈圖D鏃�') }} - </el-form-item> - </div> - <div style="width: 84px;text-align: center;font-weight: 600"> - 鎯呭喌璇存槑 - </div> - <div class="el-border-left " style="width: 35%;height: 40px;"> - <el-form-item label="鏄惁瀹屾垚鏍峰搧鍙戞斁" label-width="150px" style="padding-left:20px;margin-bottom:0"> - <zt-dict :disabled="stepMarker!=='wplz_wpff'"v-model="dataForm.circulatOrder.issueSituation" :radio="true" dict="is_or_not"></zt-dict> - </el-form-item> - </div> - </div> - <div class="el-flexCirculationDialog"> - <div style="width: 112px;text-align: center;font-weight: 600"> - 澶囨敞 - </div> - <div class="el-border-left " style="width: 20%;height: 40px"> - <el-form-item style="width: 100%;padding-left:20px;margin:0;"> - <el-input v-model="dataForm.circulatOrder.remark"></el-input> - </el-form-item> - </div> - </div> - </div> - </el-form> - <template v-slot:footer> - <el-button v-if="dataForm.disabled" type="primary" @click="print()">鎵撳嵃</el-button> - </template> - </zt-dialog> + </el-form> + <template v-slot:footer> + <el-button v-if="dataForm.disabled" type="primary" @click="print()">鎵撳嵃</el-button> + </template> + </zt-dialog> + <add-or-update ref="addOrUpdate" @refreshDataList="getQuery()"/> + </div> </template> + <script> import qs from "qs"; import Cookies from "js-cookie"; + import AddOrUpdate from '../configItemWarehouse/ConfigItemWarehouse-AddOrUpdate' export default { data() { @@ -276,9 +296,9 @@ itemOther: '', acceptSituation: '', acceptDate: '', - detectAcceptor:'', - detectAcceptDate:'', - detectAcceptSituation:'', + detectAcceptor: '', + detectAcceptDate: '', + detectAcceptSituation: '', calibratDetector: '', detectDate: '', detectSituation: '', @@ -289,8 +309,8 @@ issueDate: '', issueSituation: '', remark: '', - virusLibraryVersion:'', - itemAcceptor:'' + virusLibraryVersion: '', + itemAcceptor: '' }, project: { softwareIdentity: '', @@ -304,9 +324,12 @@ } } }, - computed:{ - getRoleName(){ - console.log(this.$store.state.user.roleName,'this.$store.state.user.roleName') + components: { + AddOrUpdate + }, + computed: { + getRoleName() { + console.log(this.$store.state.user.roleName, 'this.$store.state.user.roleName') return this.$store.state.user.roleName || '' }, }, @@ -315,22 +338,21 @@ return index += 1 }, init(id, row) { - console.log(id,row,'娴佽浆鍗曠殑') + console.log(id, row, '娴佽浆鍗曠殑') if (id) { this.dataForm.id = id } else { this.dataForm.id = row.id } - if(row.projectId){ - this.dataForm.projectId =row.projectId + if (row.projectId) { + this.dataForm.projectId = row.projectId } - + this.getInfo2() // this.dataForm.disabled - this.getInfo() if (!this.dataForm.disabled) { if (!row.stepMarker) { this.stepMarker = 'wplz_first' - this.title = '鐗╁搧鎺ユ敹' + this.title = '娴佽浆鐢宠' } else { this.title = row.stepName this.stepMarker = row.stepMarker @@ -345,8 +367,16 @@ tableBody.scrollTop = tableBody.scrollHeight; }) }, + async deleteRow(index, id) { + if (await this.$tip.confirm(this.$t('prompt.info', {'handle': this.$t('delete')}))) { + if (id != null) { + let res = await this.$http.delete('/itemCirculatOrder/ItemCirculatOrderTechnical/', {data: [id]}) + } + this.dataForm.technicalList.splice(index, 1) + } + }, // 鑾峰彇淇℃伅 - async getInfo() { + async getInfo2() { let params = { circulatOrderid: this.dataForm.id, projectId: this.dataForm.projectId @@ -356,32 +386,83 @@ ...this.dataForm, ...res.data } - if(this.dataForm.project === null){ - this.dataForm.project={} + if (this.dataForm.project === null) { + this.dataForm.project = {} } - if(this.dataForm.circulatOrder === null){ - this.dataForm.circulatOrder={} + if (this.dataForm.circulatOrder === null) { + this.dataForm.circulatOrder = {} } - if(this.dataForm.testAgencyInfo === null){ - this.dataForm.testAgencyInfo={} + if (this.dataForm.testAgencyInfo === null) { + this.dataForm.testAgencyInfo = {} } - if(this.dataForm.flowInfoDto === null){ - this.dataForm.flowInfoDto={} + if (this.dataForm.flowInfoDto === null) { + this.dataForm.flowInfoDto = {} } console.log(this.dataForm, "getInfo this.dataForm") + }, - async print(){ + async print() { var params = qs.stringify({ token: Cookies.get('token'), - id:this.dataForm.id + id: this.dataForm.id }) let apiURL = `/itemCirculatOrder/ItemCirculatOrder/exportCirculatOrder/` window.location.href = `${window.SITE_CONFIG['apiURL']}${apiURL}?${params}` }, // 琛ㄥ崟鎻愪氦 async formSubmit(submitType) { + let isFiles = true; + let flag = true; console.log(this.dataForm, "this.dataForm11111") - if (submitType == 'tj' || submitType == 'bl') { + this.dataForm.technicalList.forEach(item => { + if (parseInt(item.secretClass) > localStorage.getItem('userSecretClass')) { + this.$alert("褰撳墠椤圭洰璁剧疆鐨勫瘑绾ч珮浜庡綋鍓嶇敤鎴风殑瀵嗙骇锛岃閲嶆柊璁剧疆") + flag = false + } + }) + if (!flag) { + return + } + if (submitType === 'tj' || submitType === 'bl') { + if (this.stepMarker === 'wplz_wpjs') { + if (this.dataForm.circulatOrder.acceptSituation == null || this.dataForm.circulatOrder.virusLibraryVersion == null) { + this.$alert("褰撳墠鏈夋湭濉啓鐨勬儏鍐佃鏄�") + return + } + } + if (this.stepMarker === 'wplz_jcjs') { + if (this.dataForm.circulatOrder.detectAcceptSituation == null) { + this.$alert("褰撳墠鏈夋湭濉啓鐨勬儏鍐佃鏄�") + return + } + } + if (this.stepMarker === 'wplz_xzjc') { + if (this.dataForm.circulatOrder.detectSituation == null) { + this.$alert("褰撳墠鏈夋湭濉啓鐨勬儏鍐佃鏄�") + return + } + } + if (this.stepMarker === 'wplz_wprk') { + if (this.dataForm.circulatOrder.depositSituation == null) { + this.$alert("褰撳墠鏈夋湭濉啓鐨勬儏鍐佃鏄�") + return + } + } + this.dataForm.technicalList.forEach(item => { + item.files.groups.forEach(groups => { + groups.fields.forEach(files => { + if (files.files.length === 0) { + this.$alert("褰撳墠瀛樺湪鏈笂浼犻檮浠剁殑鎶�鏈祫鏂欙紝璇烽噸鏂颁笂浼�") + isFiles = false + return isFiles + } + }) + }) + }) + if (!isFiles) { + return + } + let flowInfo = { flowCode: 'wplz', stepIdMark: this.stepMarker, @@ -391,6 +472,15 @@ } let res = await this.$http[!this.dataForm.id ? 'post' : 'put']('/itemCirculatOrder/ItemCirculatOrder/', this.dataForm) if (res.success) { + if (this.stepMarker === 'wplz_wprk' && submitType === 'bl') { + this.$nextTick(() => { + this.$refs.addOrUpdate.$refs.dialog.init(null, { + id: res.data, + projectId: this.dataForm.projectId, + libraryType: '1' + }) + }) + } /* if (submitType == 'tj') { console.log(res, 'bbbb') let res2 = await this.$http.get('/wf/startFlow', submitForm) -- Gitblit v1.9.1