| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262 |
- <template>
- <el-tabs type="border-card">
- <!-- 全部-->
- <el-tab-pane label="全部">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParams.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParams.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParams.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParams.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParams.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParams.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParams.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParams.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParams.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true"/>
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true" />
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true" />
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <!--融资申请+融信状态待确权+核心审批状态为空-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <!--核心开立+融信状态为待签收+融资审批状态为空-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <!--融资申请+融信状态待签收+融资审批状态为空-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <!--融资申请+融信状态待签收+融资审批状态为空-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <!--生效-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['finance:record:add']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <!--核心开立+融信状态为空+核心审批通过||
- 核心开立+融信状态待签收+融资审批通过||
- 融资申请+融信待确权+核心审批通过||
- 融资申请+融信待签收+融资审批通过||
- 融资开立+融信状态为空+融资审批状态通过||
- 融资开立+融信待确权+核心审批通过
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!--开立中-->
- </el-tab-pane>
- <el-tab-pane label="开立中">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getListOpening">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQueryOpening">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQueryOpening" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParamsOpening" ref="queryFormOpening" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParamsOpening.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryOpening"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParamsOpening.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryOpening"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParamsOpening.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryOpening"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParamsOpening.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryOpening"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParamsOpening.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParamsOpening.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQueryOpening"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParamsOpening.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParamsOpening.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParamsOpening.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryOpening"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infOpeningList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParamsOpening.pageNum - 1) * queryParamsOpening.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true"/>
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true" />
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true" />
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['credit:credit:goFinance']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="totalOpening>0"
- :total="totalOpening"
- :page.sync="queryParamsOpening.pageNum"
- :limit.sync="queryParamsOpening.pageSize"
- @pagination="getListOpening"
- />
- </el-tab-pane>
- <!--已签收-->
- <el-tab-pane label="已签收">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getListSign">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuerySign">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuerySign" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParamsSign" ref="queryFormSign" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParamsSign.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuerySign"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParamsSign.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuerySign"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParamsSign.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuerySign"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParamsSign.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuerySign"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParamsSign.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParamsSign.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQuerySign"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParamsSign.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParamsSign.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParamsSign.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQuerySign"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infSignList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParamsSign.pageNum - 1) * queryParamsSign.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true" />
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true"/>
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true" />
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true"/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['credit:credit:goFinance']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="totalSign>0"
- :total="totalSign"
- :page.sync="handleQuerySign.pageNum"
- :limit.sync="handleQuerySign.pageSize"
- @pagination="getListSign"
- />
- </el-tab-pane>
- <!--融资中-->
- <el-tab-pane label="融资中">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getListFinancing">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQueryFinancing">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQueryFinancing" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParamsFinancing" ref="queryFormFinancing" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParamsFinancing.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinancing"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParamsFinancing.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinancing"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParamsFinancing.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinancing"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParamsFinancing.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinancing"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParamsFinancing.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParamsFinancing.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQueryFinancing"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParamsFinancing.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParamsFinancing.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParamsFinancing.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinancing"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infFinancingList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParamsFinancing.pageNum - 1) * queryParamsFinancing.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true" />
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true"/>
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true" />
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true"/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['credit:credit:goFinance']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="totalFinancing>0"
- :total="totalFinancing"
- :page.sync="handleQueryFinancing.pageNum"
- :limit.sync="handleQueryFinancing.pageSize"
- @pagination="getListFinancing"
- />
- </el-tab-pane>
- <!--已融资-->
- <el-tab-pane label="已融资">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getListFinanced">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQueryFinanced">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQueryFinanced" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParamsFinanced" ref="queryFormFinanced" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParamsFinanced.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinanced"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParamsFinanced.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinanced"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParamsFinanced.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinanced"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParamsFinanced.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinanced"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParamsFinanced.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParamsFinanced.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQueryFinanced"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParamsFinanced.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParamsFinanced.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParamsFinanced.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryFinanced"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infFinancedList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParamsFinanced.pageNum - 1) * queryParamsFinanced.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true" />
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true"/>
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true" />
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true"/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['credit:credit:goFinance']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="totalFinanced>0"
- :total="totalFinanced"
- :page.sync="handleQueryFinanced.pageNum"
- :limit.sync="handleQueryFinanced.pageSize"
- @pagination="getListFinanced"
- />
- </el-tab-pane>
- <!--已失效-->
- <el-tab-pane label="已失效">
- <el-card class="fiche">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getListInvalid">收起</right-toolbar>
- <span style="margin-bottom: 10px;color:#333333;font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial,sans-serif">所选条件:</span>
- <div style="float: right;margin-right:1%">
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQueryInvalid">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQueryInvalid" style="float: ;">重置</el-button>
- </div>
- <hr style="margin-top: 16px;">
- <el-form :model="queryParamsInvalid" ref="queryFormInvalid" :inline="true" v-if="showSearch" label-width="68px">
- <el-form-item label="融信编码" prop="zfiNumber">
- <el-input
- v-model.trim="queryParamsInvalid.zfiNumber"
- placeholder="请输入融信编码"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryInvalid"
- />
- </el-form-item>
- <el-form-item label="开立企业" prop="openCompany">
- <el-input
- v-model.trim="queryParamsInvalid.openCompany"
- placeholder="请输入开立企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryInvalid"
- />
- </el-form-item>
- <el-form-item label="接收企业" prop="receiveCompany">
- <el-input
- v-model.trim="queryParamsInvalid.receiveCompany"
- placeholder="请输入接收企业"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryInvalid"
- />
- </el-form-item>
- <el-form-item label="融信产品" prop="zfpName">
- <el-input
- v-model.trim="queryParamsInvalid.zfpName"
- placeholder="请输入融信产品"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryInvalid"
- />
- </el-form-item>
- <el-form-item label="融信金额">
- <el-input
- v-model="queryParamsInvalid.startAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item>
- ~
- </el-form-item>
- <el-form-item>
- <el-input
- v-model="queryParamsInvalid.endAmt"
- placeholder="请输入融信金额"
- clearable
- size="small"
- @keyup.enter.native="handleQueryInvalid"
- maxlength="20"
- />
- </el-form-item>
- <el-form-item label="签收日期" prop="zfiSignDate">
- <el-date-picker size="small"
- v-model="queryParamsInvalid.zfiSignDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="承诺日期" prop="zfiExpireDate">
- <el-date-picker size="small"
- v-model="queryParamsInvalid.zfiExpireDate"
- style="width: 240px"
- unlink-panels
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="融信利率" prop="zfiRate">
- <el-input
- v-model.trim="queryParamsInvalid.zfiRate"
- placeholder="请输入融信利率"
- clearable
- size="small"
- maxlength="25"
- @keyup.enter.native="handleQueryInvalid"
- />
- </el-form-item>
- <!-- <el-form-item label="状态" prop="zfiStatus">
- <el-select v-model="queryParams.zfiStatus" placeholder="请选择状态" clearable size="small">
- <el-option
- v-for="dict in stateOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item> -->
- </el-form>
- </el-card>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['credit:credit:add']"
- >开立融信</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="finanOpening"
- v-hasPermi="['finanOpening:finanOpening:add']"
- >融资开立</el-button>
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="apply"
- v-hasPermi="['finanOpening:finanOpening:apply']"
- >融资申请</el-button>
- </el-col>
- </el-row>
- <el-table v-loading="loading" :data="infInvalidList" @selection-change="handleSelectionChange" border>
- <el-table-column label="序号" type="index" width="50" align="center">
- <template slot-scope="scope">
- <span>{{(queryParamsInvalid.pageNum - 1) * queryParamsInvalid.pageSize + scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="融信编号" align="center" prop="zfiNumber" :show-overflow-tooltip="true"/>
- <el-table-column label="开立方" align="center" prop="openName" :show-overflow-tooltip="true"/>
- <el-table-column label="接收方" align="center" prop="receiveName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" :show-overflow-tooltip="true"/>
- <el-table-column label="融信产品" align="center" prop="zfpName" :show-overflow-tooltip="true"/>
- <el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" />
- <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true" />
- <el-table-column label="签发有效期" align="center" width="100px;" prop="zfiEffectiveDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺还款日" align="center" width="100px;" prop="zfiExpireDate" :show-overflow-tooltip="true"/>
- <el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" />
- <el-table-column label="承诺函编号" align="center" width="100px;" prop="zfiPaymentNumber" :show-overflow-tooltip="true" />
- <el-table-column label="状态" :formatter="stateFormat" align="center" prop="zfiStatus" :show-overflow-tooltip="true"/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['credit:credit:query']"
- >详情</el-button>
- <!--
- 融资状态审批拒绝+核心状态为空+平台状态为空+融信状态为空||
- 融资状态审批通过+核心状态为空+平台状态审批通过+融信平台退回||
- 融资审批通过+核心审批拒绝+平台审批通过+融信待确权
- 融资审批状态空+核心审批拒绝+平台空+融信空||
- 融资审批状态审批拒绝+核心审批通过+平台空+融信待签收||
- 融资审批审批通过+核心审批通过+平台拒绝+融信待签收
- -->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['credit:credit:update']"
- v-if="(scope.row.zfiSupplierStatus == '02' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == 'null' || scope.row.zfiCoreStatus == null) && scope.row.zfiPlatformStatus == '02' && scope.row.zfiStatus == '06')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '02' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')||
- ((scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == 'null' || scope.row.zfiSupplierStatus == null) && scope.row.zfiCoreStatus == '02' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
- (scope.row.zfiSupplierStatus == '02' && scope.row.zfiCoreStatus == '01' && (scope.row.zfiPlatformStatus == '' || scope.row.zfiPlatformStatus == 'null' || scope.row.zfiPlatformStatus == null) && scope.row.zfiStatus == '01')||
- (scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '02'&& scope.row.zfiStatus == '01')"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleApprove(scope.row)"
- v-hasPermi="['credit:credit:approve']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus == '00' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null')"
- >确权</el-button>
- <!--原补充资料-->
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAddInformation(scope.row)"
- v-hasPermi="['credit:credit:addInfor']"
- v-if="scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null')"
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleSignFor(scope.row)"
- v-hasPermi="['credit:credit:signFor']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >签收</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleRefuse(scope.row)"
- v-hasPermi="['credit:credit:refuse']"
- v-if="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && (scope.row.zfiSupplierStatus == '' || scope.row.zfiSupplierStatus == null || scope.row.zfiSupplierStatus == 'null') "
- >拒签</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleGoFinance(scope.row)"
- v-hasPermi="['credit:credit:goFinance']"
- v-if="(scope.row.zfiCreateType == '1' ||scope.row.zfiCreateType == '0' || scope.row.zfiCreateType == '2') && scope.row.zfiStatus == '02'"
- >去融资</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="seal(scope.row)"
- v-hasPermi="['credit:credit:seal']"
- v-if="(scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '1' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')
- ||(scope.row.zfiCreateType == '0' && scope.row.zfiStatus =='01' && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == null || scope.row.zfiStatus =='null') && scope.row.zfiSupplierStatus == '01')
- ||(scope.row.zfiCreateType == '2' && scope.row.zfiStatus =='00' && scope.row.zfiCoreStatus == '01')"
- >盖章</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['credit:credit:del']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="totalInvalid>0"
- :total="totalInvalid"
- :page.sync="handleQueryInvalid.pageNum"
- :limit.sync="handleQueryInvalid.pageSize"
- @pagination="getListInvalid"
- />
- </el-tab-pane>
- </el-tabs>
- </template>
- <script>
- import { listCredit, coreApproval, confirmationApproval, informationApproval,approval,openApproval, getUser } from "@/api/service/credit/credit";
- import {creditRefuse,creditDel} from "@/api/service/credit/creditHandle";
- import Editor from '@/components/Editor';
- import Cookies from 'js-cookie'
- export default {
- name: "invoice",
- components: {
- Editor
- },
- data() {
- return {
- //当前登录企业Id
- companyId:'',
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- //待签收总条数
- totalSign:0,
- //融资中
- totalFinancing:0,
- //开立中
- totalOpening:0,
- //已融资
- totalFinanced:0,
- //已失效
- totalInvalid:0,
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- //融信类型
- typeOptions: [],
- //状态
- stateOptions:[],
- //开始金额
- startAmt:undefined,
- //结束金额
- endAmt:undefined,
- // 查询参数
- queryParams:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:null,
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- // 待签收查询参数
- queryParamsSign:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:"02",
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- //融资中查询参数
- queryParamsFinancing:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:"04",
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- //开立中查询参数
- queryParamsOpening:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:"00,01,06",
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- //已融资搜索
- queryParamsFinanced:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:"05",
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- //已失效
- queryParamsInvalid:{
- pageNum: 1,
- pageSize: 10,
- zfiNumber: null,
- zfiStatus:"03,07",
- openCompany:null,
- receiveCompany:null,
- startAmt:null,
- endAmt:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[]
- },
- //全部数据
- infList:[],
- //待签收
- infSignList:[],
- //融资中
- infFinancingList:[],
- //开立中
- infOpeningList:[],
- //已融资
- infFinancedList:[],
- //已失效
- infInvalidList:[],
- // 表单参数
- form: {
- }
- };
- },
- created() {
- this.getDicts("zfi_create_type").then(response => {
- this.typeOptions = response.data;
- });
- this.getDicts("zc_finance_state").then(response => {
- this.stateOptions = response.data;
- });
- this.getUser();
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- },
- activated () {
- this.getDicts("zfi_create_type").then(response => {
- this.typeOptions = response.data;
- });
- this.getDicts("zc_finance_state").then(response => {
- this.stateOptions = response.data;
- });
- this.getUser();
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- },
- methods: {
- //获取操作员Id
- getUser(){
- getUser().then(response => {
- debugger
- this.companyId = response.data;
- })
- },
- /** 查询全部列表 */
- getList() {
- this.loading = true;
- listCredit(this.queryParams).then(response => {
- this.infList = response.data.records;
- this.total = response.data.total;
- this.loading = false;
- });
- },
- //查询待签收
- getListSign() {
- this.loading = true;
- listCredit(this.queryParamsSign).then(response => {
- this.infSignList = response.data.records;
- this.totalSign = response.data.total;
- this.loading = false;
- });
- },
- //融资中
- getListFinancing() {
- this.loading = true;
- listCredit(this.queryParamsFinancing).then(response => {
- this.infFinancingList = response.data.records;
- this.totalFinancing = response.data.total;
- this.loading = false;
- });
- },
- //开立中
- getListOpening(){
- this.loading = true;
- listCredit(this.queryParamsOpening).then(response => {
- this.infOpeningList = response.data.records;
- this.totalOpening = response.data.total;
- this.loading = false;
- });
- },
- //已融资
- getListFinanced() {
- this.loading = true;
- listCredit(this.queryParamsFinanced).then(response => {
- this.infFinancedList = response.data.records;
- this.totalFinanced = response.data.total;
- this.loading = false;
- });
- },
- //已失效
- getListInvalid(){
- this.loading = true;
- listCredit(this.queryParamsInvalid).then(response => {
- this.infInvalidList = response.data.records;
- this.totalInvalid = response.data.total;
- this.loading = false;
- });
- },
- // 表单重置
- reset() {
- this.form = {
- zfiNumber: null,
- zfiStatus:null,
- openCompany:null,
- receiveCompany:null,
- zfpName:null,
- zfiRate:null,
- zfiSignDate:[],
- zfiExpireDate:[],
- zfiCollectionAccount:null,
- zfiAmount:''
- };
- this.queryParams.startAmt = '';
- this.queryParams.endAmt = '';
- this.queryParamsSign.startAmt = '';
- this.queryParamsSign.endAmt = '';
- this.queryParamsFinancing.startAmt = '';
- this.queryParamsFinancing.endAmt = '';
- this.queryParamsOpening.startAmt = '';
- this.queryParamsOpening.endAmt = '';
- this.queryParamsFinanced.startAmt = '';
- this.queryParamsFinanced.endAmt = '';
- this.queryParamsInvalid.startAmt = '';
- this.queryParamsInvalid.endAmt = '';
- this.resetForm("form");
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.cifId)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 全部搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- //待签收搜索
- handleQuerySign() {
- this.queryParamsSign.pageNum = 1;
- this.getListSign();
- },
- //融资中搜索
- handleQueryFinancing() {
- this.queryParamsFinancing.pageNum = 1;
- this.getListFinancing();
- },
- //开立中搜索
- handleQueryOpening() {
- this.queryParamsOpening.pageNum = 1;
- this.getListOpening();
- },
- //已融资搜索
- handleQueryFinanced() {
- this.queryParamsFinanced.pageNum = 1;
- this.getListFinanced();
- },
- //已失效搜索
- handleQueryInvalid() {
- this.queryParamsInvalid.pageNum = 1;
- this.getListInvalid();
- },
- /** 全部重置按钮操作 */
- resetQuery() {
- this.queryParams.startAmt = '';
- this.queryParams.endAmt = '';
- this.resetForm("queryForm");
- this.handleQuery();
- },
- //待签收重置
- resetQuerySign() {
- this.queryParamsSign.startAmt = '';
- this.queryParamsSign.endAmt = '';
- this.resetForm("queryFormSign");
- this.handleQuerySign();
- },
- //融资中重置
- resetQueryFinancing() {
- this.queryParamsFinancing.startAmt = '';
- this.queryParamsFinancing.endAmt = '';
- this.resetForm("queryFormFinancing");
- this.handleQueryFinancing();
- },
- //开立中重置
- resetQueryOpening() {
- this.queryParamsOpening.startAmt = '';
- this.queryParamsOpening.endAmt = '';
- this.resetForm("queryFormOpening");
- this.handleQueryOpening();
- },
- //已融资重置
- resetQueryFinanced() {
- this.queryParamsFinanced.startAmt = '';
- this.queryParamsFinanced.endAmt = '';
- this.resetForm("queryFormFinanced");
- this.handleQueryFinanced();
- },
- //已失效重置
- resetQueryInvalid() {
- this.queryParamsInvalid.startAmt = '';
- this.queryParamsInvalid.endAmt = '';
- this.resetForm("queryFormInvalid");
- this.handleQueryInvalid();
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- Cookies.set("/credit/addCredit/", this.$route.fullPath);
- this.$router.push({ path: "/credit/addCredit/" });
- },
- //详情
- handleDetail(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/creditDetail/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/creditDetail/"+zfiId + "/" });
- },
- //修改
- handleUpdate(row){
- const zfiId = row.zfiId || this.ids;
- //获取融信类型
- const zfiCreateType = row.zfiCreateType;
- //核心开立
- if(zfiCreateType == '1'){
- Cookies.set("/credit/creditUpdate/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/creditUpdate/"+zfiId + "/" });
- }else if(zfiCreateType == '2'){
- Cookies.set("/credit/financeOpenUpdate/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/financeOpenUpdate/"+zfiId + "/" });
- }else if(zfiCreateType == '0'){
- Cookies.set("/credit/applyCreditEdit/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/applyCreditEdit/"+zfiId + "/" });
- }
-
- },
- //审核
- handleApprove(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/confirmationAudit/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/confirmationAudit/"+zfiId + "/" });
- },
- //补充资料
- handleAddInformation(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/addInformation/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/addInformation/"+zfiId + "/" });
- },
- //签收
- handleSignFor(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/signFor/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/signFor/"+zfiId + "/" });
- },
- //去融资
- handleGoFinance(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/goFinance/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/goFinance/"+zfiId + "/" });
- },
- //盖章
- seal(row){
- const zfiId = row.zfiId || this.ids
- Cookies.set("/credit/creditSeal/"+zfiId + "/", this.$route.fullPath)
- this.$router.push({ path: "/credit/creditSeal/"+zfiId + "/" });
- },
- /**核心开立审批按钮操作*/
- handleExam(row){
- this.$confirm("是否确认提交开立审批?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return coreApproval(row);
- }).then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("提交审批成功");
- }).catch(() => {
- this.$message({
- type: "warning",
- message: "已取消提交审批",
- });
- });
- },
- //确权审批
- handleConfirmationExam(row){
- this.$confirm("是否确认提交确权审批?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return confirmationApproval(row);
- }).then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("提交审批成功");
- }).catch(() => {
- this.$message({
- type: "warning",
- message: "已取消提交审批",
- });
- });
- },
- //融资申请提交审批按钮
- handleApproval(row) {
- const zfiNumber = row.zfiNumber;
- this.$confirm(
- '是否确认提交审批融信编号为"' + zfiNumber + '"的数据项?',
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }
- )
- .then(function() {
- //提交审批
- return approval(row);
- })
- .then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("提交审批成功");
- })
- .catch(() => {
- this.$message({
- type: "warning",
- message: "已取消提交审批"
- });
- });
- },
- //融资开立提交审批按钮
- openApproval(row) {
- const zfiNumber = row.zfiNumber;
- this.$confirm(
- '是否确认提交审批融信编号为"' + zfiNumber + '"的数据项?',
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }
- )
- .then(function() {
- //提交审批
- return openApproval(row);
- })
- .then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("提交审批成功");
- })
- .catch(() => {
- this.$message({
- type: "warning",
- message: "已取消提交审批"
- });
- });
- },
- //补充资料提交审批
- handleApprovals(row){
- const zfiNumber = row.zfiNumber;
- this.$confirm('是否确认提交审批融信编号为"' + zfiNumber + '"的数据项?', "警告",{
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- return informationApproval(row);
- }).then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("提交审批成功");
- })
- .catch(() => {
- this.$message({
- type: "warning",
- message: "已取消提交审批",
-
- });
- });
- },
- //格式化类型
- typeFormat(row, column) {
- return this.selectDictLabel(this.typeOptions, row.zfiCreateType);
- },
- //格式化状态
- stateFormat(row, column) {
- return this.selectDictLabel(this.stateOptions, row.zfiStatus);
- },
- //融资开立
- finanOpening(){
- this.reset();
- Cookies.set("/credit/financeOpen/", this.$route.fullPath);
- this.$router.push({ path: "/credit/financeOpen/" });
- },
- //融资申请
- apply(){
- this.reset();
- Cookies.set("/credit/creditApply/", this.$route.fullPath);
- this.$router.push({ path: "/credit/creditApply/" });
- },
- //拒签
- handleRefuse(row){
- const zfiNumber = row.zfiNumber ;
- this.$confirm('是否拒签融信编号为"' + zfiNumber + '"的数据项?', "警告",{
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- //拒签
- return creditRefuse(row);
- }).then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("拒签成功");
- })
- .catch(() => {
- this.$message({
- type: "warning",
- message: "已取消",
-
- });
- });
- },
- //删除
- handleDelete(row){
- const zfiNumber = row.zfiNumber ;
- this.$confirm('是否删除融信编号为"' + zfiNumber + '"的数据项?', "警告",{
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- //删除
- return creditDel(row);
- }).then(() => {
- this.getList();
- this.getListSign();
- this.getListFinancing();
- this.getListOpening();
- this.getListFinanced();
- this.getListInvalid();
- this.msgSuccess("删除成功");
- })
- .catch(() => {
- this.$message({
- type: "warning",
- message: "已取消",
-
- });
- });
- },
- //列表格式化金额
- moneyFormat(row, column, cellValue) {
- if(cellValue == null || cellValue== undefined || cellValue == ''){
- cellValue = '0.00'
- }
- cellValue += '';
- if (!cellValue.includes('.')) {
- cellValue += '.00';
- }
- return cellValue.replace(/(\d)(?=(\d{3})+\.)/g, function ($0, $1) {
- return $1 + ',';
- }).replace(/\.$/, '');
- },
- //input格式化金额
- amtFormat(cellValue) {
- if(cellValue == null || cellValue== undefined || cellValue == ''){
- cellValue = '0.00'
- }
- cellValue += '';
- if (!cellValue.includes('.')) {
- cellValue += '.00';
- }
- console.log(cellValue);
- return cellValue.replace(/(\d)(?=(\d{3})+\.)/g, function ($0, $1) {
- return $1 + ',';
- }).replace(/\.$/, '');
- },
-
-
- }
- };
- </script>
|