| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052 | 
							- <template>
 
-   <div class="app-container">
 
-     <h3 class="title">同步信息</h3>
 
-     <div class="info-box">
 
-       <el-descriptions>
 
-         <el-descriptions-item
 
-           v-for="v in dataInfo"
 
-           :label="v.label"
 
-           :key="v.key"
 
-           >{{ v.value }}</el-descriptions-item
 
-         >
 
-         <el-descriptions-item label="机构组织类型" v-if="false">{{
 
-           getLabel(dict.type.reality_org_type, orgType)
 
-         }}</el-descriptions-item>
 
-         <el-descriptions-item label="是否可用">{{
 
-           isLock == 1 ? "否" : "是"
 
-         }}</el-descriptions-item>
 
-         <el-descriptions-item label="机构类型">{{
 
-           getLabel(dict.type.sys_org_type, type)
 
-         }}</el-descriptions-item>
 
-       </el-descriptions>
 
-     </div>
 
-     <h3 v-if="type == 4" class="title">补充基础信息</h3>
 
-     <div class="info-box">
 
-       <el-form
 
-         inline
 
-         class="demo-form-inline"
 
-         label-position="left"
 
-         label-width="120px"
 
-       >
 
-         <el-row>
 
-           <el-col :span="8">
 
-             <el-form-item label="机构类型" v-if="false">
 
-               <el-select v-model="type" placeholder="请选择机构类型">
 
-                 <el-option
 
-                   v-for="dict in dict.type.sys_org_type"
 
-                   :key="dict.value"
 
-                   :label="dict.label"
 
-                   :value="dict.value"
 
-                 ></el-option>
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item v-if="type == 4" label="城市天气区域">
 
-               <!--              <el-input
 
-                 v-model="weatherAreaCode"
 
-                 placeholder="天气区域编码"
 
-                 @input="handleInput2"
 
-               ></el-input>-->
 
-               <!--              <el-select v-model="weatherAreaCode" placeholder="请选择"   clearable>
 
-                 <el-option v-for="item in areaList" :key="item.key" :label="item.value" :value="item.key"></el-option>
 
-               </el-select>-->
 
-               <el-cascader
 
-                 clearable
 
-                 v-model="weatherAreaCode"
 
-                 :options="areaList"
 
-                 @change="selectArea"
 
-                 placeholder="请选择城市天气区域"
 
-               ></el-cascader>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item v-if="type == 4" label="营业场所面积">
 
-               <el-input
 
-                 clearable
 
-                 v-model="premisesArea"
 
-                 placeholder="请输入营业场所面积"
 
-                 @input="handleInput"
 
-               ></el-input>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item
 
-               v-if="type == 10"
 
-               label="建设时间"
 
-               prop="constructionTime"
 
-             >
 
-               <el-date-picker
 
-                 clearable
 
-                 v-model="constructionTime"
 
-                 type="date"
 
-                 value-format="yyyy-MM-dd HH:mm:ss"
 
-                 placeholder="请选择建设时间"
 
-               >
 
-               </el-date-picker>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item
 
-               v-if="type == 10"
 
-               label="最近一次更新"
 
-               prop="lastUpdateTime"
 
-             >
 
-               <el-date-picker
 
-                 clearable
 
-                 v-model="lastUpdateTime"
 
-                 type="date"
 
-                 value-format="yyyy-MM-dd HH:mm:ss"
 
-                 placeholder="请选择最近一次更新"
 
-               >
 
-               </el-date-picker>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item v-if="type == 10" label="平台品牌">
 
-               <el-select
 
-                 clearable
 
-                 v-model="platformBrand"
 
-                 placeholder="请选择平台品牌"
 
-               >
 
-                 <el-option
 
-                   v-for="dict in dict.type.org_platform_brand"
 
-                   :key="dict.value"
 
-                   :label="dict.label"
 
-                   :value="dict.value"
 
-                 ></el-option>
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-           <el-col :span="8">
 
-             <el-form-item v-if="type == 10" label="平台供应商品牌">
 
-               <el-select
 
-                 clearable
 
-                 v-model="platformSupplierBrand"
 
-                 placeholder="请选择平台供应商品牌"
 
-               >
 
-                 <el-option
 
-                   v-for="dict in dict.type.org_platform_supplier_brand"
 
-                   :key="dict.value"
 
-                   :label="dict.label"
 
-                   :value="dict.value"
 
-                 ></el-option>
 
-               </el-select>
 
-             </el-form-item>
 
-           </el-col>
 
-         </el-row>
 
-       </el-form>
 
-     </div>
 
-     <div v-if="type == 4" class="info-box">
 
-       <!--  下拉框选择    -->
 
-       <div>
 
-         <el-form
 
-           inline
 
-           class="demo-form-inline"
 
-           label-position="left"
 
-           label-width="120px"
 
-         >
 
-           <el-row>
 
-             <el-col :span="8">
 
-               <el-form-item label="是否自有产权">
 
-                 <el-select
 
-                   clearable
 
-                   v-model="ownership"
 
-                   placeholder="请选择是否自有产权"
 
-                 >
 
-                   <el-option
 
-                     v-for="dict in dict.type.property_situation"
 
-                     :key="dict.value"
 
-                     :label="dict.label"
 
-                     :value="dict.value"
 
-                   ></el-option>
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="8">
 
-               <el-form-item label="是否区域外">
 
-                 <el-select
 
-                   clearable
 
-                   v-model="outsideArea"
 
-                   placeholder="请选择是否区域外"
 
-                 >
 
-                   <el-option
 
-                     v-for="dict in dict.type.org_extend_is"
 
-                     :key="dict.value"
 
-                     :label="dict.label"
 
-                     :value="dict.value"
 
-                   ></el-option>
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-         </el-form>
 
-       </div>
 
-       <!--  表格   -->
 
-       <div style="margin-top: 30px">
 
-         <el-button
 
-           style="margin-bottom: 20px"
 
-           type="primary"
 
-           plain
 
-           icon="el-icon-plus"
 
-           size="mini"
 
-           @click="handleOrgAdd"
 
-           >新增</el-button
 
-         >
 
-         <el-table
 
-           border
 
-           size="small"
 
-           v-loading="orgloading"
 
-           :data="constructionList"
 
-           @selection-change="handleOrgSelectionChange"
 
-         >
 
-           <el-table-column
 
-             type="selection"
 
-             width="55"
 
-             align="center"
 
-             v-if="false"
 
-           />
 
-           <el-table-column type="index" label="序号" align="center" prop="id" />
 
-           <el-table-column label="标准" align="center" prop="standard">
 
-             <template slot-scope="r"
 
-               >{{
 
-                 getLabel(dict.type.org_extend_standard, `${r.row.standard}`)
 
-               }}
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="达标日期"
 
-             align="center"
 
-             prop="dateOfCompliance"
 
-             width="180"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span>{{
 
-                 formatTime(scope.row.dateOfCompliance, "YYYY-MM-DD")
 
-               }}</span>
 
-             </template>
 
-           </el-table-column>
 
-           <!-- <el-table-column
 
-             label="证书佐证"
 
-             align="center"
 
-             prop="certificateEvidence"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span v-if="scope.row.certificateEvidence > 0">是</span>
 
-               <span v-else>否</span>
 
-             </template></el-table-column
 
-           > -->
 
-           <!-- <el-table-column label="证书" align="center" prop="certificate" />
 
-           <el-table-column label="佐证" align="center" prop="evidence" /> -->
 
-           <el-table-column
 
-             v-if="false"
 
-             label="机构id"
 
-             align="center"
 
-             prop="orgId"
 
-           />
 
-           <el-table-column
 
-             label="操作"
 
-             align="center"
 
-             class-name="small-padding fixed-width"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-button
 
-                 v-if="scope.row.certificate"
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="downBusiness(scope.row.certificate)"
 
-                 >查看证书</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="handleOrgUpdate(scope.row)"
 
-                 >编辑</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-delete"
 
-                 @click="handleOrgDelete(scope.row)"
 
-                 >删除</el-button
 
-               >
 
-             </template>
 
-           </el-table-column>
 
-         </el-table>
 
-       </div>
 
-       <!--   上传   -->
 
-       <div style="margin-top: 30px">
 
-         <el-switch
 
-           v-model="askari"
 
-           active-text
 
-           inactive-text="是否有保安"
 
-           :active-value="1"
 
-           :inactive-value="0"
 
-         ></el-switch>
 
-         <div></div>
 
-         <el-row v-if="askari">
 
-           <el-col :span="12" :xs="24">
 
-             <p style="font-size: 12px; color: #999">上传保安证</p>
 
-             <image-upload
 
-               :limit="5"
 
-               :value="askariCertificate"
 
-               :fileSize="2"
 
-               @input="getImgUrl"
 
-             ></image-upload>
 
-             <!--            <el-image class="zoom-image border-color-change" :src="uploadp" fit="contain" @click="triggerFileInput"></el-image>-->
 
-             <!--            <input type="file"-->
 
-             <!--                   ref="fileInput"-->
 
-             <!--                   @change="handleFileChange"-->
 
-             <!--                   style="display: none;"/>-->
 
-           </el-col>
 
-           <!-- <el-col :span="12" :xs="24">
 
-             <p style="font-size: 12px; color: #999">示例图</p>
 
-             <div style="width: 350px">
 
-               <el-image :src="uplp"></el-image>
 
-             </div>
 
-           </el-col> -->
 
-           <!--            <el-image class="zoom-image border-color-change" :src="uplp" fit="contain"></el-image>-->
 
-         </el-row>
 
-       </div>
 
-     </div>
 
-     <el-switch
 
-       v-if="type == 4"
 
-       style="margin-top: 30px; margin-left: 30px"
 
-       v-model="businessLibrary"
 
-       active-text
 
-       inactive-text="是否有业务库"
 
-       :active-value="1"
 
-       :inactive-value="0"
 
-     ></el-switch>
 
-     <div v-if="(type == 4) & (businessLibrary > 0)" style="margin-top: 30px">
 
-       <h3 class="title">业务库信息</h3>
 
-       <div class="info-box">
 
-         <el-form inline label-position="left" label-width="100px">
 
-           <el-row>
 
-             <el-col :span="7">
 
-               <el-form-item label="业务库类型">
 
-                 <el-select
 
-                   clearable
 
-                   v-model="businessLibraryType"
 
-                   placeholder="请选择业务库类型"
 
-                 >
 
-                   <el-option
 
-                     v-for="dict in dict.type.business_library_type"
 
-                     :key="dict.value"
 
-                     :label="dict.label"
 
-                     :value="dict.value"
 
-                   ></el-option>
 
-                 </el-select>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="7">
 
-               <el-form-item label="值守方式">
 
-                 <el-radio-group v-model="dutyMode">
 
-                   <el-radio :label="0">同楼异地值守</el-radio>
 
-                   <el-radio :label="1">远程值守</el-radio>
 
-                 </el-radio-group>
 
-               </el-form-item>
 
-             </el-col>
 
-             <el-col :span="7">
 
-               <el-form-item label="业务库出入口远程控制" label-width="150">
 
-                 <el-switch
 
-                   v-model="remoteControl"
 
-                   active-text
 
-                   inactive-text
 
-                   :active-value="1"
 
-                   :inactive-value="0"
 
-                 ></el-switch>
 
-               </el-form-item>
 
-             </el-col>
 
-           </el-row>
 
-         </el-form>
 
-       </div>
 
-       <div class="info-box">
 
-         <el-button
 
-           style="margin-bottom: 20px"
 
-           type="primary"
 
-           plain
 
-           icon="el-icon-plus"
 
-           size="mini"
 
-           @click="handleBusinessAdd"
 
-           >新增</el-button
 
-         >
 
-         <el-table
 
-           border
 
-           size="small"
 
-           v-loading="businessloading"
 
-           :data="BusinessPhysicalDefenseConstructionList"
 
-           @selection-change="handleBusinessSelectionChange"
 
-         >
 
-           <el-table-column
 
-             type="selection"
 
-             width="55"
 
-             v-if="false"
 
-             align="center"
 
-           />
 
-           <el-table-column type="index" label="序号" align="center" prop="id" />
 
-           <el-table-column label="标准" align="center" prop="standard">
 
-             <template slot-scope="r"
 
-               >{{
 
-                 getLabel(
 
-                   dict.type.org_extend_business_library_standard,
 
-                   `${r.row.standard}`
 
-                 )
 
-               }}
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="达标日期"
 
-             align="center"
 
-             prop="dateOfCompliance"
 
-             width="180"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span>{{
 
-                 formatTime(scope.row.dateOfCompliance, "YYYY-MM-DD")
 
-               }}</span>
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="证书佐证"
 
-             align="center"
 
-             prop="certificateEvidence"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span v-if="scope.row.certificateEvidence > 0">是</span>
 
-               <span v-else>否</span>
 
-             </template></el-table-column
 
-           >
 
-           <!-- <el-table-column label="证书" align="center" prop="certificate">
 
-           </el-table-column>
 
-           <el-table-column label="佐证" align="center" prop="evidence" /> -->
 
-           <el-table-column
 
-             v-if="false"
 
-             label="机构id"
 
-             align="center"
 
-             prop="orgId"
 
-           />
 
-           <el-table-column
 
-             label="操作"
 
-             align="center"
 
-             class-name="small-padding fixed-width"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-button
 
-                 v-if="scope.row.certificate"
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="downBusiness(scope.row.certificate)"
 
-                 >查看证书</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="handleBusinessUpdate(scope.row)"
 
-                 >编辑</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-delete"
 
-                 @click="handleBusinessDelete(scope.row)"
 
-                 >删除</el-button
 
-               >
 
-             </template>
 
-           </el-table-column>
 
-         </el-table>
 
-       </div>
 
-     </div>
 
-     <el-switch
 
-       v-if="type == 4"
 
-       style="margin-top: 30px; margin-left: 30px"
 
-       v-model="selfServiceBank"
 
-       active-text
 
-       inactive-text="是否有在行自助银行"
 
-       :active-value="1"
 
-       :inactive-value="0"
 
-     ></el-switch>
 
-     <div v-if="(type == 4) & (selfServiceBank > 0)" style="margin-top: 30px">
 
-       <h3 class="title">在行自助银行信息</h3>
 
-       <div class="info-box">
 
-         <el-switch
 
-           v-if="false"
 
-           v-model="selfServiceBank"
 
-           active-text
 
-           inactive-text="是否有在行自助银行"
 
-           :active-value="1"
 
-           :inactive-value="0"
 
-         ></el-switch>
 
-         <span>在行式大堂设备</span>
 
-         <div style="display: inline-block; width: 200px">
 
-           <el-input-number
 
-             style="margin-left: 10px"
 
-             v-model="lobbyEquipment"
 
-             controls-position="right"
 
-             @change="handleChange"
 
-             :min="0"
 
-             :max="9999"
 
-           ></el-input-number>
 
-         </div>
 
-         <span style="margin-left: 50px">在行式穿墙设备</span>
 
-         <div style="display: inline-block; width: 200px">
 
-           <el-input-number
 
-             style="margin-left: 10px"
 
-             v-model="wallPenetratingEquipment"
 
-             controls-position="right"
 
-             @change="handleChange"
 
-             :min="0"
 
-             :max="9999"
 
-           ></el-input-number>
 
-         </div>
 
-       </div>
 
-       <div class="info-box">
 
-         <el-button
 
-           style="margin-bottom: 20px"
 
-           type="primary"
 
-           plain
 
-           icon="el-icon-plus"
 
-           size="mini"
 
-           @click="handleBankAdd"
 
-           >新增</el-button
 
-         >
 
-         <el-table
 
-           border
 
-           size="small"
 
-           v-loading="bankloading"
 
-           :data="BankPhysicalDefenseConstructionList"
 
-           @selection-change="handleBankSelectionChange"
 
-         >
 
-           <el-table-column
 
-             type="selection"
 
-             width="55"
 
-             v-if="false"
 
-             align="center"
 
-           />
 
-           <el-table-column type="index" label="序号" align="center" prop="id" />
 
-           <el-table-column label="标准" align="center" prop="standard">
 
-             <template slot-scope="r"
 
-               >{{
 
-                 getLabel(
 
-                   dict.type.org_extend_self_service_bank_standard,
 
-                   `${r.row.standard}`
 
-                 )
 
-               }}
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="达标日期"
 
-             align="center"
 
-             prop="dateOfCompliance"
 
-             width="180"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span>{{
 
-                 formatTime(scope.row.dateOfCompliance, "YYYY-MM-DD")
 
-               }}</span>
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="证书佐证"
 
-             align="center"
 
-             prop="certificateEvidence"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span v-if="scope.row.certificateEvidence > 0">是</span>
 
-               <span v-else>否</span>
 
-             </template></el-table-column
 
-           >
 
-           <!-- <el-table-column label="证书" align="center" prop="certificate" />
 
-           <el-table-column label="佐证" align="center" prop="evidence" /> -->
 
-           <el-table-column
 
-             v-if="false"
 
-             label="机构id"
 
-             align="center"
 
-             prop="orgId"
 
-           />
 
-           <el-table-column
 
-             label="操作"
 
-             align="center"
 
-             class-name="small-padding fixed-width"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-button
 
-                 v-if="scope.row.certificate"
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="downBusiness(scope.row.certificate)"
 
-                 >查看证书</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="handleBankUpdate(scope.row)"
 
-                 >编辑</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-delete"
 
-                 @click="handleBankDelete(scope.row)"
 
-                 >删除</el-button
 
-               >
 
-             </template>
 
-           </el-table-column>
 
-         </el-table>
 
-       </div>
 
-     </div>
 
-     <div v-if="type == 5">
 
-       <h3 class="title">离行自助银行信息</h3>
 
-       <div class="info-box">
 
-         <span>离行式大堂设备</span>
 
-         <div style="display: inline-block; width: 200px">
 
-           <el-input-number
 
-             style="margin-left: 10px"
 
-             v-model="detachedLobbyEquipment"
 
-             controls-position="right"
 
-             @change="handleChange"
 
-             :min="0"
 
-             :max="9999"
 
-           ></el-input-number>
 
-         </div>
 
-         <span style="margin-left: 50px">离行式穿墙设备</span>
 
-         <div style="display: inline-block; width: 200px">
 
-           <el-input-number
 
-             style="margin-left: 10px"
 
-             v-model="detachedWallPenetratingEquipment"
 
-             controls-position="right"
 
-             @change="handleChange"
 
-             :min="0"
 
-             :max="9999"
 
-           ></el-input-number>
 
-         </div>
 
-       </div>
 
-       <div class="info-box">
 
-         <el-button
 
-           style="margin-bottom: 20px"
 
-           type="primary"
 
-           plain
 
-           icon="el-icon-plus"
 
-           size="mini"
 
-           @click="handledetachedAdd"
 
-           >新增</el-button
 
-         >
 
-         <el-table
 
-           border
 
-           size="small"
 
-           v-loading="detachedloading"
 
-           :data="detachedPhysicalDefenseConstructionList"
 
-           @selection-change="handledetachedSelectionChange"
 
-         >
 
-           <el-table-column
 
-             type="selection"
 
-             width="55"
 
-             v-if="false"
 
-             align="center"
 
-           />
 
-           <el-table-column type="index" label="序号" align="center" prop="id" />
 
-           <el-table-column label="标准" align="center" prop="standard">
 
-             <template slot-scope="r"
 
-               >{{
 
-                 getLabel(
 
-                   dict.type.org_extend_detached_standard,
 
-                   `${r.row.standard}`
 
-                 )
 
-               }}
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="达标日期"
 
-             align="center"
 
-             prop="dateOfCompliance"
 
-             width="180"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span>{{
 
-                 formatTime(scope.row.dateOfCompliance, "YYYY-MM-DD")
 
-               }}</span>
 
-             </template>
 
-           </el-table-column>
 
-           <el-table-column
 
-             label="证书佐证"
 
-             align="center"
 
-             prop="certificateEvidence"
 
-           >
 
-             <template slot-scope="scope">
 
-               <span v-if="scope.row.certificateEvidence > 0">是</span>
 
-               <span v-else>否</span>
 
-             </template></el-table-column
 
-           >
 
-           <!-- <el-table-column label="证书" align="center" prop="certificate" />
 
-           <el-table-column label="佐证" align="center" prop="evidence" /> -->
 
-           <el-table-column
 
-             v-if="false"
 
-             label="机构id"
 
-             align="center"
 
-             prop="orgId"
 
-           />
 
-           <el-table-column
 
-             label="操作"
 
-             align="center"
 
-             class-name="small-padding fixed-width"
 
-           >
 
-             <template slot-scope="scope">
 
-               <el-button
 
-                 v-if="scope.row.certificate"
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="downBusiness(scope.row.certificate)"
 
-                 >查看证书</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-edit"
 
-                 @click="handledetachedUpdate(scope.row)"
 
-                 >编辑</el-button
 
-               >
 
-               <el-button
 
-                 size="mini"
 
-                 type="text"
 
-                 icon="el-icon-delete"
 
-                 @click="handledetachedDelete(scope.row)"
 
-                 >删除</el-button
 
-               >
 
-             </template>
 
-           </el-table-column>
 
-         </el-table>
 
-       </div>
 
-     </div>
 
-     <div style="margin-top: 50px; margin-left: 42%">
 
-       <el-button type="primary" @click="saveExtend" size="small"
 
-         >提交</el-button
 
-       >
 
-       <el-button type="primary" @click="nosaveExtend" size="small"
 
-         >取消</el-button
 
-       >
 
-     </div>
 
-     <!-- 添加或编辑业务库物防建设对话框 -->
 
-     <DialogCom
 
-       :title="Businesstitle"
 
-       :visible.sync="Businessopen"
 
-       width="500px"
 
-       append-to-body
 
-     >
 
-       <el-form
 
-         ref="Businessform"
 
-         :model="Businessform"
 
-         :rules="rules"
 
-         label-width="80px"
 
-       >
 
-         <el-form-item label="标准" prop="standard">
 
-           <!-- <el-input v-model="Businessform.standard" placeholder="请输入标准" /> -->
 
-           <el-select
 
-             prop="planType"
 
-             label="标准"
 
-             v-model="Businessform.standard"
 
-             placeholder="请选择标准"
 
-             clearable
 
-           >
 
-             <el-option
 
-               v-for="dict in dict.type.org_extend_business_library_standard"
 
-               :key="dict.value"
 
-               :label="dict.label"
 
-               :value="dict.value"
 
-             />
 
-           </el-select>
 
-         </el-form-item>
 
-         <el-form-item label="达标日期" prop="dateOfCompliance">
 
-           <el-date-picker
 
-             clearable
 
-             v-model="Businessform.dateOfCompliance"
 
-             type="date"
 
-             value-format="yyyy-MM-dd HH:mm:ss"
 
-             placeholder="请选择达标日期"
 
-           >
 
-           </el-date-picker>
 
-         </el-form-item>
 
-         <el-form-item label="证书佐证" prop="certificateEvidence">
 
-           <el-switch
 
-             v-model="Businessform.certificateEvidence"
 
-             active-text
 
-             :active-value="1"
 
-             :inactive-value="0"
 
-           ></el-switch>
 
-         </el-form-item>
 
-         <el-form-item
 
-           v-if="Businessform.certificateEvidence"
 
-           label="证书"
 
-           prop="certificate"
 
-         >
 
-           <!-- <el-input
 
-             v-if="false"
 
-             v-model="Businessform.certificate"
 
-             placeholder="请输入证书"
 
-           /> -->
 
-           <div
 
-             class="image-container"
 
-             style="margin-left: 20px"
 
-             v-if="Businessform.certificateEvidence"
 
-           >
 
-             <p style="font-size: 12px; color: #999">上传证书</p>
 
-             <image-upload
 
-               :limit="5"
 
-               :fileSize="2"
 
-               :value="Businessform.certificate"
 
-               @input="uploadBusinessSuccess"
 
-             ></image-upload>
 
-           </div>
 
-           <!-- <el-button type="primary" @click="resetimg(Businessform.certificate)">重新上传</el-button> -->
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="佐证" prop="evidence">
 
-           <el-input v-model="Businessform.evidence" placeholder="请输入佐证" />
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="机构id" prop="orgId">
 
-           <el-input v-model="Businessform.orgId" placeholder="请输入机构id" />
 
-         </el-form-item>
 
-       </el-form>
 
-       <div slot="footer" class="dialog-footer">
 
-         <el-button type="primary" @click="submitBusinessForm">确 定</el-button>
 
-         <el-button @click="Businesscancel">取 消</el-button>
 
-       </div>
 
-     </DialogCom>
 
-     <!-- 添加或编辑银行物防建设对话框 -->
 
-     <DialogCom
 
-       :title="Banktitle"
 
-       :visible.sync="Bankopen"
 
-       width="500px"
 
-       append-to-body
 
-     >
 
-       <el-form
 
-         ref="Bankform"
 
-         :model="Bankform"
 
-         label-width="80px"
 
-         :rules="rules"
 
-       >
 
-         <el-form-item label="标准" prop="standard">
 
-           <!-- <el-input v-model="Bankform.standard" placeholder="请输入标准" /> -->
 
-           <el-select
 
-             prop="planType"
 
-             label="标准"
 
-             v-model="Bankform.standard"
 
-             placeholder="请选择标准"
 
-             clearable
 
-           >
 
-             <el-option
 
-               v-for="dict in dict.type.org_extend_self_service_bank_standard"
 
-               :key="dict.value"
 
-               :label="dict.label"
 
-               :value="dict.value"
 
-             />
 
-           </el-select>
 
-         </el-form-item>
 
-         <el-form-item label="达标日期" prop="dateOfCompliance">
 
-           <el-date-picker
 
-             clearable
 
-             v-model="Bankform.dateOfCompliance"
 
-             type="date"
 
-             value-format="yyyy-MM-dd HH:mm:ss"
 
-             placeholder="请选择达标日期"
 
-           >
 
-           </el-date-picker>
 
-         </el-form-item>
 
-         <el-form-item label="证书佐证" prop="certificateEvidence">
 
-           <!-- <el-input
 
-             v-model="Bankform.certificateEvidence"
 
-             placeholder="请输入证书佐证"
 
-           /> -->
 
-           <el-switch
 
-             v-model="Bankform.certificateEvidence"
 
-             active-text
 
-             :active-value="1"
 
-             :inactive-value="0"
 
-           ></el-switch>
 
-         </el-form-item>
 
-         <el-form-item
 
-           v-if="Bankform.certificateEvidence"
 
-           label="证书"
 
-           prop="certificate"
 
-         >
 
-           <!-- <el-input
 
-             v-if="false"
 
-             v-model="Bankform.certificate"
 
-             placeholder="请输入证书"
 
-           /> -->
 
-           <div
 
-             class="image-container"
 
-             style="margin-left: 20px"
 
-             v-if="Bankform.certificateEvidence"
 
-           >
 
-             <p style="font-size: 12px; color: #999">上传证书</p>
 
-             <image-upload
 
-               :limit="5"
 
-               :fileSize="2"
 
-               :value="Bankform.certificate"
 
-               @input="uploadBankSuccess"
 
-             ></image-upload>
 
-           </div>
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="佐证" prop="evidence">
 
-           <el-input v-model="Bankform.evidence" placeholder="请输入佐证" />
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="机构id" prop="orgId">
 
-           <el-input v-model="Bankform.orgId" placeholder="请输入机构id" />
 
-         </el-form-item>
 
-       </el-form>
 
-       <div slot="footer" class="dialog-footer">
 
-         <el-button type="primary" @click="submitBankForm">确 定</el-button>
 
-         <el-button @click="Bankcancel">取 消</el-button>
 
-       </div>
 
-     </DialogCom>
 
-     <DialogCom
 
-       :title="orgtitle"
 
-       :visible.sync="orgopen"
 
-       width="500px"
 
-       append-to-body
 
-     >
 
-       <el-form ref="orgform" :model="orgform" label-width="80px" :rules="rules">
 
-         <el-form-item label="标准" prop="standard">
 
-           <!-- <el-input v-model="orgform.standard" placeholder="请输入标准" /> -->
 
-           <el-select
 
-             prop="planType"
 
-             label="标准"
 
-             v-model="orgform.standard"
 
-             placeholder="请选择标准"
 
-             clearable
 
-           >
 
-             <el-option
 
-               v-for="dict in dict.type.org_extend_standard"
 
-               :key="dict.value"
 
-               :label="dict.label"
 
-               :value="dict.value"
 
-             />
 
-           </el-select>
 
-         </el-form-item>
 
-         <el-form-item label="达标日期" prop="dateOfCompliance">
 
-           <el-date-picker
 
-             clearable
 
-             v-model="orgform.dateOfCompliance"
 
-             type="date"
 
-             value-format="yyyy-MM-dd HH:mm:ss"
 
-             placeholder="请选择达标日期"
 
-           >
 
-           </el-date-picker>
 
-         </el-form-item>
 
-         <el-form-item label="证书佐证" prop="certificateEvidence">
 
-           <el-switch
 
-             v-model="orgform.certificateEvidence"
 
-             active-text
 
-             :active-value="1"
 
-             :inactive-value="0"
 
-           ></el-switch>
 
-         </el-form-item>
 
-         <el-form-item
 
-           v-if="orgform.certificateEvidence"
 
-           label="证书"
 
-           prop="certificate"
 
-         >
 
-           <!-- <el-input
 
-             v-if="false"
 
-             v-model="orgform.certificate"
 
-             placeholder="请输入证书"
 
-           /> -->
 
-           <div
 
-             class="image-container"
 
-             style="margin-left: 20px"
 
-             v-if="orgform.certificateEvidence"
 
-           >
 
-             <p style="font-size: 12px; color: #999">上传证书</p>
 
-             <image-upload
 
-               :limit="5"
 
-               :fileSize="2"
 
-               :value="orgform.certificate"
 
-               @input="uploadorgSuccess"
 
-             ></image-upload>
 
-           </div>
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="佐证" prop="evidence">
 
-           <el-input v-model="orgform.evidence" placeholder="请输入佐证" />
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="机构id" prop="orgId">
 
-           <el-input v-model="orgform.orgId" placeholder="请输入机构id" />
 
-         </el-form-item>
 
-       </el-form>
 
-       <div slot="footer" class="dialog-footer">
 
-         <el-button type="primary" @click="submitOrgForm">确 定</el-button>
 
-         <el-button @click="orgcancel">取 消</el-button>
 
-       </div>
 
-     </DialogCom>
 
-     <!-- 添加或编辑离行物防建设对话框 -->
 
-     <DialogCom
 
-       :title="detachedtitle"
 
-       :visible.sync="detachedopen"
 
-       width="500px"
 
-       append-to-body
 
-     >
 
-       <el-form
 
-         ref="detachedform"
 
-         :model="detachedform"
 
-         label-width="80px"
 
-         :rules="rules"
 
-       >
 
-         <el-form-item label="标准" prop="standard">
 
-           <!-- <el-input v-model="detachedform.standard" placeholder="请输入标准" /> -->
 
-           <el-select
 
-             prop="planType"
 
-             label="标准"
 
-             v-model="detachedform.standard"
 
-             placeholder="请选择标准"
 
-             clearable
 
-           >
 
-             <el-option
 
-               v-for="dict in dict.type.org_extend_detached_standard"
 
-               :key="dict.value"
 
-               :label="dict.label"
 
-               :value="dict.value"
 
-             />
 
-           </el-select>
 
-         </el-form-item>
 
-         <el-form-item label="达标日期" prop="dateOfCompliance">
 
-           <el-date-picker
 
-             clearable
 
-             v-model="detachedform.dateOfCompliance"
 
-             type="date"
 
-             value-format="yyyy-MM-dd HH:mm:ss"
 
-             placeholder="请选择达标日期"
 
-           >
 
-           </el-date-picker>
 
-         </el-form-item>
 
-         <el-form-item label="证书佐证" prop="certificateEvidence">
 
-           <!-- <el-input
 
-             v-model="detachedform.certificateEvidence"
 
-             placeholder="请输入证书佐证"
 
-           /> -->
 
-           <el-switch
 
-             v-model="detachedform.certificateEvidence"
 
-             active-text
 
-             :active-value="1"
 
-             :inactive-value="0"
 
-           ></el-switch>
 
-         </el-form-item>
 
-         <el-form-item
 
-           v-if="detachedform.certificateEvidence"
 
-           label="证书"
 
-           prop="certificate"
 
-         >
 
-           <!-- <el-input
 
-             v-if="false"
 
-             v-model="detachedform.certificate"
 
-             placeholder="请输入证书"
 
-           /> -->
 
-           <div
 
-             class="image-container"
 
-             style="margin-left: 20px"
 
-             v-if="detachedform.certificateEvidence"
 
-           >
 
-             <p style="font-size: 12px; color: #999">上传证书</p>
 
-             <image-upload
 
-               :limit="5"
 
-               :fileSize="2"
 
-               :value="detachedform.certificate"
 
-               @input="uploaddetachedSuccess"
 
-             ></image-upload>
 
-           </div>
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="佐证" prop="evidence">
 
-           <el-input v-model="detachedform.evidence" placeholder="请输入佐证" />
 
-         </el-form-item>
 
-         <el-form-item v-if="false" label="机构id" prop="orgId">
 
-           <el-input v-model="detachedform.orgId" placeholder="请输入机构id" />
 
-         </el-form-item>
 
-       </el-form>
 
-       <div slot="footer" class="dialog-footer">
 
-         <el-button type="primary" @click="submitdetachedForm">确 定</el-button>
 
-         <el-button @click="detachedcancel">取 消</el-button>
 
-       </div>
 
-     </DialogCom>
 
-   </div>
 
- </template>
 
- <script>
 
- import uploadpng from "@/assets/images/upload.png";
 
- import uplpng from "@/assets/images/upl.png";
 
- import request from "@/utils/request";
 
- import { statusOptions, getLabel } from "./../../commonOption";
 
- import {
 
-   listExtend,
 
-   getExtend,
 
-   addExtend,
 
-   updateExtend,
 
-   delExtend,
 
-   getExtendByOrgId,
 
-   uploadFile,
 
- } from "@/api/system/extend";
 
- import {
 
-   listDept,
 
-   getDept,
 
-   delDept,
 
-   addDept,
 
-   updateDept,
 
-   listDeptExcludeChild,
 
- } from "@/api/system/dept";
 
- import {
 
-   listOrgPhysicalDefenseConstruction,
 
-   getOrgPhysicalDefenseConstruction,
 
-   addOrgPhysicalDefenseConstruction,
 
-   updateOrgPhysicalDefenseConstruction,
 
-   delOrgPhysicalDefenseConstruction,
 
- } from "@/api/system/OrgPhysicalDefenseConstruction";
 
- import { selectCityInfoVoList } from "@/api/core/weather";
 
- import TreeNodeDialogVue from "../../tool/build/TreeNodeDialog.vue";
 
- export default {
 
-   dicts: [
 
-     "sys_org_type",
 
-     "org_platform_brand",
 
-     "org_platform_supplier_brand",
 
-     "org_extend_type",
 
-     "business_library_type",
 
-     "reality_org_type",
 
-     "org_extend_standard",
 
-     "org_extend_business_library_standard",
 
-     "org_extend_self_service_bank_standard",
 
-     "org_extend_detached_standard",
 
-     "org_extend_is",
 
-     "property_situation",
 
-   ],
 
-   props: [],
 
-   components: {},
 
-   data() {
 
-     let formatRule = function(rule, value, callback) {
 
-       console.log(value,'value')
 
-       if (!value.length) {
 
-         callback(new Error("证书为必填项"));
 
-       } else {
 
-         callback();
 
-       }
 
-     };
 
-     return {
 
-       reqmsg: false,
 
-       //表单验证
 
-       rules: {
 
-         standard: [{ required: true, message: "请输入标准", trigger: "blur" }],
 
-         dateOfCompliance: [
 
-           {
 
-             required: TreeNodeDialogVue,
 
-             message: "请输入达标日期",
 
-             trigger: "blur",
 
-           },
 
-         ],
 
-         certificate: [
 
-           { validator: this.isreq, message: "请选择图片", trigger: "blur" },
 
-         ],
 
-       },
 
-       //基础信息key
 
-       infoKeys: [
 
-         { label: "机构名称", key: "name" },
 
-         // { label: "机构组织类型", key: "type" },
 
-         { label: "部门机构电话", key: "phone" },
 
-         { label: "部门机构地址", key: "address" },
 
-         { label: "排序号", key: "sort" },
 
-         // { label: "是否可用", key: "isLock" },
 
-         { label: "更新时间", key: "updateTime" },
 
-         { label: "同步时间", key: "createTime" },
 
-         { label: "机构简称", key: "shortName" },
 
-       ],
 
-       type: null,
 
-       isLock: null,
 
-       dataInfo: [],
 
-       //机构补充信息
 
-       extendId: null,
 
-       orgType: 1,
 
-       weatherAreaCode: null,
 
-       premisesArea: null,
 
-       ownership: null,
 
-       outsideArea: null,
 
-       askari: 0,
 
-       businessLibrary: 0,
 
-       businessLibraryType: null,
 
-       dutyMode: 0,
 
-       remoteControl: null,
 
-       selfServiceBank: null,
 
-       lobbyEquipment: 0,
 
-       wallPenetratingEquipment: 0,
 
-       platformBrand: null,
 
-       platformSupplierBrand: null,
 
-       constructionTime: null,
 
-       lastUpdateTime: null,
 
-       detachedLobbyEquipment: null,
 
-       detachedWallPenetratingEquipment: null,
 
-       cashAddingRoomRemoteControl: null,
 
-       source: null,
 
-       askariCertificate: null,
 
-       //机构建设数据
 
-       // 遮罩层
 
-       orgloading: true,
 
-       businessloading: true,
 
-       // 选中数组
 
-       orgids: [],
 
-       // 选中数组
 
-       Bankids: [],
 
-       Businessids: [],
 
-       // 非单个禁用
 
-       single: true,
 
-       // 非多个禁用
 
-       multiple: true,
 
-       // 显示搜索条件
 
-       showSearch: true,
 
-       // 总条数
 
-       total: 0,
 
-       // 机构物防建设表格数据
 
-       constructionList: [],
 
-       // 银行物防建设表格数据
 
-       BankPhysicalDefenseConstructionList: [],
 
-       detachedPhysicalDefenseConstructionList: [],
 
-       BusinessPhysicalDefenseConstructionList: [],
 
-       // 弹出层标题
 
-       orgtitle: "",
 
-       Businesstitle: "",
 
-       // 弹出层标题
 
-       Banktitle: "",
 
-       detachedtitle: "",
 
-       detachedloading: false,
 
-       // 是否显示弹出层
 
-       Bankopen: false,
 
-       detachedopen: false,
 
-       // 表单参数
 
-       Bankform: {},
 
-       detachedform: {},
 
-       Businessform: {},
 
-       // 是否显示弹出层
 
-       Businessopen: false,
 
-       orgopen: false,
 
-       // 表单参数
 
-       orgform: {},
 
-       //2个图片信息
 
-       uploadp: uploadpng,
 
-       uplp: uplpng,
 
-       //下拉框生成信息
 
-       orgTypes: {
 
-         orgTyp1: { label: "营业网点", value: 0 },
 
-         orgTyp2: { label: "监控中心", value: 1 },
 
-       },
 
-       businessLibraryTypes: {
 
-         businessLibraryTyp1: { label: "1类业务库", value: 1 },
 
-         businessLibraryTyp2: { label: "2类业务库", value: 2 },
 
-         businessLibraryTyp3: { label: "3类业务库", value: 3 },
 
-       },
 
-       platformBrands: {
 
-         platformBrand1: { label: "品牌1", value: 0 },
 
-         platformBrand2: { label: "品牌2", value: 1 },
 
-       },
 
-       platformSupplierBrands: {
 
-         platformSupplierBrand1: { label: "品牌1", value: 0 },
 
-         platformSupplierBrand2: { label: "品牌2", value: 1 },
 
-       },
 
-       prop: "",
 
-       propItem: "",
 
-       row: "",
 
-       areaList: [],
 
-       imgs: [],
 
-       Businessimgs: [],
 
-       Bankimgs: [],
 
-       orgimgs: [],
 
-       detachedimgs: [],
 
-     };
 
-   },
 
-   watch: {
 
-     "detachedform.certificateEvidence"(newValue) {
 
-       if (newValue === 1&&this.detachedform.certificate==null&&this.detachedimgs.length==0) {
 
-         this.reqmsg = true;
 
-       }
 
-       if (newValue === 0) {
 
-         this.reqmsg = false;
 
-       }
 
-     },
 
-     "Bankform.certificateEvidence"(newValue) {
 
-       // console.log(this.Bankimgs.length,"this.imgs")
 
-       // console.log(this.Bankform.certificate,"Bankform.certificate")
 
-       if (newValue === 1&&this.Bankform.certificate==null&&this.Bankimgs.length==0) {
 
-         this.reqmsg = true;
 
-       }
 
-       if (newValue === 0) {
 
-         this.reqmsg = false;
 
-       }
 
-     },
 
-     "Businessform.certificateEvidence"(newValue) {
 
-       if (newValue === 1&&this.Businessform.certificate==null&&this.Businessimgs.length==0) {
 
-         this.reqmsg = true;
 
-       }
 
-       if (newValue === 0) {
 
-         this.reqmsg = false;
 
-       }
 
-     },
 
-     "orgform.certificateEvidence"(newValue) {
 
-       if (newValue === 1&&this.orgform.certificate==null&&this.orgimgs.length==0) {
 
-         this.reqmsg = true;
 
-       }
 
-       if (newValue === 0) {
 
-         this.reqmsg = false;
 
-       }
 
-     },
 
-   },
 
-   computed: {
 
-     switchModel: {
 
-       get() {
 
-         return this.switchValue === 1; // 将0转换为false,1转换为true
 
-       },
 
-       set(value) {
 
-         this.switchValue = value ? 1 : 0; // 将false转换为0,true转换为1
 
-       },
 
-     },
 
-   },
 
-   created() {
 
-     this.getOrgInfo();
 
-     this.getExtendInfo();
 
-     this.getOrgPhysicalDefenseConstructionInfo();
 
-     this.getBankPhysicalDefenseConstructionInfo();
 
-     this.getBusinessPhysicalDefenseConstructionInfo();
 
-     this.getdetachedPhysicalDefenseConstructionInfo();
 
-     this.getAreaList();
 
-   },
 
-   mounted() {},
 
-   methods: {
 
-     isreq(rule, value, callback) {
 
-       if (this.reqmsg) {
 
-         callback(new Error("证书为必填项"));
 
-       } else {
 
-         callback();
 
-       }
 
-     },
 
-     // getImgUrl(fileList) {
 
-     //   let matchResult = fileList.match(/\/statics(.*)/);
 
-     //   if (matchResult) {
 
-     //     let result = matchResult[0];
 
-     //     this.askariCertificate = result;
 
-     //   } else {
 
-     //   }
 
-     //   // this.askariCertificate=img;
 
-     //   console.log(this.askariCertificate, "imgs");
 
-     // },
 
-     getImgUrl(img) {
 
-       this.imgs.push(img);
 
-       // console.log(this.imgs, "imgs");
 
-     },
 
-     getAreaList() {
 
-       selectCityInfoVoList({}).then((response) => {
 
-         this.areaList = response.data;
 
-       });
 
-     },
 
-     selectArea(value) {
 
-       this.weatherAreaCode = value[1];
 
-     },
 
-     downBusiness(file) {
 
-       let array = file.split(',');
 
-       console.log(array)
 
-       for (let i = 0; i < array.length; i++) {
 
-         window.open(array[i]);
 
-       }
 
-     },
 
-     //证书上传
 
-     uploadBusinessSuccess(img) {
 
-       this.Businessimgs.push(img);
 
-       this.reqmsg = false;
 
-     },
 
-     uploadBankSuccess(img) {
 
-       this.Bankimgs.push(img);
 
-       this.reqmsg = false;
 
-     },
 
-     uploadorgSuccess(img) {
 
-       this.orgimgs.push(img);
 
-       this.reqmsg = false;
 
-     },
 
-     uploaddetachedSuccess(img) {
 
-       this.detachedimgs.push(img);
 
-       this.reqmsg = false;
 
-     },
 
-     handleInput() {
 
-       // 使用正则表达式过滤输入,只保留数字和小数点
 
-       // this.premisesArea = this.premisesArea.replace(/[^0-9.]/g, "");
 
-       // 限制只能输入1到999999之间的数字
 
-       let value = parseInt(this.premisesArea, 10); // 将输入的值转为整数
 
-       if (isNaN(value) || value < 1 || value > 999999) {
 
-         // 判断是否在范围内
 
-         this.premisesArea = ""; // 不在范围内则清空输入的值
 
-       } else {
 
-         this.premisesArea = value.toString(); // 在范围内则保留输入的值
 
-       }
 
-     },
 
-     handleInput2() {
 
-       // 使用正则表达式过滤输入,只保留数字和小数点
 
-       this.weatherAreaCode = this.weatherAreaCode.replace(/[^a-zA-Z0-9]/g, "");
 
-     },
 
-     request() {},
 
-     handleChange(value) {},
 
-     getOrgInfo() {
 
-       getDept(this.$route.params.id).then((data) => {
 
-         // console.log(data.data);
 
-         if (!data.data) return;
 
-         let res = data.data;
 
-         this.dataInfo = this.infoKeys.map((v, i) => {
 
-           // console.log(v, res[v.key], "vvvvv");
 
-           v.value = res[v.key];
 
-           return v;
 
-         });
 
-         this.type = data.data.type;
 
-         this.isLock = data.data.isLock;
 
-         this.source = data.data.source;
 
-         // console.log(this.dataInfo, "info");
 
-       });
 
-     },
 
-     getExtendInfo() {
 
-       getExtendByOrgId(this.$route.params.id).then((data) => {
 
-         console.log(data.data);
 
-         if (data.data != null) {
 
-           this.orgType = data.data.orgType;
 
-           this.weatherAreaCode = data.data.weatherAreaCode;
 
-           this.premisesArea = data.data.premisesArea;
 
-           this.ownership = data.data.ownership;
 
-           this.outsideArea = data.data.outsideArea;
 
-           this.askari = data.data.askari;
 
-           this.remoteControl = data.data.remoteControl;
 
-           this.selfServiceBank = data.data.selfServiceBank;
 
-           this.businessLibrary = data.data.businessLibrary;
 
-           this.lobbyEquipment = data.data.lobbyEquipment;
 
-           this.wallPenetratingEquipment = data.data.wallPenetratingEquipment;
 
-           this.askariCertificate = data.data.askariCertificate;
 
-           this.extendId = data.data.id;
 
-           this.constructionTime = data.data.constructionTime;
 
-           this.lastUpdateTime = data.data.lastUpdateTime;
 
-           this.platformBrand = data.data.platformBrand;
 
-           this.platformSupplierBrand = data.data.platformSupplierBrand;
 
-           this.businessLibraryType = data.data.businessLibraryType;
 
-           this.dutyMode = data.data.dutyMode;
 
-           this.detachedLobbyEquipment = data.data.detachedLobbyEquipment;
 
-           this.detachedWallPenetratingEquipment =
 
-             data.data.detachedWallPenetratingEquipment;
 
-           this.cashAddingRoomRemoteControl =
 
-             data.data.cashAddingRoomRemoteControl;
 
-           // if (
 
-           //   this.askariCertificate &&
 
-           //   this.askariCertificate.trim() &&
 
-           //   this.askariCertificate.includes(",")
 
-           // ) {
 
-           //   this.imgs = this.askariCertificate.split(",");
 
-           // } else if (
 
-           //   this.askariCertificate &&
 
-           //   this.askariCertificate.trim() &&
 
-           //   this.askariCertificate.includes(".")
 
-           // ) {
 
-           //   this.imgs.push(this.askariCertificate);
 
-           // }
 
-           // console.log(this.extendId);
 
-         }
 
-       });
 
-     },
 
-     getLabel(options, value) {
 
-       return getLabel(options, value);
 
-     },
 
-     getOrgPhysicalDefenseConstructionInfo() {
 
-       this.orgloading = true;
 
-       let dat = { orgId: this.$route.params.id, type: 1 };
 
-       listOrgPhysicalDefenseConstruction(dat).then((data) => {
 
-         console.log("机构信息获取成功");
 
-         this.constructionList = data.rows;
 
-         this.orgloading = false;
 
-       });
 
-     },
 
-     getBankPhysicalDefenseConstructionInfo() {
 
-       this.bankloading = true;
 
-       let dat = { orgId: this.$route.params.id, type: 3 };
 
-       listOrgPhysicalDefenseConstruction(dat).then((data) => {
 
-         // console.log(data);
 
-         this.BankPhysicalDefenseConstructionList = data.rows;
 
-         this.bankloading = false;
 
-       });
 
-     },
 
-     getdetachedPhysicalDefenseConstructionInfo() {
 
-       this.detachedloading = true;
 
-       let dat = { orgId: this.$route.params.id, type: 4 };
 
-       listOrgPhysicalDefenseConstruction(dat).then((data) => {
 
-         // console.log(data);
 
-         this.detachedPhysicalDefenseConstructionList = data.rows;
 
-         this.detachedloading = false;
 
-       });
 
-     },
 
-     getBusinessPhysicalDefenseConstructionInfo() {
 
-       this.businessloading = true;
 
-       let dat = { orgId: this.$route.params.id, type: 2 };
 
-       listOrgPhysicalDefenseConstruction(dat).then((data) => {
 
-         // console.log(data);
 
-         this.BusinessPhysicalDefenseConstructionList = data.rows;
 
-         this.businessloading = false;
 
-       });
 
-     },
 
-     // 取消按钮
 
-     Businesscancel() {
 
-       this.Businessopen = false;
 
-       this.Businessreset();
 
-     },
 
-     // 表单重置
 
-     Businessreset() {
 
-       this.Businessform = {
 
-         id: null,
 
-         standard: null,
 
-         dateOfCompliance: null,
 
-         certificateEvidence: null,
 
-         certificate: null,
 
-         evidence: null,
 
-         createTime: null,
 
-         updateTime: null,
 
-         createBy: null,
 
-         updateBy: null,
 
-         orgId: null,
 
-       };
 
-       this.reqmsg = false;
 
-       this.resetForm("Businessform");
 
-     },
 
-     // 多选框选中数据
 
-     handleBusinessSelectionChange(selection) {
 
-       this.Businessids = selection.map((item) => item.id);
 
-       this.single = selection.length !== 1;
 
-       this.multiple = !selection.length;
 
-     },
 
-     /** 新增按钮操作 */
 
-     handleBusinessAdd() {
 
-       this.Businessreset();
 
-       this.Businessopen = true;
 
-       this.Businesstitle = "新增安全防范设施建设达标情况";
 
-     },
 
-     /** 编辑按钮操作 */
 
-     handleBusinessUpdate(row) {
 
-       this.Businessreset();
 
-       const id = row.id || this.Businessids;
 
-       getOrgPhysicalDefenseConstruction(id).then((response) => {
 
-         // console.log(response.data,"response.data")
 
-         this.Businessform = response.data;
 
-         this.Businessopen = true;
 
-         this.Businesstitle = "编辑安全防范设施建设达标情况";
 
-       });
 
-     },
 
-     /** 提交按钮 */
 
-     submitBusinessForm() {
 
-       if(this.Businessimgs.length>0){
 
-         this.Businessform.certificate= this.Businessimgs[this.Businessimgs.length - 1].toString(",");
 
-       }
 
-      
 
-       this.$refs.Businessform.validate((valid) => {
 
-         if (valid) {
 
-           // 表单验证通过,提交数据或执行其他操作
 
-           this.Businessform.orgId = this.$route.params.id;
 
-           this.Businessform.type = 2;
 
-           if (this.Businessform.id != null) {
 
-             // console.log(this.Businessform,"this.Businessform")
 
-             updateOrgPhysicalDefenseConstruction(this.Businessform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("编辑成功");
 
-                 this.Businessopen = false;
 
-                 this.getBusinessPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           } else {
 
-             addOrgPhysicalDefenseConstruction(this.Businessform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("新增成功");
 
-                 this.Businessopen = false;
 
-                 this.getBusinessPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           }
 
-           this.Businessimgs=[];
 
-         } else {
 
-           // 表单验证未通过,显示错误信息
 
-         }
 
-       });
 
-       // this.$refs["Businessform"].validate((valid) => {
 
-       //   if (valid) {
 
-       //   }
 
-       // });
 
-     },
 
-     /** 删除按钮操作 */
 
-     handleBusinessDelete(row) {
 
-       const Businessids = row.id || this.Businessids;
 
-       this.$modal
 
-         .confirm("确认删除?")
 
-         .then(function () {
 
-           return delOrgPhysicalDefenseConstruction(Businessids);
 
-         })
 
-         .then(() => {
 
-           this.getBusinessPhysicalDefenseConstructionInfo();
 
-           this.$modal.msgSuccess("删除成功");
 
-         })
 
-         .catch(() => {});
 
-     },
 
-     // resetimg(certificate){
 
-     //   this.Bankform.certificate=0;
 
-     // },
 
-     // 取消按钮
 
-     Bankcancel() {
 
-       this.Bankopen = false;
 
-       this.Bankreset();
 
-     },
 
-     // 表单重置
 
-     Bankreset() {
 
-       this.Bankform = {
 
-         id: null,
 
-         standard: null,
 
-         dateOfCompliance: null,
 
-         certificateEvidence: null,
 
-         certificate: null,
 
-         evidence: null,
 
-         createTime: null,
 
-         updateTime: null,
 
-         createBy: null,
 
-         updateBy: null,
 
-         orgId: null,
 
-       };
 
-       this.reqmsg = false;
 
-       this.resetForm("Bankform");
 
-     },
 
-     // 多选框选中数据
 
-     handleBankSelectionChange(selection) {
 
-       this.Bankids = selection.map((item) => item.id);
 
-       this.single = selection.length !== 1;
 
-       this.multiple = !selection.length;
 
-     },
 
-     /** 新增按钮操作 */
 
-     handleBankAdd() {
 
-       
 
-       this.Bankreset();
 
-       this.Bankopen = true;
 
-       this.Banktitle = "新增安全防范设施建设达标情况";
 
-     },
 
-     /** 编辑按钮操作 */
 
-     handleBankUpdate(row) {
 
-       this.Bankreset();
 
-       const id = row.id || this.Bankids;
 
-       getOrgPhysicalDefenseConstruction(id).then((response) => {
 
-         this.Bankform = response.data;
 
-         this.Bankopen = true;
 
-         this.Banktitle = "编辑安全防范设施建设达标情况";
 
-       });
 
-     },
 
-     /** 提交按钮 */
 
-     submitBankForm() {
 
-       if(this.Bankimgs.length>0){
 
-         this.Bankform.certificate= this.Bankimgs[this.Bankimgs.length - 1].toString(",");
 
-       }
 
-       
 
-       this.$refs.Bankform.validate((valid) => {
 
-         if (valid) {
 
-           // 表单验证通过,提交数据或执行其他操作
 
-           this.Bankform.orgId = this.$route.params.id;
 
-           this.Bankform.type = 3;
 
-           if (this.Bankform.id != null) {
 
-             updateOrgPhysicalDefenseConstruction(this.Bankform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("编辑成功");
 
-                 this.Bankopen = false;
 
-                 this.getBankPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           } else {
 
-             addOrgPhysicalDefenseConstruction(this.Bankform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("新增成功");
 
-                 this.Bankopen = false;
 
-                 this.getBankPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           }
 
-           this.Bankimgs = [];
 
-         } else {
 
-           // 表单验证未通过,显示错误信息
 
-         }
 
-       });
 
-       
 
-       // this.$refs["Bankform"].validate((valid) => {
 
-       //   if (valid) {
 
-       //   }
 
-       // });
 
-     },
 
-     /** 删除按钮操作 */
 
-     handleBankDelete(row) {
 
-       const Bankids = row.id || this.Bankids;
 
-       this.$modal
 
-         .confirm("确认删除?")
 
-         .then(function () {
 
-           return delOrgPhysicalDefenseConstruction(Bankids);
 
-         })
 
-         .then(() => {
 
-           this.getBankPhysicalDefenseConstructionInfo();
 
-           this.$modal.msgSuccess("删除成功");
 
-         })
 
-         .catch(() => {});
 
-     },
 
-     // 取消按钮
 
-     detachedcancel() {
 
-       this.detachedopen = false;
 
-       this.detachedreset();
 
-     },
 
-     // 表单重置
 
-     detachedreset() {
 
-       this.detachedform = {
 
-         id: null,
 
-         standard: null,
 
-         dateOfCompliance: null,
 
-         certificateEvidence: null,
 
-         certificate: null,
 
-         evidence: null,
 
-         createTime: null,
 
-         updateTime: null,
 
-         createBy: null,
 
-         updateBy: null,
 
-         orgId: null,
 
-       };
 
-       this.reqmsg = false;
 
-       this.resetForm("detachedform");
 
-     },
 
-     // 多选框选中数据
 
-     handledetachedSelectionChange(selection) {
 
-       this.detachedids = selection.map((item) => item.id);
 
-       this.single = selection.length !== 1;
 
-       this.multiple = !selection.length;
 
-     },
 
-     /** 新增按钮操作 */
 
-     handledetachedAdd() {
 
-       this.detachedreset();
 
-       this.detachedopen = true;
 
-       this.detachedtitle = "新增安全防范设施建设达标情况";
 
-     },
 
-     /** 编辑按钮操作 */
 
-     handledetachedUpdate(row) {
 
-       this.detachedreset();
 
-       const id = row.id || this.detachedids;
 
-       getOrgPhysicalDefenseConstruction(id).then((response) => {
 
-         this.detachedform = response.data;
 
-         this.detachedopen = true;
 
-         this.detachedtitle = "编辑安全防范设施建设达标情况";
 
-       });
 
-     },
 
-     /** 提交按钮 */
 
-     submitdetachedForm() {
 
-       if(this.detachedimgs.length>0){
 
-         this.detachedform.certificate= this.detachedimgs[this.detachedimgs.length - 1].toString(",");
 
-       }
 
-      
 
-       this.$refs.detachedform.validate((valid) => {
 
-         if (valid) {
 
-           // 表单验证通过,提交数据或执行其他操作
 
-           this.detachedform.orgId = this.$route.params.id;
 
-           this.detachedform.type = 4;
 
-  
 
-           if (this.detachedform.id != null) {
 
-             updateOrgPhysicalDefenseConstruction(this.detachedform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("编辑成功");
 
-                 this.detachedopen = false;
 
-                 this.getdetachedPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-             
 
-           } else {
 
-             addOrgPhysicalDefenseConstruction(this.detachedform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("新增成功");
 
-                 this.detachedopen = false;
 
-                 this.getdetachedPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           }
 
-           this.detachedimgs=[];
 
-         } else {
 
-           // 表单验证未通过,显示错误信息
 
-         }
 
-       });
 
-       // this.$refs["detachedform"].validate((valid) => {
 
-       //   if (valid) {
 
-       //   }
 
-       // });
 
-     },
 
-     /** 删除按钮操作 */
 
-     handledetachedDelete(row) {
 
-       const detachedids = row.id || this.detachedids;
 
-       this.$modal
 
-         .confirm("确认删除?")
 
-         .then(function () {
 
-           return delOrgPhysicalDefenseConstruction(detachedids);
 
-         })
 
-         .then(() => {
 
-           this.getdetachedPhysicalDefenseConstructionInfo();
 
-           this.$modal.msgSuccess("删除成功");
 
-         })
 
-         .catch(() => {});
 
-     },
 
-     // 表单重置
 
-     orgreset() {
 
-       this.orgform = {
 
-         id: null,
 
-         standard: null,
 
-         dateOfCompliance: null,
 
-         certificateEvidence: null,
 
-         certificate: null,
 
-         evidence: null,
 
-         createTime: null,
 
-         updateTime: null,
 
-         createBy: null,
 
-         updateBy: null,
 
-         orgId: null,
 
-       };
 
-       this.reqmsg = false;
 
-       this.resetForm("orgform");
 
-     },
 
-     // 取消按钮
 
-     orgcancel() {
 
-       this.orgopen = false;
 
-       this.orgreset();
 
-     },
 
-     // 多选框选中数据
 
-     handleOrgSelectionChange(selection) {
 
-       this.orgids = selection.map((item) => item.id);
 
-       this.single = selection.length !== 1;
 
-       this.multiple = !selection.length;
 
-     },
 
-     /** 新增按钮操作 */
 
-     handleOrgAdd() {
 
-       this.orgreset();
 
-       this.orgopen = true;
 
-       this.orgtitle = "新增安全防范设施建设达标情况";
 
-     },
 
-     /** 编辑按钮操作 */
 
-     handleOrgUpdate(row) {
 
-       this.orgreset();
 
-       const id = row.id || this.orgids;
 
-       getOrgPhysicalDefenseConstruction(id).then((response) => {
 
-         
 
-         this.orgform = response.data;
 
-         this.orgopen = true;
 
-         console.log(response.data.certificateEvidence,"response.data.certificateEvidence")
 
-         this.orgform.certificateEvidence=1;
 
-         console.log(this.orgform,"this.orgform")
 
-         this.orgtitle = "编辑安全防范设施建设达标情况";
 
-       });
 
-     },
 
-     /** 提交按钮 */
 
-     submitOrgForm() {
 
-       // console.log(this.orgimgs,"this.orgimgs")
 
-       // console.log(this.orgform.certificate,"this.orgform.certificate")
 
-       if(this.orgimgs.length>0){
 
-         this.orgform.certificate= this.orgimgs[this.orgimgs.length - 1].toString(",");
 
-       }
 
-       // console.log(this.orgimgs,"this.orgimgs1")
 
-       // console.log(this.orgform.certificate,"this.orgform.certificate1")
 
-       this.$refs.orgform.validate((valid) => {
 
-         if (valid) {
 
-           // 表单验证通过,提交数据或执行其他操作
 
-           this.orgform.orgId = this.$route.params.id;
 
-           this.orgform.type = 1;
 
-   
 
-           if (this.orgform.id != null) {
 
-             updateOrgPhysicalDefenseConstruction(this.orgform).then(
 
-               (response) => {
 
-                 this.$modal.msgSuccess("编辑成功");
 
-                 this.orgopen = false;
 
-                 this.getOrgPhysicalDefenseConstructionInfo();
 
-               }
 
-             );
 
-           } else {
 
-             addOrgPhysicalDefenseConstruction(this.orgform).then((response) => {
 
-               this.$modal.msgSuccess("新增成功");
 
-               this.orgopen = false;
 
-               this.getOrgPhysicalDefenseConstructionInfo();
 
-             });
 
-           }
 
-           this.orgimgs=[];
 
-         } else {
 
-           // 表单验证未通过,显示错误信息
 
-         }
 
-       });
 
-       // this.$refs["orgform"].validate((valid) => {
 
-       //   if (valid) {
 
-       //   }
 
-       // });
 
-     },
 
-     /** 删除按钮操作 */
 
-     handleOrgDelete(row) {
 
-       const orgids = row.id || this.orgids;
 
-       this.$modal
 
-         .confirm("确认删除?")
 
-         .then(function () {
 
-           return delOrgPhysicalDefenseConstruction(orgids);
 
-         })
 
-         .then(() => {
 
-           this.getOrgPhysicalDefenseConstructionInfo();
 
-           this.$modal.msgSuccess("删除成功");
 
-         })
 
-         .catch(() => {});
 
-     },
 
-     saveExtend() {
 
-       let dat = {
 
-         orgType: this.orgType,
 
-         weatherAreaCode: this.weatherAreaCode,
 
-         askariCertificate: this.imgs.length>0?this.imgs[this.imgs.length - 1].toString(","):null,
 
-         premisesArea: this.premisesArea,
 
-         ownership: this.ownership,
 
-         outsideArea: this.outsideArea,
 
-         askari: this.askari ? 1 : 0,
 
-         businessLibraryType: this.businessLibraryType,
 
-         dutyMode: this.dutyMode,
 
-         remoteControl: this.remoteControl ? 1 : 0,
 
-         selfServiceBank: this.selfServiceBank ? 1 : 0,
 
-         businessLibrary: this.businessLibrary ? 1 : 0,
 
-         lobbyEquipment: this.lobbyEquipment,
 
-         wallPenetratingEquipment: this.wallPenetratingEquipment,
 
-         platformBrand: this.platformBrand,
 
-         platformSupplierBrand: this.platformSupplierBrand,
 
-         constructionTime: this.constructionTime,
 
-         lastUpdateTime: this.lastUpdateTime,
 
-         orgId: this.$route.params.id,
 
-         id: this.extendId,
 
-         detachedLobbyEquipment: this.detachedLobbyEquipment,
 
-         detachedWallPenetratingEquipment: this.detachedWallPenetratingEquipment,
 
-         cashAddingRoomRemoteControl: this.cashAddingRoomRemoteControl,
 
-       };
 
-       // console.log(dat);
 
-       if (this.extendId) {
 
-         updateExtend(dat).then((res) => {
 
-           this.$modal.msgSuccess("保存成功");
 
-           // this.$router.go(-1);
 
-           this.$tab.closePageAndPushPrev();
 
-         });
 
-       } else {
 
-         addExtend(dat).then((res) => {
 
-           this.$modal.msgSuccess("保存成功");
 
-           // this.$router.go(-1);
 
-           this.$tab.closePageAndPushPrev();
 
-         });
 
-       }
 
-     },
 
-     nosaveExtend() {
 
-       // this.$router.go(-1);
 
-       this.$tab.closePageAndPushPrev();
 
-     },
 
-     triggerFileInput() {
 
-       this.$refs.fileInput.click();
 
-     },
 
-     async handleFileChange(event) {
 
-       const file = event.target.files[0];
 
-       if (!file) return;
 
-       // // 创建 FormData 对象并添加文件
 
-       // const formData = new FormData();
 
-       // formData.append("file", file);
 
-       // // 发送文件到您的文件上传 API
 
-       try {
 
-         uploadFile(file, "org").then((res) => {
 
-           console.log(res);
 
-           // this.orgform.certificateEvidence = res.data;
 
-         });
 
-         // 处理上传成功的逻辑
 
-         console.log("上传成功");
 
-       } catch (error) {
 
-         // 处理上传失败的逻辑
 
-         console.log("上传失败");
 
-       }
 
-       // try {
 
-       //   const response = await request.post('http://localhost:9527/dev-api/file/file/upload', formData, {
 
-       //     headers: {
 
-       //       'Content-Type': 'multipart/form-data',
 
-       //     },
 
-       //   });
 
-       //   // 处理上传成功的逻辑
 
-       //   console.log('上传成功', response);
 
-       // } catch (error) {
 
-       //   // 处理上传失败的逻辑
 
-       //   console.log('上传失败', error);
 
-       // }
 
-       // 重置 input 元素,以便下次选择相同文件时仍能触发 change 事件
 
-       event.target.value = "";
 
-     },
 
-   },
 
-   fillter: {},
 
- };
 
- </script>
 
- <style scoped lang="scss">
 
- .title {
 
-   font-size: 18px;
 
-   text-align: left;
 
-   background: #008cd6bd;
 
-   color: #fff;
 
-   height: 36px;
 
-   line-height: 36px;
 
-   padding-left: 8px;
 
-   margin: 0;
 
- }
 
- .info-box {
 
-   margin: 30px;
 
- }
 
- .demo-form-inline {
 
- }
 
- .dialog-footer {
 
- }
 
- .container {
 
- }
 
- .zoom-image {
 
-   transition: transform 0.3s ease;
 
- }
 
- .zoom-image:hover {
 
-   transform: scale(1.02);
 
- }
 
- .border-color-change {
 
-   border: 1px solid #ccc;
 
-   transition: border-color 0.3s ease;
 
- }
 
- .border-color-change:hover {
 
-   border-color: #1ea8e9;
 
-   /* 您可以将此颜色更改为所需的颜色 */
 
- }
 
- </style>
 
 
  |