| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334 |
- <template>
- <div class='liClass'>
- <a-page-header
- style="background-color: #FFFFFF;margin-bottom:10px"
- title="上传资料"
- sub-title=""
- @back="goBack"
- ></a-page-header>
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-card style="margin-bottom:10px;color: #000000d9;font-size: 15px;line-height: 2.5;">
- <div>
- <span>1.请选择所上传资料的卡类型</span>
- </div>
- <a-radio-group style="position: relative;left: 30px"
- @change="controlChange" v-model:value="infoModel.blockType" >
- <a-radio :value="'model'">正式卡</a-radio>
- <a-radio :value="'test'">测试卡</a-radio>
- </a-radio-group>
- <div v-if="infoModel.blockType != 'test'">
- <span style="display: block">2.是否突破价格管控</span>
- <a-radio-group style="position: relative;left: 30px;"
- @change="controlChange" v-model:value="infoModel.control">
- <a-radio :value="'controlY'">是</a-radio>
- <a-radio :value="'controlN'">否</a-radio>
- </a-radio-group>
- </div>
- </a-card>
- <a-card style="margin-bottom:10px;color: #000000d9;font-size: 15px;line-height: 2.5;">
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="客户编号"prop="customerNo" v-bind="labelCol4" >
- <a-input v-model="infoModel.customerNo" placeholder="客户编号" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户发展员工" prop="staffNo" v-bind="labelCol4">
- <a-input :disabled='true' v-model="infoModel.staffNo" placeholder="用户发展员工" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="发展员工姓名" prop="staffNo" v-bind="labelCol4">
- <a-input v-model="infoModel.staffName" placeholder="发展员工姓名" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户编号" v-bind="labelCol4" >
- <a-input v-model="infoModel.userNo" placeholder="用户编号" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="入网时间" prop="networkAccessTime" v-bind="labelCol4" >
- <a-input v-model="infoModel.networkAccessTime" placeholder="入网时间" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="用户状态"v-bind="labelCol4" prop="userState" >
- <j-dict-select-tag placeholder="请选择用户状态" v-model="infoModel.userState" dictCode="user_status_2"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户名称(全)" prop="customerName" v-bind="labelCol4">
- <a-input v-model="infoModel.customerName" placeholder="客户名称/使用人名称"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="服务号码(全)" prop="smsNumber" v-bind="labelCol4">
- <a-input v-model="infoModel.smsNumber" placeholder="请输入服务号码(全)" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户经理" prop="manage" v-bind="labelCol4">
- <a-input v-model="infoModel.manage" placeholder="客户经理" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户经理手机号" prop="managePhone" v-bind="labelCol4">
- <a-input v-model="infoModel.managePhone" placeholder="客户经理手机号"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="使用场景" prop="scene" v-bind="labelCol4">
- <a-input v-model="infoModel.scene" placeholder="例-车联网-乘用车-智能后视镜"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="资料是否完整" prop="isAll" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.isAll" button-style="solid" >
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="是否完成整改" prop="isComplete" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.isComplete" button-style="solid" >
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.contractDateIs==="" || infoModel.contractDateIs===null || infoModel.contractDateIs==="1" '>
- <a-form-model-item label="合同到期时间是否长期" prop="contractDateIs" v-bind="labelCol7">
- <a-radio-group v-model="infoModel.contractDateIs" button-style="solid" :disabled="infoModel.infoResult==='1'?true:false">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.contractDateIs==="0" ' >
- <a-form-model-item label="合同到期时间" prop="contractDate" v-bind="labelCol4">
- <a-date-picker style="min-width:50px; width: 64% " v-model="infoModel.contractDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- <a-button @click="backDate('contractDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.businessLicenseDateIs==="" || infoModel.businessLicenseDateIs===null || infoModel.businessLicenseDateIs==="1" '>
- <a-form-model-item label="营业执照有效期是否长期" prop="businessLicenseDateIs" v-bind="labelCol7">
- <a-radio-group :disabled="infoModel.infoResult==='1'?true:false" v-model="infoModel.businessLicenseDateIs" button-style="solid" >
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.businessLicenseDateIs==="0"'>
- <a-form-model-item label="营业执照到期时间" prop="businessLicenseDate" v-bind="labelCol4">
- <a-date-picker style="min-width:50px; width: 64% " v-model="infoModel.businessLicenseDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- <a-button @click="backDate('businessLicenseDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-card>
- </a-form-model>
- <!-- 步骤条-->
- <a-card style="margin-bottom:10px;width: 15%;float: left">
- <!-- v-model:current="current"-->
- <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick">
- <a-step v-for="item in steps.stepsNow" :key="item.title" :title="item.title" :status="item.status"/>
- </a-steps>
- <a-button @click="addIsStaging" style="width: 100%" type="warn">暂存</a-button>
- <a-button @click="submitAuditLot" style="width: 100%;position: relative;top: 10px" type="primary">提交申请</a-button>
- </a-card>
- <!-- 测试卡申请单-->
- <a-card v-if="steps.currentId === 'testCard'" style="margin-bottom:10px; float: left;width: 83%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">测试卡申请单</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)测试卡申请单是否加盖公章</li>
- <li>2)测试卡申请单中经办人、责任人身份证是否一致</li>
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.testCardRemark"
- @change="textareaChange('testCard','testCardRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'testCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 30px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.testCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'testCard')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.testCard"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'testCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 合同要求-->
- <a-card v-if="steps.currentId === 'contract'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">合同要求</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left;width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul style='font-size:0px;'>
- <li>1)是否在有效期</li>
- <li>2)是否明确场景,如车联网,水表等,且与风险评估表一致</li>
- <li>3)是否明确开通功能,如语音,短信,流量等</li>
- <li>4)是否明确功能限制,如定向、机卡绑定、卡片限定、限额管控、黑名单限制等</li>
- <li>5)是否明确白名单数量,具体号码,地址等</li>
- <li>6)是否明确禁止二次销售</li>
- <li>7)是否明确防范垃圾短信和骚扰电话条款</li>
- <li>8)是否无低级错误,如缺少签字,日期等</li>
- <li>9)合同签署是否是法人,是否有授权书</li>
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.contractRemark"
- @change="textareaChange('contract','contractRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'contract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.contract" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'contract')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.contract"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e =>selfUploadContract(e, 'contract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 责任人和经办人授权书-->
- <a-card v-if="steps.currentId === 'handlingContract'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">责任人和经办人授权书</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)经办人和责任人授权书齐全并且加盖公章</li>
- <li>2)经办人和责任人与授权书一致</li>
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.handlingContractRemark"
- @change="textareaChange('handlingContract','handlingContractRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'handlingContract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.handlingContract" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase"
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'handlingContract')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.handlingContract"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'handlingContract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 责任人和经办人身份证-->
- <a-card v-if="steps.currentId === 'handlingCard'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">责任人和经办人身份证</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)经办人和责任人身份证复印件加盖公章</li>
- <!-- <li style="color: red" v-if="lotNote.idCardNote != null && lotNote.idCardNote.length > 0">-->
- <!-- 稽核结果备注:{{ lotNote.idCardNote }}-->
- <!-- </li>-->
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.handlingCardRemark"
- @change="textareaChange('handlingCard','handlingCardRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'handlingCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.handlingCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'handlingCard')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.handlingCard"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'handlingCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 客户证件扫描-->
- <a-card v-if="steps.currentId === 'customerCardScanning'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">客户证件扫描</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)客户证件复印件加盖公章</li>
- <!-- <li style="color: red" v-if="lotNote.customerIdNote != null && lotNote.customerIdNote.length > 0">-->
- <!-- 稽核结果备注:{{ lotNote.customerIdNote }}-->
- <!-- </li>-->
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.customerCardScanningRemark"
- @change="textareaChange('customerCardScanning','customerCardScanningRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'customerCardScanning')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.customerCardScanning" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'customerCardScanning')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.customerCardScanning"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div v-if="lotState.customerIdState != 1" class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'customerCardScanning')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 风险评估表-->
- <a-card v-if="steps.currentId === 'riskTable'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">风险评估表</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)是否进行入网风险评估</li>
- <li>2)安全管理能力是否填写最小必要数据</li>
- <li>3)是否明确使用场景(与产品形态表一致),如车联网、水表等</li>
- <li>4)是否明确开通功能,如语音,短信,流量等</li>
- <li>5)是否明确功能限制情况,如定向,机卡绑定,卡片绑定,限额管控,黑名单限制等</li>
- <li>6)是否无低级错误,如缺少签字、日期等</li>
- <li>7)风险评估表中卡类型需写清三要素:网络制式、商业级或消费级、贴片机或插卡机</li>
- <li>8)现场考察部分截图是否清晰</li>
- <li>9)合同、入网评估表、系统受理是否一致</li>
- <!-- <li style="color: red" v-if="lotNote.riskNote != null && lotNote.riskNote.length > 0">-->
- <!-- 稽核结果备注:{{ lotNote.riskNote }}-->
- <!-- </li>-->
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.riskTableRemark"
- @change="textareaChange('riskTable','riskTableRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'riskTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.riskTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'riskTable')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.riskTable"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'riskTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 省/集团价格审批表-->
- <a-card v-if="steps.currentId === 'priceTable'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">省/集团价格审批表</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)最终审批价格不低于1元/户/月(对2020年1月1日前签署合同的存量客户,若存量价格审批表中只约定了保底流量无功能费的,按存量审批表执行)</li>
- <li>2)不参与打折,最低优惠至1元/户/月(2020年1月1日前签署合同的存量客户,池功能费可以按照池成员流量价格授权同步享受折扣)</li>
- <li>3)同客户同项目测试卡数量不得超100张,最高不得超500张。</li>
- <li>4)物联网开卡时提供公免卡审批表,开卡张数和公免额度与审批表一致。物联网公免卡的审批人员和流程同大网公免卡一致。</li>
- <li>5)累计限免有效期原则上不得大于15个月</li>
- <!-- <li style="color: red" v-if="lotNote.priceApprovalNote != null && lotNote.priceApprovalNote.length > 0">-->
- <!-- 稽核结果备注:{{ lotNote.priceApprovalNote }}-->
- <!-- </li>-->
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.priceTableRemark"
- @change="textareaChange('priceTable','priceTableRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'priceTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.priceTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'priceTable')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.priceTable"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'priceTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!--承诺涵-其他材料-非必填-->
- <!-- <a-card v-if="lotData.isShow.commitmentShow">-->
- <a-card v-if="steps.currentId === 'commitment'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">其他材料</span>
- <!-- 操作按钮-->
- </div>
- <div style="float: left; width: 40%">
- <div class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)如有其他材料请进行上传</li>
- <!-- <li style="color: red" v-if="lotNote.commitmentNote != null && lotNote.commitmentNote.length > 0">-->
- <!-- 稽核结果备注:{{ lotNote.commitmentNote }}-->
- <!-- </li>-->
- </ul>
- </div>
- </div>
- <div style="width: 60%;float:left;">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px"
- v-model="infoModel.commitmentRemark"
- @change="textareaChange('commitment','commitmentRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div style="height: 70%">
- <div class="thumb-example">
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'commitment')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 90px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.commitment" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="500px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="item.urlBase "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'commitment')">移除
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.commitment"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e=>selfUploadContract(e,'commitment')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div >
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传其它材料</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- </div>
- </template>
- <script>
- import {JeecgListMixin} from '@/mixins/JeecgListMixin'
- import { getAction, httpAction, postAction } from '@api/manage'
- import {snippetsOutlined, StarFilled, StarTwoTone} from '@ant-design/icons-vue';
- /*无数据图片*/
- import noDataPng from '@/assets/nodata.png'
- let Base64 = require('js-base64').Base64
- export default {
- name: "TaskUploadData",
- mixins: [JeecgListMixin],
- inject: ['closeCurrent'],
- components: {noDataPng},
- data() {
- return {
- rules:{
- scene: [
- {required: true, message: '必须输入'},
- ],
- smsNumber: [
- {required: true, message: '必须输入'},
- ],
- customerName: [
- {required: true, message: '必须输入'},
- ],
- isComplete:[
- {required: true, message: '必须输入'},
- ],
- manage:[
- {required: true, message: '必须输入'},
- ],
- isAll:[
- {required: true, message: '必须输入'},
- ],
- contractDate:[
- {required: true, message: '必须输入'},
- ],
- businessLicenseDate:[
- {required: true, message: '必须输入'},
- ],
- installationAddress:[
- {required: true, message: '必须输入'},
- ],
- floorName:[
- {required: true, message: '必须输入'},
- ],
- firstActivationDate:[
- {required: true, message: '必须输入'},
- ],
- customerNo:[
- {required: true, message: '必须输入'},
- ],
- userNo:[
- {required: true, message: '必须输入'},
- ],
- networkAccessTime:[
- {required: true, message: '必须输入'},
- ],
- userState:[
- {required: true, message: '必须输入'},
- ],
- contractDateIs:[
- {required: true, message: '必须输入'},
- ],
- staffNo:[
- {required: true, message: '必须输入'},
- ],
- codeNumber:[
- {required: true, message: '必须输入'},
- ],
- accountCode:[
- {required: true, message: '必须输入'},
- ],
- floorCode:[
- {required: true, message: '必须输入'},
- ],
- userCode:[
- {required: true, message: '必须输入'},
- ],
- managePhone: [
- {required: true, message: '请输入客户经理手机号!', trigger: 'blur'}, {validator: this.isPhone}
- ],
- },
- labelCol6: {
- labelCol: {
- xs: {span: 24},
- sm: {span:10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol4: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol5: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 9},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 4},
- }
- },
- labelCol7: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 12},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol1Note: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 4},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 14},
- }
- },
- //是否整改
- rectificationIs: false,
- noDataPng: noDataPng,
- //加载状态
- taskId:"",
- loading: false,
- infoModel: {
- staffName:"",
- businessLicenseDateIs:"",
- contractDateIs:'',
- blockType: "",
- control: "",
- //合同文件
- isAll:"",
- contractDate:"",
- businessLicenseDate:"",
- dataId:"",
- logId:"",
- infoId:"",
- isComplete:"",
- scene:"",
- manage:"",
- managePhone:"",
- smsNumber:"",
- customerNo:"",
- userNo:"",
- networkAccessTime:"",
- customerName:"",
- userState:"",
- staffNo:"",
- testCard:[{}],
- testCardRemark:'',
- contract: [{}],
- contractRemark:'',
- handlingContract: [{}],
- handlingContractRemark:'',
- handlingCard: [{}],
- handlingCardRemark:'',
- customerCardScanning: [{}],
- customerCardScanningRemark:'',
- riskTable: [{}],
- riskTableRemark:'',
- priceTable: [{}],
- priceTableRemark:'',
- commitment: [{}],
- commitmentRemark:'',
- },
- //弹窗
- previewImage: "",
- previewVisible: false,
- url: {
- "getTask":"/smsTurck/customerData/query/getTask",
- "getInfoDataById": "/smsCheck/customerInfo/queryById",
- "getInfoDataByInfoId": "/smsLot/customerData/queryDataLogByInfoId",
- updateFile: "/smsCheck/customerData/updateFile",
- minioUpload: "/smsCheck/customerData/uploadMinio",
- //list: "/smsCheck/customerData/list",
- addOrEdit: "/smsLot/customerData/edit/info",
- lotInfo: "/smsLot/customerData/query/infoId",
- checkDataId: "/smsLot/customerData/query/check/dataId",
- },
- //步骤条数据
- //current: 0,
- steps: {
- // 当前所在第几部
- current: 0,
- currentId: "",
- stepsNow: {},
- stepsControlY: [
- {
- title: '合同',
- content: 'First-content',
- status: "wait",
- id:'contract'
- },
- {
- title: '责任人和经办人授权书',
- content: 'First-content',
- status: "wait",
- id:"handlingContract"
- },
- {
- title: '责任人和经办人身份证',
- content: 'First-content',
- status: "wait",
- id:"handlingCard"
- },
- {
- title: '客户证件扫描',
- content: 'First-content',
- status: "wait",
- id:"customerCardScanning"
- },
- {
- title: '风险评估表',
- content: 'First-content',
- status: "wait",
- id:'riskTable'
- },
- {
- title: '省/集团价格审批表',
- content: 'First-content',
- status: "wait",
- id:'priceTable'
- },
- {
- title: '承诺涵(其他材料-非必填)',
- content: 'First-content',
- id: "commitment",
- status: "wait"
- }
- ],
- stepsControlN: [
- {
- title: '合同',
- content: 'First-content',
- status: "wait",
- id:'contract'
- },
- {
- title: '责任人和经办人授权书',
- content: 'First-content',
- status: "wait",
- id:"handlingContract"
- },
- {
- title: '责任人和经办人身份证',
- content: 'First-content',
- status: "wait",
- id:"handlingCard"
- },
- {
- title: '客户证件扫描',
- content: 'First-content',
- status: "wait",
- id:"customerCardScanning"
- },
- {
- title: '风险评估表',
- content: 'First-content',
- status: "wait",
- id:'riskTable'
- },
- {
- title: '承诺涵(其他材料-非必填)',
- content: 'First-content',
- id: "commitment",
- status: "wait"
- }
- ],
- stepsTest: [
- {
- title: '测试卡申请单',
- content: 'First-content',
- status: "wait",
- id:'testCard'
- },
- {
- title: '责任人和经办人授权书',
- content: 'First-content',
- status: "wait",
- id:"handlingContract"
- },
- {
- title: '责任人和经办人身份证',
- content: 'First-content',
- status: "wait",
- id:"handlingCard"
- },
- {
- title: '客户证件扫描',
- content: 'First-content',
- status: "wait",
- id:"customerCardScanning"
- },
- {
- title: '承诺涵(其他材料-非必填)',
- content: 'First-content',
- id: "commitment",
- status: "wait"
- }
- ],
- },
- //steps: "",
- //测试卡步骤条
- next: "",
- prev: "",
- //客户信息ID
- infoId: "",
- lotData: {
- //卡片是否展示
- isShow: {
- commitmentShow: false,
- },
- //正式卡/测试卡
- blockType: "model",
- //价格管控
- control: "controlN",
- //合同文件
- contractFiles: [],
- //责任人和经办人授权书
- empowerFiles: [],
- //责任人和经办人身份证
- idCardFiles: [],
- //客户证件扫描
- scanningFiles: [],
- //风险评估表
- riskFiles: [],
- //价格审批表
- priceFiles: [],
- //测试卡申请单
- testCardApplication: [],
- //其他材料
- commitmentFiles: [],
- },
- //整改稽核备注
- lotNote: {
- //合同
- contractNote: null,
- //测试卡申请单
- testCardApplicationNote: null,
- //责任人经办人授权书
- empowerNote: null,
- //责任人经办人身份证
- idCardNote: null,
- //客户证件
- customerIdNote: null,
- //风险评估表稽核结果
- riskNote: null,
- //省/集团价格审批表
- priceApprovalNote: null,
- //其他材料
- commitmentNote: null,
- },
- //整改稽核结果
- lotState: {
- //合同
- contractState: null,
- //测试卡申请单
- testCardApplicationState: null,
- //责任人经办人授权书
- empowerState: null,
- //责任人经办人身份证
- idCardState: null,
- //客户证件
- customerIdState: null,
- //风险评估表稽核结果
- riskState: null,
- //省/集团价格审批表
- priceApprovalState: null,
- //其他材料
- commitmentState: null,
- },
- //缩略与大图数据源
- swiperId: 0 + 1,
- swiperImg: [{}],
- //轮播配置
- swiperOptionTop: {
- zoom: true,
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- observer: true, //修改swiper自己或子元素时,自动初始化swiper
- observeParents: true, //修改swiper的父元素时,自动初始化swiper
- // autoplay: { //自动轮播
- // delay: 2000,
- // disableOnInteraction: false
- // },
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- },
- swiperOptionThumbs: {
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.2,
- slideToClickedSlide: true,
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- }
- };
- },
- created() {
- let control = this.lotData.control;
- this.infoModel.infoId = this.$route.query.id;
- //是否突破价格管控
- if (control == "controlN") {
- this.steps.stepsNow = this.steps.stepsControlN;
- } else {
- this.steps.stepsNow= this.steps.stepsControlY;
- }
- this.steps.currentId = this.steps.stepsNow[0].id;
- this.infoId = this.$route.query.id;
- //是否需要整改
- this.lotInfoById(this.infoId)
- this.getInfoDataById(this.infoId)
- },
- computed: {
- importMinioUploadAction() {
- return window._CONFIG['domianURL'] + this.url.minioUpload;
- },
- },
- props: {
- poster: {
- type: String,
- required: false,
- default: ""
- },
- controls: {
- type: Boolean,
- required: false,
- default: true
- },
- control: {
- type: Boolean,
- required: false,
- default: false
- },
- },
- watch: {
- // 监听操作
- videoData(val, oldVal) {
- const {currentTime, duration} = val;
- if (currentTime && duration && currentTime < duration) {
- this.hintOperate();
- }
- }
- },
- mounted() {
- // 实现swiper双向控制
- this.$nextTick(() => {
- const swiperTop = this.$refs.swiperTop.swiper
- const swiperThumbs = this.$refs.swiperThumbs.swiper
- swiperTop.controller.control = swiperThumbs
- swiperThumbs.controller.control = swiperTop
- })
- this.infoId = this.$route.query.id;
- this.getTask( this.infoId);
- let control = this.lotData.control;
- //是否突破价格管控
- if (control == "controlN") {
- this.steps.stepsNow = this.steps.stepsControlN;
- } else {
- this.steps.stepsNow= this.steps.stepsControlY;
- }
- },
- methods: {
- backDate(name){
- if (name==='contractDate'){
- this.infoModel.contractDateIs="1"
- this.infoModel.contractDate=""
- }
- if (name==='businessLicenseDate'){
- this.infoModel.businessLicenseDateIs="1"
- this.infoModel.businessLicenseDate=""
- }
- },
- isPhone(rule, value, callback) {
- if (!value || new RegExp(/^1([38][0-9]|4[579]|5[0-3,5-9]|6[6]|7[0135678]|9[89])\d{8}$/).test(value)) {
- callback();
- } else {
- callback("您的手机号码格式不正确!");
- }
- },
- /*提交*/
- submitAuditLot() {
- this.uploading = true;
- var info = "yes";
- this.$refs.form.validate(valid => {
- // 验证通过
- if (!valid) {
- info = "infoNo";
- this.uploading = false;
- }}
- )
- var text= "";
- for (var i in this.steps.stepsNow) {
- if (this.steps.stepsNow[i].status !== "finish") {
- // text+= '111<br/> ';
- var str=this.steps.stepsNow[i].title;
- text+= str+"资料或备注都未上传!!!"+'<br/><br/>';
- //this.$message.warn( this.steps.stepsNow[i].title +"资料或备注都未上传!!!");
- info="no";
- }
- }
- var stringToHTML = function (str) {
- var dom = document.createElement('div');
- dom.innerHTML = str;
- return dom;
- };
- console.log(stringToHTML('<h1>Hello world!</h1><p>How are you today?</p>'));
- if (info==="no"){
- this.$warning({
- title: '提示',
- dangerouslyUseHTMLString: true,
- content:(h) => {
- return h('div', {
- domProps: {
- innerHTML: text
- },
- }, []);
- }
- })
- return
- }
- if (info==="infoNo"){
- this.$warning({
- title: '提示',
- dangerouslyUseHTMLString: true,
- content:(h) => {
- return h('div', {
- domProps: {
- innerHTML: '基本信息未填写完整!!!'
- },
- }, []);
- }
- })
- return
- }
- var that = this;
- var data=that.infoModel ;
- //data =this.dataListToStr(data);
- postAction("/smsLot/customerData/add", data).then((res) => {
- if (res.success) {
- this.uploading = false;
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.$router.push({path: '/lot/check/task/check', query: {id: that.taskId}});
- this.closeCurrent();
- } else {
- this.uploading = false;
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- getTask(infoId){
- var that = this;
- var data = {
- "infoId": infoId,
- }
- postAction(this.url.getTask, data).then((res) => {
- if (res.success) {
- that.taskId=res.result.taskId;
- }
- })
- },
- addIsStaging() {
- this.uploading = true;
- var that = this;
- var data=that.infoModel ;
- //data =this.dataListToStr(data);
- postAction("/smsLot/customerData/addIsStaging", data).then((res) => {
- if (res.success) {
- this.uploading = false;
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.$router.push({path: '/lot/check/task/check', query: {id: that.taskId}});
- this.closeCurrent();
- } else {
- this.uploading = false;
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- /**备注坚听*/
- textareaChange(name, nameRemark) {
- if (this.infoModel[nameRemark].length > 0) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else if (this.infoModel[name].length > 0 && this.infoModel[name][0].urlBase) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else {
- this.steps.stepsNow[this.steps.current].status = "wait"
- }
- },
- stepsClick(current) {
- this.steps.current = current;
- this.steps.currentId = this.steps.stepsNow[current].id
- for (var i in this.steps.stepsNow) {
- if (this.steps.stepsNow[i].status != "finish") {
- this.steps.stepsNow[i].status = "wait"
- }
- if (this.steps.stepsNow[i].status === "finish") {
- this.steps.stepsNow[i].status === "finish"
- }
- }
- if (this.steps.stepsNow[current].status!== "finish") {
- this.steps.stepsNow[current].status = "process"
- }
- },
- getInfoDataById(id) {
- var that = this;
- if (id) {
- var data = {
- "id": id,
- }
- getAction(this.url.getInfoDataById, data).then((res) => {
- if (res.success) {
- let result = res.result;
- //用户状态
- that.infoModel.userState =result.userState;
- //用户发展员工
- that.infoModel.staffNo =result.staffNo;
- that.infoModel.customerNo =result.customerNo;
- that.infoModel.userNo =result.userNo;
- that.infoModel.networkAccessTime =result.networkAccessTime;
- that.infoModel.firstActivationDate =result.firstActivationDate;
- that.infoModel.userCode =result.userCode;
- that.infoModel.accountCode =result.accountCode;
- that.infoModel.staffName =result.staffName;
- }
- })
- }
- },
- /**获取物联网文件数据*/
- lotInfoById(id) {
- let that = this;
- let url = this.url.getInfoDataByInfoId;
- let params = {
- infoId: id
- }
- getAction(url, params).then(res => {
- if (res.success) {
- let data = res.result;
- if (data == null || !data) {
- return;
- }
- let result = res.result;
- that.infoModel=result;
- that.lotDataValue(data);
- that.infoModel.testCard= JSON.parse(result.testCard);
- that.infoModel.contract= JSON.parse(result.contract);
- that.steps.current = 0;
- that.steps.currentId = that.steps.stepsNow[0].id
- that.infoModel.handlingContract= JSON.parse(result.handlingContract);
- that.infoModel.handlingCard= JSON.parse(result.handlingCard);
- that.infoModel.customerCardScanning= JSON.parse(result.customerCardScanning);
- that.infoModel.riskTable= JSON.parse(result.riskTable);
- that.infoModel.priceTable= JSON.parse(result.priceTable);
- that.infoModel.commitment= JSON.parse(result.commitment);
- for (var i in that.steps.stepsNow) {
- for (var j in result[that.steps.stepsNow[i].id]){
- if (result[that.steps.stepsNow[i].id][0].urlBase!==undefined){
- that.steps.stepsNow[i].status = "finish"
- }
- if (result[that.steps.stepsNow[i].id+'Remark'][0]!==undefined){
- that.steps.stepsNow[i].status = "finish"
- }
- }
- }
- }
- }).finally(() => {
- })
- },
- lotDataValue(data) {
- let that = this;
- if (data.control===''||data.control===null){
- that.infoModel.control='controlN'
- }
- if (data.blockType===''||data.blockType===null){
- that.infoModel.blockType='model'
- }
- //为整改
- that.rectificationIs = true;
- //是否突破价格管控 0:未突破;1:突破
- that.lotData.control = data.control ;
- //卡类型 0测试卡;1正式卡,
- that.lotData.blockType = data.blockType;
- //判断步骤类型
- let control = that.infoModel.control;
- let blockType = that.infoModel.blockType;
- if (control === 'controlN' && blockType === 'model') {
- this.steps.stepsNow = this.steps.stepsControlN;
- } else if (control === 'controlY' && blockType === 'model') {
- this.steps.stepsNow = this.steps.stepsControlY;
- } else if (blockType === 'test') {
- this.steps.stepsNow= this.steps.stepsTest;
- } else {
- this.steps.stepsNow = this.steps.stepsControlN;
- }
- if (that.lotData.blockType == "model") {
- that.swiperImg = that.lotData.contractFiles
- } else if (that.lotData.blockType == 'test') {
- that.swiperImg = that.lotData.testCardApplication
- }
- //稽核结果
- //that.lotCheckById(that.infoId);
- },
- /**包装轮播数据*/
- packageArr(data) {
- let id = 0;
- let newArr = []
- if (data == null) {
- newArr.push({})
- return newArr;
- }
- let splice = data.split(",");
- for (var i in splice) {
- id = id + 1;
- let filePath = splice[i];
- if (filePath == "") {
- break;
- }
- let fileName = filePath.split("/");
- fileName = fileName[fileName.length - 1];
- let swipData = {
- id: id,
- urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
- + encodeURIComponent(
- Base64.encode(
- (filePath)
- )),
- url: filePath,
- fileName: fileName
- }
- newArr.push(swipData);
- }
- return newArr;
- },
- /**卡类型及价格管控监听事件*/
- controlChange(a, event) {
- let blockType = this.infoModel.blockType;
- let control = this.infoModel.control;
- //是否突破价格管控
- if (control == "controlN" && blockType == "model") {
- this.steps.stepsNow = this.steps.stepsControlN;
- } else if (control == "controlY" && blockType == "model") {
- this.steps.stepsNow = this.steps.stepsControlY;
- } else if (blockType == "test") {
- this.steps.stepsNow = this.steps.stepsTest;
- }
- this.current = 0;
- this.steps.current = 0;
- this.steps.currentId = this.steps.stepsNow[0].id
- for (var i in this.steps.stepsNow) {
- for (var j in this.infoModel[this.steps.stepsNow[i].id]){
- if (this.infoModel[this.steps.stepsNow[i].id][0].urlBase!==undefined){
- this.steps.stepsNow[i].status = "finish"
- }
- if (this.infoModel[this.steps.stepsNow[i].id+'Remark'][0]!==undefined){
- this.steps.stepsNow[i].status = "finish"
- }
- }
- }
- // this.currentFileType(this.current);
- },
- /**移除文件*/
- /**移除文件*/
- removeFile(fileData, fileAttribute) {
- let that = this.infoModel;
- //处理轮播数据
- let swiperImg = that[fileAttribute];
- if (swiperImg) {
- let number = swiperImg.indexOf(fileData);
- swiperImg.splice(number, 1)
- if (swiperImg.length == 0) {
- swiperImg.push({})
- let textId = fileAttribute + "Remark";
- if (this.infoModel[textId].trim() > 0) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else {
- this.steps.stepsNow[this.steps.current].status = "wait"
- }
- } else {
- this.steps.stepsNow[this.steps.current].status = "finish"
- }
- that[fileAttribute] = swiperImg
- }
- },
- /**分割数组*/
- spliceArr(data, fileData) {
- let indexOf = data.indexOf(fileData);
- return data.splice(indexOf, 1)
- },
- /**自定义的上传文件方法*/
- /**自定义的上传文件方法*/
- selfUploadContract(data, fileAttribute) {
- var that = this;
- if (data.file) {
- let formData = new FormData();
- formData.append('file', data.file)
- postAction(this.url.minioUpload, formData).then((res) => {
- if (res.success) {
- that.swiperId = that.swiperId + 1;
- console.log(that.swiperId)
- //文件链接
- let filePath = res.message;
- let swipData = {
- id: that.swiperId,
- urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
- + encodeURIComponent(
- Base64.encode(
- (filePath)
- )),
- url: filePath,
- fileName: data.file.name
- }
- if (that.infoModel[fileAttribute][0].urlBase) {
- that.infoModel[fileAttribute].push(swipData)
- } else {
- that.infoModel[fileAttribute] = []
- //数据发生变化
- that.infoModel[fileAttribute][0] = swipData;
- }
- // 改变步骤条状态
- if (that.infoModel[fileAttribute].length > 0) {
- that.steps.stepsNow[that.steps.current].status = "finish"
- } else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- }
- })
- }
- },
- /**文件上传成功后回调*/
- importHandleChange(info) {
- },
- /**文件格式限制*/
- importBeforeUpload(file) {
- var fileType = file.type;
- if (fileType === 'image') {
- if (fileType.indexOf('image') < 0) {
- this.$message.warning('请上传图片');
- return false;
- }
- } else if (fileType === 'file') {
- if (fileType.indexOf('image') >= 0) {
- this.$message.warning('请上传文件');
- return false;
- }
- }
- return true
- },
- /**返回上一菜单*/
- goBack() {
- this.$router.go(-1);
- this.closeCurrent();
- },
- /**下一步点击事件*/
- nextSteps() {
- if (this.swiperImg.length == 0) {
- this.$message.warn("请先上传文件!")
- return;
- }
- if (this.swiperImg.length == 1) {
- if (!this.swiperImg[0].urlBase) {
- this.$message.warn("请先上传文件!")
- return;
- }
- }
- if (this.current < this.steps.length) {
- this.current = this.current + 1;
- //其他材料
- if (this.steps[this.current].id == "commitment") {
- this.lotData.isShow.commitmentShow = true;
- } else {
- this.lotData.isShow.commitmentShow = false;
- }
- this.currentFileType(this.current);
- }
- },
- /**上一步骤*/
- prevSteps() {
- if (this.current != 0) {
- this.current = this.current - 1;
- //其他材料
- if (this.steps[this.current].id == "commitment") {
- this.lotData.isShow.commitmentShow = true;
- } else {
- this.lotData.isShow.commitmentShow = false;
- }
- // this.currentFileType(this.current);
- }
- },
- /**步骤文件类型对应*/
- currentFileType(current) {
- let that = this;
- this.swiperImg = {}
- //卡类型
- let blockType = that.lotData.blockType;
- //其他材料-承诺涵
- if (that.lotData.isShow.commitmentShow) {
- that.swiperImg = that.lotData.commitmentFiles;
- } else {
- switch (current) {
- case 0:
- if (blockType == "test") {
- that.swiperImg = that.lotData.testCardApplication
- } else {
- that.swiperImg = that.lotData.contractFiles
- }
- break;
- case 1:
- that.swiperImg = that.lotData.empowerFiles
- break;
- case 2:
- that.swiperImg = that.lotData.idCardFiles
- break;
- case 3:
- that.swiperImg = that.lotData.scanningFiles
- break;
- case 4:
- that.swiperImg = that.lotData.riskFiles
- break;
- case 5:
- that.swiperImg = that.lotData.priceFiles
- break;
- }
- }
- //拒绝下标为空 影响轮播样式
- if (that.swiperImg.length == 0) {
- that.swiperImg.push({})
- }
- },
- urlBaseJoin(dataArray, name) {
- let newDataArr = [];
- for (var i in dataArray) {
- let dataArrayElementElement = dataArray[i][name];
- newDataArr.push(dataArrayElementElement);
- }
- return newDataArr.toString();
- }
- }
- }
- ;
- </script>
- <style lang="less" scoped>
- h3 {
- margin: 20px 0 0 10px;
- }
- .thumb-example {
- //width: 864px;
- margin-top: 20px;
- // background: #000;
- }
- .swiper-slide {
- background-size: cover;
- background-position: center;
- }
- .gallery-top {
- // height: 80% !important;
- /*height: 600px;*/
- width: 100%;
- left: 15%;
- margin-bottom: 50px
- }
- .gallery-thumbs {
- height: 20% !important;
- box-sizing: border-box;
- padding: 10px 0px;
- /* width: 864px;*/
- margin-left: 2px;
- .swiper-button-next {
- right: 0px;
- }
- .swiper-button-prev {
- left: 0px;
- }
- .swiper-button-next,
- .swiper-button-prev {
- background: #fff;
- width: 45px;
- text-align: center;
- height: 101px;
- top: 26%;
- div {
- margin-top: 30px;
- background: rgb(207, 205, 205);
- height: 45px;
- border-radius: 50%;
- img {
- margin: 7px 0 0 2px;
- width: 30px;
- }
- }
- }
- .swiper-button-next:hover div {
- background: rgb(189, 186, 186);
- }
- .swiper-button-prev:hover div {
- background: rgb(189, 186, 186);
- }
- }
- .gallery-thumbs .swiper-slide {
- width: 20%;
- height: 80px;
- // opacity: 0.4;
- }
- .gallery-thumbs .swiper-slide-active {
- border: 2px solid red;
- }
- .markdown ul > li {
- color: #000000d9;
- font-size: 15px;
- line-height: 3;
- margin-left: 20px;
- padding-left: 4px;
- list-style-type: circle;
- }
- .liClass ul li{
- //margin-top:-20px;/*设置有序列表项之间的间隔*/
- font-size:13px;
- }
- </style>
|