Verifyintasks.vue 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388
  1. <template>
  2. <div class="page">
  3. <retrievalForm
  4. :fields="retrievalFields"
  5. @submit="handleFormSubmit"
  6. @toggleCollapse="toggleCollapse"
  7. @areaSelectChange="areaSelectChange"
  8. ></retrievalForm>
  9. <el-table
  10. size="small"
  11. :data="pageResult"
  12. height="590"
  13. border
  14. v-loading="loading"
  15. highlight-current-row
  16. stripe
  17. @expand-change="handleRowChange"
  18. ref="expandTable"
  19. :header-cell-style="{
  20. background: '#F2F7FC',
  21. fontWeight: '700',
  22. color: '#606266',
  23. }"
  24. >
  25. <el-table-column
  26. prop="orderno"
  27. label="订单号"
  28. align="center"
  29. ></el-table-column>
  30. <el-table-column prop="username" label="业务员工号" align="center">
  31. <template slot-scope="scope">
  32. <span>{{ scope.row.userid }}</span>
  33. </template>
  34. </el-table-column>
  35. <el-table-column prop="username" label="业务员名称" align="center">
  36. <template slot-scope="scope">
  37. <span>{{ scope.row.username }}</span>
  38. </template>
  39. </el-table-column>
  40. <el-table-column prop="managementSource" label="业务来源" align="center">
  41. <template slot-scope="scope">
  42. <el-tag v-if="scope.row.managementSource == '渠道'">渠道</el-tag>
  43. <el-tag v-if="scope.row.managementSource == '个代'" type="success"
  44. >个代</el-tag
  45. >
  46. <el-tag v-if="scope.row.managementSource == '电销'" type="warning"
  47. >电销</el-tag
  48. >
  49. </template>
  50. </el-table-column>
  51. <el-table-column prop="agreementName" label="协议" align="center" width="300">
  52. <template slot-scope="scope">
  53. <span>{{ scope.row.agreementName }} - {{ scope.row.businessDescription }} - {{ scope.row.jobDescription }}</span>
  54. </template>
  55. </el-table-column>
  56. <el-table-column
  57. prop="insCompany"
  58. label="承保公司"
  59. width="180"
  60. align="center"
  61. >
  62. <template slot-scope="scope">
  63. <span>{{ scope.row.insCompany ? scope.row.insCompany : "--" }}</span>
  64. </template>
  65. </el-table-column>
  66. <el-table-column prop="dockingPerson" label="对接人" align="center"></el-table-column>
  67. <el-table-column prop="entryStatus" label="录入来源" align="center" width="100">
  68. <template slot-scope="scope">
  69. <el-tag size="mini" v-if="scope.row.entryStatus == '1'" effect="dark">车险录入</el-tag>
  70. <el-tag size="mini" v-if="scope.row.entryStatus == '2'" effect="dark" type="success">代客录单</el-tag>
  71. <el-tag size="mini" v-if="scope.row.entryStatus == '3'" effect="dark" type="warning">外部订单</el-tag>
  72. </template>
  73. </el-table-column>
  74. <el-table-column prop="isExternal" label="外部订单" align="center">
  75. <template slot-scope="scope">
  76. <span>{{ scope.row.isExternal == "1" ? "是" : "否" }}</span>
  77. </template>
  78. </el-table-column>
  79. <el-table-column prop="problemOrder" label="疑问订单" align="center">
  80. <template slot-scope="scope">
  81. <span>{{ scope.row.problemOrder == "1" ? "是" : "否" }}</span>
  82. </template>
  83. </el-table-column>
  84. <el-table-column
  85. prop="insCompany"
  86. label="合作公司"
  87. width="180"
  88. align="center"
  89. >
  90. <template slot-scope="scope">
  91. <span>{{
  92. scope.row.partnerCompaniesName
  93. ? scope.row.partnerCompaniesName
  94. : "--"
  95. }}</span>
  96. </template>
  97. </el-table-column>
  98. <el-table-column
  99. prop="licenseno"
  100. label="车牌号"
  101. width="180"
  102. align="center"
  103. ></el-table-column>
  104. <el-table-column
  105. prop="insuredname"
  106. label="投保人姓名"
  107. align="center"
  108. width="150"
  109. ></el-table-column>
  110. <el-table-column
  111. prop="product"
  112. label="投保险种"
  113. align="center"
  114. width="200"
  115. ></el-table-column>
  116. <el-table-column
  117. prop="auditStatus"
  118. label="状态"
  119. align="center"
  120. width="100"
  121. >
  122. <template slot-scope="scope">
  123. <el-tag
  124. v-if="scope.row.auditStatus == '0'"
  125. type="success"
  126. size="small"
  127. >未审核</el-tag
  128. >
  129. <el-tag
  130. v-if="scope.row.auditStatus == '1'"
  131. type="warning"
  132. size="small"
  133. >审核通过</el-tag
  134. >
  135. <el-tag v-if="scope.row.auditStatus == '2'" type="danger" size="small"
  136. >审核驳回</el-tag
  137. >
  138. </template>
  139. </el-table-column>
  140. <el-table-column
  141. prop="checkType"
  142. label="审核方式"
  143. align="center"
  144. width="100"
  145. >
  146. <template slot-scope="scope">
  147. <el-tag
  148. v-if="scope.row.checkType == '2'"
  149. type="success"
  150. size="small"
  151. >自动审核</el-tag
  152. >
  153. <el-tag
  154. v-if="scope.row.checkType == '1'"
  155. type="warning"
  156. size="small"
  157. >人工审核</el-tag
  158. >
  159. </template>
  160. </el-table-column>
  161. <el-table-column
  162. prop="auditUser"
  163. label="审核人"
  164. align="center"
  165. width="200"
  166. ></el-table-column>
  167. <el-table-column
  168. prop="createtime"
  169. label="录单日期"
  170. align="center"
  171. width="200"
  172. ></el-table-column>
  173. <el-table-column
  174. prop="signingTime"
  175. label="签单时间"
  176. align="center"
  177. width="200"
  178. ></el-table-column>
  179. <el-table-column
  180. prop="payDate"
  181. label="支付时间"
  182. align="center"
  183. width="200"
  184. ></el-table-column>
  185. <el-table-column
  186. label="操作"
  187. align="center"
  188. min-width="150"
  189. fixed="right"
  190. >
  191. <template slot-scope="scope">
  192. <kt-button
  193. label="查看详情"
  194. type="text"
  195. perms="carInsurance:expenseVerification:pendingReview:review"
  196. @click="OrderDetails(scope.row)"
  197. />
  198. <kt-button label="轨迹" type="text" @click="trajectory(scope.row)" />
  199. </template>
  200. </el-table-column>
  201. </el-table>
  202. <!-- 分页功能 -->
  203. <div class="block">
  204. <el-pagination
  205. @size-change="applyhandleSizeChange"
  206. @current-change="applyhandleCurrentChange"
  207. :current-page="pageNum"
  208. :page-size="pageSize"
  209. :page-sizes="[20, 30, 50, 100]"
  210. layout="total, sizes, prev, pager, next, jumper"
  211. :total="totalSize"
  212. ></el-pagination>
  213. </div>
  214. <!-- 车辆报价新页面 -->
  215. <detailsDialog
  216. ref="detailsDialog"
  217. :orderInfo="orderInfo"
  218. :feeOrderNewVoList="feeOrderNewVoList"
  219. @updatedCost="updatedCost"
  220. @adusitFUn="adusitFUn"
  221. auditStatus="1"
  222. >
  223. </detailsDialog>
  224. <el-dialog :visible.sync="ddgjdialogVisible" width="430px">
  225. <div slot="title" class="">
  226. <span>订单轨迹</span>
  227. </div>
  228. <div style="height: 300px; overflow-y: auto">
  229. <el-steps
  230. direction="vertical"
  231. :active="trajectoryTable.length - 1"
  232. finish-status="success"
  233. >
  234. <el-step
  235. :title="item.desc"
  236. :key="item.id"
  237. v-for="item in trajectoryTable"
  238. >
  239. <template slot="description">
  240. <template v-if="item.auditstatus == '0'">
  241. <div>保险公司:{{ item.insCompany }}</div>
  242. <div>创建用户:{{ item.operator }}</div>
  243. </template>
  244. <template v-else>
  245. <span>操作人:{{ item.operator }}</span>
  246. <span style="margin-left: 10px"
  247. >操作人工号:{{ item.audituser }}</span
  248. >
  249. <div v-if="item.operatorTime">
  250. 操作时间:{{ item.operatorTime }}
  251. </div>
  252. </template>
  253. </template>
  254. </el-step>
  255. </el-steps>
  256. </div>
  257. </el-dialog>
  258. </div>
  259. </template>
  260. <script>
  261. import retrievalForm from "@/components/Form/retrievalForm.vue";
  262. import Cookies from "js-cookie";
  263. import KtButton from "@/views/Core/KtButton"; //按钮权限组件
  264. import detailsDialog from "@/views/Core/components/detailsDialogPro.vue";
  265. export default {
  266. components: {
  267. KtButton,
  268. detailsDialog,
  269. retrievalForm,
  270. },
  271. data() {
  272. return {
  273. ddgjdialogVisible: false,
  274. trajectoryTable: [],
  275. feeOrderNewVoList: {},
  276. isAuditing: {},
  277. oldFeeInfo: [], //原始跟单费用比例
  278. adjustFeeDescInfo: {}, //调整费用时使用对象
  279. adjustFeeFlag: false,
  280. queryOrders: "",
  281. value2: "",
  282. optionsStatus: [],
  283. quotedetailsdialogVisible: false,
  284. loading: false,
  285. pageNum: 1, //页数
  286. pageSize: 20, //条数
  287. totalSize: null, //总数
  288. peopleid: "", //工号
  289. pageResult: [], //列表
  290. pageRequest: {
  291. pageNum: 1,
  292. pageSize: 20,
  293. auditStatus: 1,
  294. userId: "",
  295. },
  296. retrievalFields: [
  297. {
  298. name: 'whole',
  299. label: '总机构',
  300. type: 'select',
  301. options: []
  302. },
  303. {
  304. name: "provinceId",
  305. label: "省机构名称",
  306. type: "select",
  307. options: [],
  308. },
  309. {
  310. name: "cityId",
  311. label: "市机构名称",
  312. type: "select",
  313. options: [],
  314. },
  315. {
  316. name: "countyId",
  317. label: "区机构名称",
  318. type: "select",
  319. options: [],
  320. },
  321. {
  322. name: "houseId",
  323. label: "门店名称",
  324. type: "select",
  325. options: [],
  326. },
  327. // {
  328. // name: 'taskNo',
  329. // label: '任务池号',
  330. // type: 'input',
  331. // },
  332. {
  333. name: "orderNo",
  334. label: "订单号",
  335. type: "input",
  336. },
  337. {
  338. name: "managementSource",
  339. label: "业务来源",
  340. type: "select",
  341. options: [],
  342. optionsIabel: "dictTag",
  343. optionsValue: "dictValue",
  344. },
  345. {
  346. name: "companyId",
  347. label: "保险公司",
  348. type: "select",
  349. options: [],
  350. },
  351. {
  352. name: "insuredName",
  353. label: "被保险人",
  354. type: "input",
  355. Retained: true,
  356. },
  357. {
  358. name: "licenseNo",
  359. label: "车牌号",
  360. type: "input",
  361. Retained: true,
  362. },
  363. {
  364. name: "frameNo",
  365. label: "车架号",
  366. type: "input",
  367. Retained: true,
  368. },
  369. {
  370. name: "engineNo",
  371. label: "发动机号",
  372. type: "input",
  373. Retained: true,
  374. },
  375. {
  376. name: "riskCode",
  377. label: "投保险种",
  378. type: "select",
  379. Retained: true,
  380. options: [],
  381. optionsIabel: "dictTag",
  382. optionsValue: "dictTag",
  383. },
  384. {
  385. name: "operatorId",
  386. label: "代理人工号",
  387. type: "input",
  388. Retained: true,
  389. },
  390. {
  391. name: "operatorName",
  392. label: "代理人姓名",
  393. type: "input",
  394. Retained: true,
  395. },
  396. {
  397. name: "auditId",
  398. label: "受理人工号",
  399. type: "input",
  400. Retained: true,
  401. },
  402. {
  403. name: "agreeId",
  404. label: "协议选择",
  405. type: "select",
  406. options: [],
  407. optionsIabel: "agreementName",
  408. },
  409. {
  410. name: "isExternal",
  411. label: "外部订单",
  412. type: "select",
  413. optionsIabel: "label",
  414. optionsValue: "value",
  415. options: [
  416. {
  417. label: "是",
  418. value: "1",
  419. },
  420. {
  421. label: "否",
  422. value: "0",
  423. },
  424. ],
  425. },
  426. {
  427. name: "problemOrder",
  428. label: "疑问订单",
  429. type: "select",
  430. optionsIabel: "label",
  431. optionsValue: "value",
  432. options: [
  433. {
  434. label: "是",
  435. value: "1",
  436. },
  437. {
  438. label: "否",
  439. value: "0",
  440. },
  441. ],
  442. },
  443. {
  444. name: ["quoteStartDateStr", "quoteEndDateStr"],
  445. label: "报价时间",
  446. type: "date",
  447. list: "quoteList",
  448. },
  449. {
  450. name: ["attachStartDateStr", "attachEndDateStr"],
  451. label: "起保时间",
  452. type: "date",
  453. list: "attachList",
  454. },
  455. {
  456. name: ["signStartDateStr", "signEndDateStr"],
  457. label: "签单时间",
  458. type: "date",
  459. list: "signList",
  460. },
  461. {
  462. name: ["payStartDateStr", "payEndDateStr"],
  463. label: "支付时间",
  464. type: "date",
  465. list: "payList",
  466. },
  467. // {
  468. // name: 'isExternal',
  469. // label: '外部订单',
  470. // optionsIabel: 'label',
  471. // optionsValue: 'value',
  472. // Retained: true,
  473. // type: 'select',
  474. // options: [
  475. // {
  476. // label: '否',
  477. // value: '0'
  478. // },
  479. // {
  480. // label: '是',
  481. // value: '1'
  482. // },
  483. // ]
  484. // },
  485. {
  486. name: 'jqPolicyNo',
  487. label: '交强保单号',
  488. type: 'input',
  489. Retained: true,
  490. },
  491. {
  492. name: 'syPolicyNo',
  493. label: '商业保单号',
  494. type: 'input',
  495. Retained: true,
  496. },
  497. {
  498. name: 'noPolicyNo',
  499. label: '非车保单号',
  500. type: 'input',
  501. Retained: true,
  502. },
  503. {
  504. name: 'checkType',
  505. label: '审核方式',
  506. type: "select",
  507. optionsIabel: "label",
  508. optionsValue: "value",
  509. options: [
  510. {
  511. label: "人工审核",
  512. value: "1",
  513. },
  514. {
  515. label: "自动审核",
  516. value: "2",
  517. },
  518. ],
  519. },
  520. {
  521. name: 'checkUser',
  522. label: '审核人',
  523. type: 'input',
  524. Retained: true,
  525. },
  526. ],
  527. orderInfo: {
  528. //选中的订单
  529. ownerinfo: {},
  530. carinfo: {},
  531. applyinfo: {},
  532. insureinfo: {},
  533. kindinfo: [],
  534. riskinfo: [],
  535. ownerinfo: {},
  536. extendInfo: {},
  537. },
  538. feeDetailInfo: [], //费用明细信息
  539. inscompany: "", //保险公司名称
  540. licenseNo: "", //车牌号
  541. sumpremium: "", //保费合计
  542. jqpremium: "", //交强
  543. sypremium: "", //商业
  544. taxamount: "", //车船税
  545. jypremium: "", //驾意险
  546. jqstartdate: "", //交强时间
  547. systartdate: "", //商业时间
  548. mobile: "", //投保人手机号
  549. qrcode: null,
  550. userid: "",
  551. institutionOptions: [],
  552. width: document.documentElement.clientWidth,
  553. insAreaCompanyList: [], //子订单list
  554. companyList: [], //保险公司
  555. oldVersionHistory: [],
  556. natureOfVehicleUseoptions: [],
  557. businessVehicleUseoptions: [],
  558. outOfBusinessVehicleUseoptions: [],
  559. vehicleTypeoptions: [],
  560. trafficManagementVehicleTypeoptions: [],
  561. energyTypeoptions: [],
  562. carImageList: [], //车辆影像
  563. ownerImageList: [], //车主影像
  564. policyImageList: [], //投保人影像
  565. insuredImageList: [], //被保人影像
  566. carCheckImageList: [], //验车照影像
  567. oldfileList: [], //电子保单数据
  568. };
  569. },
  570. created() {
  571. this.pageRequest.userId = Cookies.get("user");
  572. this.areaqueryList(0, 9, "whole");
  573. this.CompanyList();
  574. this.agrmentlist();
  575. this.$api.insCompany.dicType("productsType").then((res) => {
  576. if (res.code == 200) {
  577. this.selectDataMatching(
  578. this.retrievalFields,
  579. "riskCode",
  580. res.data.ddList
  581. );
  582. }
  583. });
  584. this.$api.insCompany.dicType("organizationSource").then((res) => {
  585. if (res.code == 200) {
  586. this.selectDataMatching(
  587. this.retrievalFields,
  588. "managementSource",
  589. res.data.ddList
  590. );
  591. }
  592. });
  593. this.getDicType("natureOfVehicleUse"); //车辆使用性质
  594. this.getDicType("businessVehicleUse"); //(车辆用途)营业
  595. this.getDicType("outOfBusinessVehicleUse"); //(车辆用途)非营业
  596. this.getDicType("vehicleType"); //车辆种类
  597. this.getDicType("trafficManagementVehicleType"); //车辆类型
  598. this.getDicType("energyType"); //能源种类
  599. },
  600. mounted() {
  601. window.addEventListener("resize", this.getDimensions);
  602. },
  603. unmounted() {
  604. window.removeEventListener("resize", this.getDimensions);
  605. },
  606. methods: {
  607. auditstatusCap(val) {
  608. if (val == "0") {
  609. return "未审核";
  610. }
  611. if (val == "1") {
  612. return "审核通过";
  613. }
  614. if (val == "2") {
  615. return "审核驳回";
  616. }
  617. },
  618. trajectory(row) {
  619. this.$api.task.getFeeAuditHistory(row.orderno).then((res) => {
  620. if (res.code == 200 && res.data.length > 0) {
  621. this.trajectoryTable = res.data;
  622. this.ddgjdialogVisible = true;
  623. } else {
  624. this.$message.error("暂无数据!");
  625. }
  626. });
  627. },
  628. //获取机构数据
  629. areaqueryList(level, parentId, filed) {
  630. this.$api.task.queryListByParentId(level, parentId).then((res) => {
  631. this.selectDataMatching(this.retrievalFields, filed, res.data);
  632. });
  633. },
  634. CompanyList() {
  635. this.$api.letter.gainTopList().then((res) => {
  636. this.selectDataMatching(this.retrievalFields, "companyId", res.data);
  637. });
  638. },
  639. agrmentlist() {
  640. this.$api.task.findPtlAgreementList().then((res) => {
  641. this.selectDataMatching(this.retrievalFields, "agreeId", res.data);
  642. });
  643. },
  644. getDicType(type) {
  645. this.$api.insCompany.dicType(type).then((res) => {
  646. if (res.code == 200) {
  647. this[type + "options"] = res.data.ddList;
  648. }
  649. });
  650. },
  651. //下拉数据匹配
  652. selectDataMatching(files, name, data) {
  653. files.forEach((filed) => {
  654. if (filed.name == name) {
  655. filed.options = data;
  656. }
  657. });
  658. },
  659. areaSelectChange(obj) {
  660. switch (obj.filed) {
  661. case "whole":
  662. this.areaqueryList(1, obj.id, "provinceId");
  663. break;
  664. case "provinceId":
  665. this.areaqueryList(2, obj.id, "cityId");
  666. break;
  667. case "cityId":
  668. this.areaqueryList(3, obj.id, "countyId");
  669. break;
  670. case "countyId":
  671. this.areaqueryList(4, obj.id, "houseId");
  672. break;
  673. default:
  674. }
  675. },
  676. handleFormSubmit(data) {
  677. this.pageRequest.pageNum = 1;
  678. this.pageRequest.pageSize = 20;
  679. let obj = Object.assign(this.pageRequest, data);
  680. this.pageRequest = obj;
  681. this.findPage();
  682. },
  683. toggleCollapse(data) {
  684. this.retrievalFields.map((val) => {
  685. if (val.Retained != null) val.Retained = data;
  686. return val;
  687. });
  688. },
  689. updatedCost(data) {
  690. let list = JSON.parse(JSON.stringify(data));
  691. console.log(list);
  692. const exportFee = [];
  693. const entranceFee = [];
  694. list.feeOrder.forEach((item, index) => {
  695. if (index < 3) entranceFee.push(item);
  696. else exportFee.push(item);
  697. });
  698. let params = {
  699. feeId: this.oldVersionHistory.feeId,
  700. feeOrderNewVoOld: this.oldVersionHistory,
  701. feeOrderNewVoNew: {
  702. deptManagerFee: list.deptManagerFee,
  703. entranceFee: entranceFee,
  704. exportFee: exportFee,
  705. },
  706. };
  707. this.$api.task.costsadjust(params).then((res) => {
  708. if (res.code == "200") {
  709. let data = res.data;
  710. let list = [];
  711. data.exportFee.map((val, index) => {
  712. val.type = "出口费用";
  713. return val;
  714. });
  715. data.entranceFee.map((val, index) => {
  716. val.type = "入口费用";
  717. return val;
  718. });
  719. console.log(data);
  720. this.feeOrderNewVoList = {
  721. deptManagerFee: data.deptManagerFee,
  722. list: [...data.entranceFee, ...data.exportFee],
  723. retailFee: data.retailFee,
  724. };
  725. this.$message({
  726. type: "success",
  727. message: res.msg,
  728. });
  729. } else {
  730. this.$message({
  731. type: "error",
  732. message: res.msg,
  733. });
  734. }
  735. });
  736. },
  737. closeDialog() {
  738. this.adjustFeeFlag = false;
  739. },
  740. //审核通过
  741. adusitFUn() {
  742. let subParam = {
  743. orderNo: this.orderInfo.orderno,
  744. jqCostsProportionStr: this.adjustFeeDescInfo.jqAllFeeRate,
  745. syCostsProportionStr: this.adjustFeeDescInfo.syAllFeeRate,
  746. updateFlag: this.adjustFeeFlag ? "1" : "0",
  747. };
  748. this.$api.task.auditFee(subParam).then((res) => {
  749. if (res.code == 200) {
  750. this.$message({
  751. type: "success",
  752. message: "审核通过",
  753. });
  754. this.findPage();
  755. // this.quotedetailsdialogVisible = false;
  756. this.$refs.detailsDialog.setBackupVisible(false);
  757. } else {
  758. this.$message.error(res.msg);
  759. }
  760. });
  761. },
  762. toChinesNum(num) {
  763. let changeNum = ["零", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  764. let unit = ["", "0", "00", "000", "0000"];
  765. num = parseInt(num);
  766. let getWan = (temp) => {
  767. let strArr = temp.toString().split("").reverse();
  768. let newNum = "";
  769. let newArr = [];
  770. strArr.forEach((item, index) => {
  771. newArr.unshift(
  772. item === "0" ? changeNum[item] : changeNum[item] + unit[index]
  773. );
  774. });
  775. let numArr = [];
  776. newArr.forEach((m, n) => {
  777. if (m !== "零") numArr.push(n);
  778. });
  779. if (newArr.length > 1) {
  780. newArr.forEach((m, n) => {
  781. if (newArr[newArr.length - 1] === "零") {
  782. if (n <= numArr[numArr.length - 1]) {
  783. newNum += m;
  784. }
  785. } else {
  786. newNum += m;
  787. }
  788. });
  789. } else {
  790. newNum = newArr[0];
  791. }
  792. return newNum;
  793. };
  794. let overWan = Math.floor(num / 10000);
  795. let noWan = num % 10000;
  796. if (noWan.toString().length < 4) {
  797. noWan = "0" + noWan;
  798. }
  799. return overWan ? getWan(overWan) + "万" + getWan(noWan) : getWan(num);
  800. },
  801. //联级选择器触发事件
  802. handleChange(val) {
  803. if (val.length !== 0) {
  804. this.pageRequest.deptId = val.at(-1);
  805. } else {
  806. this.pageRequest.deptId = "";
  807. }
  808. },
  809. getDimensions() {
  810. this.width = document.documentElement.clientWidth - 350 + "px";
  811. },
  812. //使用性质
  813. natureOfVehicleUseCap(ele) {
  814. if (
  815. this.natureOfVehicleUseoptions.find((item) => item.dictValue == ele)
  816. ) {
  817. return this.natureOfVehicleUseoptions.find((item) => {
  818. return item.dictValue === ele;
  819. }).dictTag;
  820. } else {
  821. return "";
  822. }
  823. },
  824. //车辆类型
  825. trafficManagementVehicleTypeCap(ele) {
  826. if (
  827. this.trafficManagementVehicleTypeoptions.find(
  828. (item) => item.dictValue == ele
  829. )
  830. ) {
  831. return this.trafficManagementVehicleTypeoptions.find((item) => {
  832. return item.dictValue === ele;
  833. }).dictTag;
  834. } else {
  835. return "";
  836. }
  837. },
  838. //车辆种类
  839. vehicleTypeCap(ele) {
  840. if (this.vehicleTypeoptions.find((item) => item.dictValue == ele)) {
  841. return this.vehicleTypeoptions.find((item) => {
  842. return item.dictValue === ele;
  843. }).dictTag;
  844. } else {
  845. return "";
  846. }
  847. },
  848. //能源种类
  849. energyTypeCap(ele) {
  850. if (this.energyTypeoptions.find((item) => item.dictValue == ele)) {
  851. return this.energyTypeoptions.find((item) => {
  852. return item.dictValue === ele;
  853. }).dictTag;
  854. } else {
  855. return "";
  856. }
  857. },
  858. //车辆用途
  859. outOfBusinessVehicleUseCap(type, ele) {
  860. switch (type) {
  861. case "非营业":
  862. if (
  863. this.outOfBusinessVehicleUseoptions.find(
  864. (item) => item.dictValue == ele
  865. )
  866. ) {
  867. return this.outOfBusinessVehicleUseoptions.find((item) => {
  868. return item.dictValue === ele;
  869. }).dictTag;
  870. } else {
  871. return "";
  872. }
  873. case "营业":
  874. if (
  875. this.businessVehicleUseoptions.find((item) => item.dictValue == ele)
  876. ) {
  877. return this.businessVehicleUseoptions.find((item) => {
  878. return item.dictValue === ele;
  879. }).dictTag;
  880. } else {
  881. return "";
  882. }
  883. default:
  884. }
  885. },
  886. //应用详情
  887. OrderDetails(dy) {
  888. this.carImageList = [];
  889. this.ownerImageList = []; //车主影像
  890. this.policyImageList = []; //投保人影像
  891. this.insuredImageList = []; //被保人影像
  892. this.carCheckImageList = []; //验车照影像
  893. let params = {
  894. orderNo: dy.orderno,
  895. };
  896. this.$api.task.feeDetail(params).then((res) => {
  897. if (res.code == 200) {
  898. res.data.kindinfo.map((ele, index) => {
  899. switch (ele.kindCode) {
  900. case "A":
  901. ele.amount = "投保";
  902. break;
  903. case "D4":
  904. case "SY_FJ_YBW2":
  905. ele.unitAmount = this.toChinesNum(ele.unitAmount);
  906. break;
  907. case "MJ1":
  908. case "MJ2":
  909. case "MJ3":
  910. case "MJ4":
  911. ele.deductibleRate = ele.deductibleRate + "%";
  912. break;
  913. default:
  914. ele.amount = this.toChinesNum(ele.amount);
  915. }
  916. return ele;
  917. });
  918. // 获取影像
  919. this.$api.letter.findByQuoteNo(dy.quoteno).then((resImage) => {
  920. Object.keys(resImage.data).forEach((keys) => {
  921. if (resImage.data[keys]) {
  922. resImage.data[keys].url = resImage.data[keys].url
  923. ? process.env.BASE_URL + resImage.data[keys].url
  924. : null;
  925. switch (keys) {
  926. case "C01":
  927. case "D01":
  928. resImage.data[keys].url
  929. ? this.carImageList.push(resImage.data[keys].url)
  930. : "";
  931. break;
  932. case "C02":
  933. case "D02":
  934. resImage.data[keys].url
  935. ? this.ownerImageList.push(resImage.data[keys].url)
  936. : "";
  937. break;
  938. case "C03":
  939. case "D03":
  940. resImage.data[keys].url
  941. ? this.policyImageList.push(resImage.data[keys].url)
  942. : "";
  943. break;
  944. case "C04":
  945. case "D04":
  946. resImage.data[keys].url
  947. ? this.insuredImageList.push(resImage.data[keys].url)
  948. : "";
  949. break;
  950. case "XC00":
  951. case "GC00":
  952. case "GX00":
  953. resImage.data[keys].url
  954. ? this.carCheckImageList.push(resImage.data[keys].url)
  955. : "";
  956. break;
  957. default:
  958. break;
  959. }
  960. }
  961. });
  962. let obj = {
  963. carImageList: this.carImageList,
  964. ownerImageList: this.ownerImageList,
  965. policyImageList: this.policyImageList,
  966. insuredImageList: this.insuredImageList,
  967. carCheckImageList: this.carCheckImageList,
  968. };
  969. this.$refs.detailsDialog.imageFun(obj);
  970. });
  971. if (
  972. res.data.feeOrderNewVo &&
  973. res.data.feeOrderNewVo.exportFee &&
  974. res.data.feeOrderNewVo.entranceFee
  975. ) {
  976. let data = JSON.parse(JSON.stringify(res.data.feeOrderNewVo));
  977. this.oldVersionHistory = data;
  978. data.exportFee.map((val, index) => {
  979. val.type = "出口费用";
  980. return val;
  981. });
  982. data.entranceFee.map((val, index) => {
  983. val.type = "入口费用";
  984. return val;
  985. });
  986. this.feeOrderNewVoList = {
  987. deptManagerFee: data.deptManagerFee,
  988. list: [...data.entranceFee, ...data.exportFee],
  989. retailFee: data.retailFee,
  990. };
  991. }
  992. res.data.carinfo.carnature = this.natureOfVehicleUseCap(
  993. res.data.carinfo.carnature
  994. );
  995. res.data.carinfo.cartype = this.trafficManagementVehicleTypeCap(
  996. res.data.carinfo.cartype
  997. );
  998. res.data.carinfo.cimodelclass = this.vehicleTypeCap(
  999. res.data.carinfo.cimodelclass
  1000. );
  1001. res.data.carinfo.energyType = this.energyTypeCap(
  1002. res.data.carinfo.energyType
  1003. );
  1004. res.data.carinfo.vehicleUse = this.outOfBusinessVehicleUseCap(
  1005. res.data.carinfo.carnature,
  1006. res.data.carinfo.vehicleUse
  1007. );
  1008. this.orderInfo = res.data;
  1009. this.oldfileList = [];
  1010. let businessList = [];
  1011. let accidentList = [];
  1012. if (res.data.orderstatus == "3") {
  1013. if (res.data.isExternal == 1) {
  1014. this.$api.letter
  1015. .getPolicyPrintexternalOrder(res.data.id)
  1016. .then((res1) => {
  1017. if (res1.code == 200) {
  1018. if (res1.data.jqPolicy) {
  1019. this.oldfileList.push({
  1020. fileTitle: "交强电子保单",
  1021. filename: this.orderInfo.jqpolicyno,
  1022. fileurl: res1.data.jqPolicy,
  1023. });
  1024. }
  1025. if (res1.data.jqSign) {
  1026. this.oldfileList.push({
  1027. fileTitle: "交强电子标志",
  1028. filename: this.orderInfo.jqpolicyno,
  1029. fileurl: res1.data.jqSign,
  1030. });
  1031. }
  1032. if (res1.data.jqSign) {
  1033. accidentList.push({
  1034. fileTitle: "商业电子保单",
  1035. filename: this.orderInfo.sypolicyno,
  1036. fileurl: res1.data.jqSign,
  1037. });
  1038. }
  1039. if (res1.data.noPolicy) {
  1040. accidentList.push({
  1041. fileTitle: "驾意险保单",
  1042. filename: "驾意险保单",
  1043. fileurl: res1.data.noPolicy,
  1044. });
  1045. }
  1046. } else {
  1047. this.$message.error(res1.msg);
  1048. }
  1049. });
  1050. } else {
  1051. switch (res.data.inscompany) {
  1052. case "永安财险":
  1053. if (this.orderInfo.jqpolicyno) {
  1054. this.$api.letter
  1055. .getPolicyPrint({
  1056. companyId: res.data.id,
  1057. policytype: "jq",
  1058. })
  1059. .then((res) => {
  1060. //交强保单
  1061. if (res.data) {
  1062. let result = res.data.replace(/[\r\n]/g, "");
  1063. let pdfBase64 = `data:application/pdf;base64,${result}`;
  1064. base64ToPath(pdfBase64).then((path) => {
  1065. if (path) {
  1066. this.oldfileList.push({
  1067. fileTitle: "交强电子保单",
  1068. filename: this.orderInfo.jqpolicyno,
  1069. fileurl: path,
  1070. });
  1071. }
  1072. });
  1073. }
  1074. });
  1075. this.$api.letter
  1076. .getPolicyPrint2({
  1077. companyId: res.data.id,
  1078. policytype: "jq",
  1079. })
  1080. .then((res) => {
  1081. //交强保单
  1082. if (res.data) {
  1083. let result = res.data.replace(/[\r\n]/g, "");
  1084. let pdfBase64 = `data:application/pdf;base64,${result}`;
  1085. base64ToPath(pdfBase64).then((path) => {
  1086. if (path) {
  1087. this.oldfileList.push({
  1088. fileTitle: "交强电子标志",
  1089. filename: this.orderInfo.jqpolicyno,
  1090. fileurl: path,
  1091. });
  1092. }
  1093. });
  1094. }
  1095. });
  1096. }
  1097. if (this.orderInfo.sypolicyno) {
  1098. this.$api.letter
  1099. .getPolicyPrint({
  1100. companyId: res.data.id,
  1101. policytype: "sy",
  1102. })
  1103. .then((res) => {
  1104. //商业保单
  1105. if (res.data) {
  1106. let result = res.data.replace(/[\r\n]/g, "");
  1107. let pdfBase64 = `data:application/pdf;base64,${result}`;
  1108. base64ToPath(pdfBase64).then((path) => {
  1109. if (path) {
  1110. businessList.push({
  1111. fileTitle: "商业电子保单",
  1112. filename: this.orderInfo.sypolicyno,
  1113. fileurl: path,
  1114. });
  1115. }
  1116. });
  1117. }
  1118. });
  1119. }
  1120. break;
  1121. case "华泰财险":
  1122. switch (this.orderInfo.apiType) {
  1123. case 1:
  1124. if (this.orderInfo.jqpolicyno) {
  1125. this.$api.letter
  1126. .HuataigetPolicyPrint({
  1127. companyId: res.data.id,
  1128. riskCode: "0507",
  1129. type: "2", //2:保单
  1130. })
  1131. .then((res) => {
  1132. if (res.data) {
  1133. if (res.data.jqxPolicyUrl) {
  1134. this.oldfileList.push({
  1135. fileTitle: "交强电子保单",
  1136. filename: this.orderInfo.jqpolicyno,
  1137. fileurl: res.data.jqxPolicyUrl,
  1138. });
  1139. }
  1140. if (res.data.jqxFlagUrl) {
  1141. this.oldfileList.push({
  1142. fileTitle: "交强电子标志",
  1143. filename: this.orderInfo.jqpolicyno,
  1144. fileurl: res.data.jqxFlagUrl,
  1145. });
  1146. }
  1147. } else {
  1148. this.$message.error(res.msg);
  1149. }
  1150. });
  1151. }
  1152. if (this.orderInfo.sypolicyno) {
  1153. this.$api.letter
  1154. .HuataigetPolicyPrint({
  1155. companyId: res.data.id,
  1156. riskCode: "0510",
  1157. type: "2", //2:保单
  1158. })
  1159. .then((res) => {
  1160. if (res.data && res.data.syxPolicyUrl) {
  1161. businessList.push({
  1162. fileTitle: "商业电子保单",
  1163. filename: this.orderInfo.sypolicyno,
  1164. fileurl: res.data.syxPolicyUrl,
  1165. });
  1166. } else {
  1167. this.$message.error(res.msg);
  1168. }
  1169. });
  1170. }
  1171. break;
  1172. case 2:
  1173. if (
  1174. this.orderInfo.jqpolicyno ||
  1175. this.orderInfo.sypolicyno
  1176. ) {
  1177. this.$api.letter
  1178. .pythongetPolicyPrint({
  1179. subOrderNo: res.data.id,
  1180. })
  1181. .then((res) => {
  1182. if (res.code == 200 && res.data) {
  1183. if (res.data.jqxPolicyUrl) {
  1184. this.oldfileList.push({
  1185. fileTitle: "交强电子保单",
  1186. filename: this.orderInfo.jqpolicyno,
  1187. fileurl: res.data.jqxPolicyUrl,
  1188. });
  1189. }
  1190. if (res.data.jqxFlagUrl) {
  1191. this.oldfileList.push({
  1192. fileTitle: "交强电子标志",
  1193. filename: this.orderInfo.jqpolicyno,
  1194. fileurl: res.data.jqxFlagUrl,
  1195. });
  1196. }
  1197. if (res.data.syxPolicyUrl) {
  1198. businessList.push({
  1199. fileTitle: "商业电子保单",
  1200. filename: this.orderInfo.sypolicyno,
  1201. fileurl: res.data.syxPolicyUrl,
  1202. });
  1203. }
  1204. if (
  1205. res.data.jyxInfoList &&
  1206. res.data.jyxInfoList.length > 0
  1207. ) {
  1208. res.data.jyxInfoList.forEach((val) => {
  1209. accidentList.push({
  1210. fileTitle: "驾意险保单",
  1211. filename: "驾意险保单",
  1212. fileurl: val.jyx_policy_url,
  1213. });
  1214. });
  1215. }
  1216. } else {
  1217. this.$message.error(res.msg);
  1218. }
  1219. });
  1220. }
  1221. break;
  1222. default:
  1223. }
  1224. break;
  1225. case "中煤财险":
  1226. if (this.orderInfo.jqpolicyno) {
  1227. this.$api.letter
  1228. .ZhongmeigetPolicyPrint({
  1229. companyId: res.data.id,
  1230. riskCode: "0507",
  1231. type: "2", //2:保单
  1232. })
  1233. .then((res) => {
  1234. if (res.data && res.data[0]) {
  1235. this.oldfileList.push({
  1236. fileTitle: "交强电子保单",
  1237. filename: this.orderInfo.jqpolicyno,
  1238. fileurl: res.data[0],
  1239. });
  1240. } else {
  1241. this.$message.error(res.msg);
  1242. }
  1243. });
  1244. this.$api.letter
  1245. .ZhongmeigetPolicyPrint({
  1246. companyId: res.data.id,
  1247. riskCode: "0507",
  1248. type: "1", // 1:标志
  1249. })
  1250. .then((res) => {
  1251. if (res.data && res.data[0]) {
  1252. this.oldfileList.push({
  1253. fileTitle: "交强电子标志",
  1254. filename: this.orderInfo.jqpolicyno,
  1255. fileurl: res.data[0],
  1256. });
  1257. } else {
  1258. this.$message.error(res.msg);
  1259. }
  1260. });
  1261. }
  1262. if (this.orderInfo.sypolicyno) {
  1263. this.$api.letter
  1264. .ZhongmeigetPolicyPrint({
  1265. companyId: res.data.id,
  1266. riskCode: "0510",
  1267. type: "2", //2:保单
  1268. })
  1269. .then((res) => {
  1270. if (res.data && res.data[0]) {
  1271. businessList.push({
  1272. fileTitle: "商业电子保单",
  1273. filename: this.orderInfo.sypolicyno,
  1274. fileurl: res.data[0],
  1275. });
  1276. } else {
  1277. this.$message.error(res.msg);
  1278. }
  1279. });
  1280. }
  1281. if (this.orderInfo.crossInsurance.length > 0) {
  1282. this.orderInfo.crossInsurance.map((ele) => {
  1283. this.$api.letter
  1284. .ZhongmeigetPolicyPrint({
  1285. ridePolicyNo: ele.ridePolicyNo,
  1286. companyId: res.data.id,
  1287. riskCode: "0513",
  1288. type: "2", //2:保单
  1289. })
  1290. .then((res) => {
  1291. if (res.code == 200 && res.data) {
  1292. accidentList.push({
  1293. fileTitle: "驾意险保单",
  1294. filename: this.orderInfo.sypolicyno,
  1295. fileurl: res.data[0],
  1296. });
  1297. } else {
  1298. this.$message.error(res.msg);
  1299. }
  1300. });
  1301. });
  1302. }
  1303. break;
  1304. case "永诚财险":
  1305. if (this.orderInfo.jqpolicyno) {
  1306. this.$api.letter
  1307. .yongchenggetPolicyPrint({
  1308. companyId: res.data.id,
  1309. riskCode: "0507",
  1310. type: "2", //2:保单
  1311. })
  1312. .then((res) => {
  1313. if (res.code == 200 && res.data) {
  1314. if (res.data.jqUrl) {
  1315. this.oldfileList.push({
  1316. fileTitle: "交强电子保单",
  1317. filename: this.orderInfo.jqpolicyno,
  1318. fileurl: res.data.jqUrl,
  1319. });
  1320. }
  1321. if (res.data.jqFlagUrl) {
  1322. this.oldfileList.push({
  1323. fileTitle: "交强电子标志",
  1324. filename: this.orderInfo.jqpolicyno,
  1325. fileurl: res.data.jqFlagUrl,
  1326. });
  1327. }
  1328. } else {
  1329. this.$message.error(res.msg);
  1330. }
  1331. });
  1332. }
  1333. if (this.orderInfo.sypolicyno) {
  1334. this.$api.letter
  1335. .yongchenggetPolicyPrint({
  1336. companyId: res.data.id,
  1337. riskCode: "0510",
  1338. type: "2", //2:保单
  1339. })
  1340. .then((res) => {
  1341. if (res.data && res.data.syUrl) {
  1342. businessList.push({
  1343. fileTitle: "商业电子保单",
  1344. filename: this.orderInfo.sypolicyno,
  1345. fileurl: res.data.syUrl,
  1346. });
  1347. } else {
  1348. this.$message.error(res.msg);
  1349. }
  1350. });
  1351. }
  1352. if (this.orderInfo.crossInsurance.length > 0) {
  1353. this.orderInfo.crossInsurance.map((ele) => {
  1354. this.$api.letter
  1355. .yongchenggetPolicyPrint({
  1356. companyId: res.data.id,
  1357. policyNumber: ele.policyNumber,
  1358. riskCode: "0513",
  1359. type: "2", //2:保单
  1360. })
  1361. .then((res) => {
  1362. if (res.code == 200 && res.data) {
  1363. accidentList.push({
  1364. fileTitle: "驾意险保单",
  1365. filename: ele.policyNumber,
  1366. fileurl: res.data.jyUrl,
  1367. });
  1368. } else {
  1369. this.$message.error(res.msg);
  1370. }
  1371. });
  1372. });
  1373. }
  1374. break;
  1375. case "国任财险":
  1376. if (this.orderInfo.jqpolicyno) {
  1377. this.$api.letter
  1378. .guoRengetPolicyPrint({
  1379. companyId: res.data.id,
  1380. riskCode: "0507",
  1381. type: "2", //2:保单
  1382. })
  1383. .then((res) => {
  1384. if (res.data) {
  1385. this.oldfileList.push({
  1386. fileTitle: "交强电子保单",
  1387. filename: this.orderInfo.jqpolicyno,
  1388. fileurl: res.data,
  1389. });
  1390. } else {
  1391. this.$message.error(res.msg);
  1392. }
  1393. });
  1394. this.$api.letter
  1395. .guoRengetPolicyPrint({
  1396. companyId: res.data.id,
  1397. riskCode: "0507",
  1398. type: "1", //1:标志
  1399. })
  1400. .then((res) => {
  1401. if (res.data) {
  1402. this.oldfileList.push({
  1403. fileTitle: "交强电子标志",
  1404. filename: this.orderInfo.jqpolicyno,
  1405. fileurl: res.data,
  1406. });
  1407. } else {
  1408. this.$message.error(res.msg);
  1409. }
  1410. });
  1411. }
  1412. if (this.orderInfo.sypolicyno) {
  1413. this.$api.letter
  1414. .guoRengetPolicyPrint({
  1415. companyId: res.data.id,
  1416. riskCode: "0510",
  1417. type: "2", //2:保单
  1418. })
  1419. .then((res) => {
  1420. if (res.data) {
  1421. businessList.push({
  1422. fileTitle: "商业电子保单",
  1423. filename: this.orderInfo.sypolicyno,
  1424. fileurl: res.data,
  1425. });
  1426. } else {
  1427. this.$message.error(res.msg);
  1428. }
  1429. });
  1430. }
  1431. if (this.orderInfo.crossInsurance.length > 0) {
  1432. this.orderInfo.crossInsurance.map((ele) => {
  1433. this.$api.letter
  1434. .guoRengetPolicyPrint({
  1435. companyId: res.data.id,
  1436. policyNumber: ele.policyNumber,
  1437. riskCode: "0513",
  1438. type: "2", //2:保单
  1439. })
  1440. .then((res) => {
  1441. if (res.data) {
  1442. accidentList.push({
  1443. fileTitle: "驾意险保单",
  1444. filename: ele.policyNumber,
  1445. fileurl: res.data,
  1446. });
  1447. } else {
  1448. this.$message.error(res.msg);
  1449. }
  1450. });
  1451. });
  1452. }
  1453. break;
  1454. case "紫金财险":
  1455. if (this.orderInfo.jqpolicyno) {
  1456. this.$api.letter
  1457. .zijingetPolicyPrint({
  1458. companyId: res.data.id,
  1459. riskCode: "0507",
  1460. type: "2", //2:保单
  1461. })
  1462. .then((res) => {
  1463. if (res.data) {
  1464. this.oldfileList.push({
  1465. fileTitle: "交强电子保单",
  1466. filename: this.orderInfo.jqpolicyno,
  1467. fileurl: res.data,
  1468. });
  1469. } else {
  1470. this.$message.error(res.msg);
  1471. }
  1472. });
  1473. this.$api.letter
  1474. .zijingetPolicyPrint({
  1475. companyId: res.data.id,
  1476. riskCode: "0507",
  1477. type: "1", //1:标志
  1478. })
  1479. .then((res) => {
  1480. if (res.data) {
  1481. this.oldfileList.push({
  1482. fileTitle: "交强电子标志",
  1483. filename: this.orderInfo.jqpolicyno,
  1484. fileurl: res.data,
  1485. });
  1486. } else {
  1487. this.$message.error(res.msg);
  1488. }
  1489. });
  1490. }
  1491. if (this.orderInfo.sypolicyno) {
  1492. this.$api.letter
  1493. .zijingetPolicyPrint({
  1494. companyId: res.data.id,
  1495. riskCode: "0510",
  1496. type: "2", //2:保单
  1497. })
  1498. .then((res) => {
  1499. if (res.data) {
  1500. businessList.push({
  1501. fileTitle: "商业电子保单",
  1502. filename: this.orderInfo.sypolicyno,
  1503. fileurl: res.data,
  1504. });
  1505. } else {
  1506. this.$message.error(res.msg);
  1507. }
  1508. });
  1509. }
  1510. if (this.orderInfo.crossInsurance.length > 0) {
  1511. this.orderInfo.crossInsurance.map((ele) => {
  1512. this.$api.letter
  1513. .zijingetPolicyPrint({
  1514. companyId: res.data.id,
  1515. policyNumber: ele.policyNumber,
  1516. riskCode: "0513",
  1517. type: "2", //2:保单
  1518. })
  1519. .then((res) => {
  1520. if (res.data) {
  1521. accidentList.push({
  1522. fileTitle: "驾意险保单",
  1523. filename: ele.policyNumber,
  1524. fileurl: res.data,
  1525. });
  1526. } else {
  1527. this.$message.error(res.msg);
  1528. }
  1529. });
  1530. });
  1531. }
  1532. break;
  1533. case "渤海财险":
  1534. if (this.orderInfo.jqpolicyno) {
  1535. this.$api.letter
  1536. .getPolicyPrintboHai({
  1537. companyId: res.data.id,
  1538. })
  1539. .then((res) => {
  1540. if (res.code == 200 && res.data) {
  1541. if (res.data.jqxPolicyUrl) {
  1542. this.oldfileList.push({
  1543. fileTitle: "交强电子保单",
  1544. filename: this.orderInfo.jqpolicyno,
  1545. fileurl: res.data.jqxPolicyUrl,
  1546. });
  1547. }
  1548. if (res.data.jqxFlagUrl) {
  1549. this.oldfileList.push({
  1550. fileTitle: "交强电子标志",
  1551. filename: this.orderInfo.jqpolicyno,
  1552. fileurl: res.data.jqxFlagUrl,
  1553. });
  1554. }
  1555. if (res.data.syxPolicyUrl) {
  1556. businessList.push({
  1557. fileTitle: "商业电子保单",
  1558. filename: this.orderInfo.sypolicyno,
  1559. fileurl: res.data.syxPolicyUrl,
  1560. });
  1561. }
  1562. if (
  1563. res.data.jyxInfoList &&
  1564. res.data.jyxInfoList.length > 0
  1565. ) {
  1566. res.data.jyxInfoList.forEach((val) => {
  1567. accidentList.push({
  1568. fileTitle: "驾意险保单",
  1569. filename: "驾意险保单",
  1570. fileurl: val.jyx_policy_url,
  1571. });
  1572. });
  1573. }
  1574. } else {
  1575. this.$message.error(res.msg);
  1576. }
  1577. });
  1578. }
  1579. break;
  1580. case "恒邦财险":
  1581. case "安盛天平":
  1582. case "中国人寿":
  1583. case "太平财险":
  1584. case "华农财险":
  1585. case "众安财险":
  1586. if (this.orderInfo.jqpolicyno || this.orderInfo.sypolicyno) {
  1587. this.$api.letter
  1588. .pythongetPolicyPrint({
  1589. subOrderNo: res.data.id,
  1590. })
  1591. .then((res) => {
  1592. if (res.code == 200 && res.data) {
  1593. if (res.data.jqxPolicyUrl) {
  1594. this.oldfileList.push({
  1595. fileTitle: "交强电子保单",
  1596. filename: this.orderInfo.jqpolicyno,
  1597. fileurl: res.data.jqxPolicyUrl,
  1598. });
  1599. }
  1600. if (res.data.jqxFlagUrl) {
  1601. this.oldfileList.push({
  1602. fileTitle: "交强电子标志",
  1603. filename: this.orderInfo.jqpolicyno,
  1604. fileurl: res.data.jqxFlagUrl,
  1605. });
  1606. }
  1607. if (res.data.syxPolicyUrl) {
  1608. businessList.push({
  1609. fileTitle: "商业电子保单",
  1610. filename: this.orderInfo.sypolicyno,
  1611. fileurl: res.data.syxPolicyUrl,
  1612. });
  1613. }
  1614. if (
  1615. res.data.jyxInfoList &&
  1616. res.data.jyxInfoList.length > 0
  1617. ) {
  1618. res.data.jyxInfoList.forEach((val) => {
  1619. accidentList.push({
  1620. fileTitle: "驾意险保单",
  1621. filename: "驾意险保单",
  1622. fileurl: val.jyx_policy_url,
  1623. });
  1624. });
  1625. }
  1626. } else {
  1627. this.$message.error(res.msg);
  1628. }
  1629. });
  1630. }
  1631. break;
  1632. case "大家财险":
  1633. switch (this.orderInfo.apiType) {
  1634. case 1:
  1635. if (this.orderInfo.jqpolicyno) {
  1636. this.$api.letter
  1637. .obtainWarranty({
  1638. companyId: res.data.id,
  1639. riskCode: "0507",
  1640. type: "2", //2:保单
  1641. })
  1642. .then((res) => {
  1643. if (res.data) {
  1644. this.oldfileList.push({
  1645. fileTitle: "交强电子保单",
  1646. filename: this.orderInfo.jqpolicyno,
  1647. fileurl: res.data,
  1648. });
  1649. } else {
  1650. this.$message.error(res.msg);
  1651. }
  1652. });
  1653. this.$api.letter
  1654. .obtainWarranty({
  1655. companyId: res.data.id,
  1656. riskCode: "0507",
  1657. type: "1", //1:标志
  1658. })
  1659. .then((res) => {
  1660. if (res.data) {
  1661. this.oldfileList.push({
  1662. fileTitle: "交强电子标志",
  1663. filename: this.orderInfo.jqpolicyno,
  1664. fileurl: res.data,
  1665. });
  1666. } else {
  1667. this.$message.error(res.msg);
  1668. }
  1669. });
  1670. }
  1671. if (this.orderInfo.sypolicyno) {
  1672. this.$api.letter
  1673. .obtainWarranty({
  1674. companyId: res.data.id,
  1675. riskCode: "0510",
  1676. type: "2", //2:保单
  1677. })
  1678. .then((res) => {
  1679. if (res.data) {
  1680. businessList.push({
  1681. fileTitle: "商业电子保单",
  1682. filename: this.orderInfo.sypolicyno,
  1683. fileurl: res.data,
  1684. });
  1685. }
  1686. });
  1687. }
  1688. if (this.orderInfo.crossInsurance.length > 0) {
  1689. this.orderInfo.crossInsurance.map((ele) => {
  1690. this.$api.letter
  1691. .zijingetPolicyPrint({
  1692. companyId: res.data.id,
  1693. policyNumber: ele.policyNumber,
  1694. riskCode: "0513",
  1695. type: "2", //2:保单
  1696. })
  1697. .then((res) => {
  1698. if (res.data) {
  1699. accidentList.push({
  1700. fileTitle: "驾意险保单",
  1701. filename: ele.policyNumber,
  1702. fileurl: res.data,
  1703. });
  1704. } else {
  1705. this.$message.error(res.msg);
  1706. }
  1707. });
  1708. });
  1709. }
  1710. break;
  1711. case 2:
  1712. if (
  1713. this.orderInfo.jqpolicyno ||
  1714. this.orderInfo.sypolicyno
  1715. ) {
  1716. this.$api.letter
  1717. .pythongetPolicyPrint({
  1718. subOrderNo: res.data.id,
  1719. })
  1720. .then((res) => {
  1721. if (res.code == 200 && res.data) {
  1722. if (res.data.jqxPolicyUrl) {
  1723. this.oldfileList.push({
  1724. fileTitle: "交强电子保单",
  1725. filename: this.orderInfo.jqpolicyno,
  1726. fileurl: res.data.jqxPolicyUrl,
  1727. });
  1728. }
  1729. if (res.data.jqxFlagUrl) {
  1730. this.oldfileList.push({
  1731. fileTitle: "交强电子标志",
  1732. filename: this.orderInfo.jqpolicyno,
  1733. fileurl: res.data.jqxFlagUrl,
  1734. });
  1735. }
  1736. if (res.data.syxPolicyUrl) {
  1737. businessList.push({
  1738. fileTitle: "商业电子保单",
  1739. filename: this.orderInfo.sypolicyno,
  1740. fileurl: res.data.syxPolicyUrl,
  1741. });
  1742. }
  1743. if (
  1744. res.data.jyxInfoList &&
  1745. res.data.jyxInfoList.length > 0
  1746. ) {
  1747. res.data.jyxInfoList.forEach((val) => {
  1748. accidentList.push({
  1749. fileTitle: "驾意险保单",
  1750. filename: "驾意险保单",
  1751. fileurl: val.jyx_policy_url,
  1752. });
  1753. });
  1754. }
  1755. } else {
  1756. this.$message.error(res.msg);
  1757. }
  1758. });
  1759. }
  1760. break;
  1761. }
  1762. break;
  1763. default:
  1764. }
  1765. }
  1766. let obj = {
  1767. oldfileList: this.oldfileList,
  1768. businessList,
  1769. accidentList,
  1770. };
  1771. this.$refs.detailsDialog.warrantyFun(obj);
  1772. }
  1773. this.feeDetailInfo = res.data.orderFeeResult;
  1774. this.oldFeeInfo = res.data.adjustFeeDescVo;
  1775. this.adjustFeeDescInfo = { ...this.oldFeeInfo };
  1776. // this.quotedetailsdialogVisible = true;
  1777. this.$refs.detailsDialog.setBackupVisible(true);
  1778. } else {
  1779. this.$message.error("订单获取失败");
  1780. }
  1781. });
  1782. },
  1783. // 设置每页条数
  1784. applyhandleSizeChange(val) {
  1785. this.pageSize = val;
  1786. this.pageNum = 1;
  1787. this.pageRequest.pageNum = 1;
  1788. this.pageRequest.pageSize = val;
  1789. this.findPage();
  1790. },
  1791. // 当前页
  1792. applyhandleCurrentChange(val) {
  1793. this.pageNum = val;
  1794. this.pageRequest.pageNum = val;
  1795. this.findPage();
  1796. },
  1797. handleRowChange(row) {
  1798. if (!row.expanded) {
  1799. this.$api.letter
  1800. .querySonOrders({ orderNo: row.orderno })
  1801. .then((res) => {
  1802. if (res.code == "200" && res.data.length != 0) {
  1803. this.pageResult.map((item) => {
  1804. if (item.orderno === row.orderno) {
  1805. item.insAreaCompanyList = res.data;
  1806. }
  1807. return item;
  1808. });
  1809. row.expanded = !row.expanded;
  1810. this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
  1811. } else {
  1812. this.$message.info("暂无数据");
  1813. }
  1814. });
  1815. } else {
  1816. row.expanded = !row.expanded;
  1817. this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
  1818. }
  1819. },
  1820. //数据
  1821. findPage() {
  1822. this.loading = true;
  1823. this.$api.task.queryPageOrder(this.pageRequest).then((res) => {
  1824. if (res.code == "200") {
  1825. this.loading = false;
  1826. this.pageResult = res.data.content;
  1827. this.pageNum = res.data.pageNum;
  1828. this.totalSize = res.data.totalSize;
  1829. this.pageResult.forEach((val) => {
  1830. this.$set(val, "expanded", false);
  1831. });
  1832. } else {
  1833. this.loading = false;
  1834. }
  1835. });
  1836. },
  1837. //查询
  1838. onSubmit() {
  1839. this.pageRequest.pageNum = 1;
  1840. this.pageRequest.pageSize = 20;
  1841. this.findPage();
  1842. },
  1843. //时间js
  1844. monthChange(e) {
  1845. if (e === null) {
  1846. this.pageRequest.startDate = e;
  1847. this.pageRequest.endDate = e;
  1848. } else {
  1849. this.pageRequest.startDate = e[0];
  1850. this.pageRequest.endDate = e[1];
  1851. }
  1852. },
  1853. },
  1854. };
  1855. </script>
  1856. <style lang="scss" scoped>
  1857. /deep/ {
  1858. .el-table .row-expand-cover .cell .el-table__expand-icon {
  1859. display: none;
  1860. }
  1861. .el-descriptions__body {
  1862. padding: 10px 50px;
  1863. box-sizing: border-box;
  1864. color: rgb(226, 118, 10);
  1865. }
  1866. .el-descriptions-item__label {
  1867. &:not(.is-bordered-label) {
  1868. color: #333;
  1869. }
  1870. }
  1871. .saomazhifucodeClass .el-dialog__body,
  1872. .saomazhifucodeClass .el-dialog__header {
  1873. padding: 0;
  1874. }
  1875. .el-input.is-disabled .el-input__inner {
  1876. color: #333;
  1877. }
  1878. }
  1879. .ORcodebody {
  1880. width: 100%;
  1881. height: auto;
  1882. box-sizing: border-box;
  1883. }
  1884. .code_title {
  1885. width: 100%;
  1886. height: 50px;
  1887. background-color: #fdcb08;
  1888. justify-content: center;
  1889. }
  1890. .code_title > span {
  1891. font-size: 22px;
  1892. color: #000;
  1893. font-weight: bold;
  1894. }
  1895. .ORcode {
  1896. width: 100%;
  1897. background: #fff;
  1898. height: auto;
  1899. display: flex;
  1900. justify-content: center;
  1901. align-items: center;
  1902. padding: 30px;
  1903. box-sizing: border-box;
  1904. border-bottom: 6px dotted #fdcb08;
  1905. }
  1906. .ORcode > div {
  1907. width: 180px;
  1908. height: 180px;
  1909. border: 1px solid #000;
  1910. border-radius: 5px;
  1911. }
  1912. .ORtitle {
  1913. background: #fff;
  1914. width: 100%;
  1915. padding: 20px;
  1916. box-sizing: border-box;
  1917. border-bottom: 1px solid #f2f2f2;
  1918. }
  1919. .ORtitle > div {
  1920. width: 100%;
  1921. margin: 10px 0;
  1922. font-weight: bold;
  1923. font-size: 14px;
  1924. display: flex;
  1925. align-items: center;
  1926. }
  1927. .ORtitle > div > span:nth-child(1) {
  1928. color: #979797;
  1929. text-align: end;
  1930. width: 150px;
  1931. }
  1932. .ORtitle > div > span:nth-child(2) {
  1933. color: #000;
  1934. margin-left: 10px;
  1935. }
  1936. </style>
  1937. <style scoped>
  1938. #qqq {
  1939. background-color: #111;
  1940. width: 300px;
  1941. height: 300px;
  1942. margin: 0 auto;
  1943. /*水平居中*/
  1944. position: relative;
  1945. }
  1946. #qrCode {
  1947. display: inline-block;
  1948. margin: 0 auto;
  1949. /*水平居中*/
  1950. position: relative;
  1951. top: 15%;
  1952. }
  1953. #qrCode img {
  1954. width: 200px;
  1955. height: 200px;
  1956. background-color: #fff;
  1957. padding: 6px;
  1958. }
  1959. .leftContainer {
  1960. width: 80px;
  1961. position: fixed;
  1962. top: 79px;
  1963. left: 30px;
  1964. }
  1965. .leftContainer .el-col {
  1966. width: 80px;
  1967. height: 80px;
  1968. border-bottom: 1px solid #4d5c6f;
  1969. background: #526176;
  1970. cursor: pointer;
  1971. color: #a6aeb9;
  1972. border-radius: 0;
  1973. }
  1974. .leftContainer .el-col a {
  1975. display: block;
  1976. color: #a6aeb9;
  1977. text-decoration: none;
  1978. }
  1979. .leftContainer .el-col a:hover {
  1980. color: #fff;
  1981. }
  1982. .leftContainer .el-col a.active {
  1983. color: #fff;
  1984. }
  1985. .leftContainer .el-col i {
  1986. font-size: 30px;
  1987. margin: 15px 0px 5px;
  1988. }
  1989. .rightContainer {
  1990. width: calc(100vw - 160px);
  1991. margin-left: 100px;
  1992. }
  1993. .rightContainer .header .el-col {
  1994. font-size: 18px;
  1995. font-weight: bold;
  1996. }
  1997. .rightContainer .bodyTitle {
  1998. height: 40px;
  1999. background: #f3f3f3;
  2000. border: 1px solid #dddddd;
  2001. }
  2002. .rightContainer .bodyTitle > label {
  2003. margin: 0px 15px;
  2004. font-weight: bold;
  2005. }
  2006. .rightContainer #demo2 .body,
  2007. .rightContainer #demo6 .body {
  2008. border: 1px solid #ddd;
  2009. padding: 15px;
  2010. border-top: none;
  2011. }
  2012. .rightContainer .el-card {
  2013. margin-bottom: 15px;
  2014. }
  2015. .body .el-row .el-col label {
  2016. text-align: right;
  2017. width: 80px;
  2018. font-size: 14px;
  2019. width: 100%;
  2020. line-height: 36px;
  2021. display: inline-block;
  2022. box-sizing: border-box;
  2023. }
  2024. .disabledInput {
  2025. width: 80% !important;
  2026. background-color: #f5f7fa;
  2027. text-align: center !important;
  2028. max-width: 200px;
  2029. border: 1px solid #e4e7ed;
  2030. color: #c0c4cc;
  2031. cursor: not-allowed;
  2032. border-radius: 4px;
  2033. box-sizing: border-box;
  2034. padding: 0px 10px;
  2035. height: 36px;
  2036. margin: 20px 10%;
  2037. }
  2038. /* 上传图片样式Start */
  2039. .avatar-uploader .el-upload {
  2040. border: 1px dashed #d9d9d9;
  2041. border-radius: 6px;
  2042. cursor: pointer;
  2043. position: relative;
  2044. overflow: hidden;
  2045. }
  2046. .avatar-uploader .el-upload:hover {
  2047. border-color: #409eff;
  2048. }
  2049. .avatar-uploader-icon {
  2050. font-size: 28px;
  2051. color: #8c939d;
  2052. width: 100px;
  2053. height: 100px;
  2054. line-height: 100px;
  2055. text-align: center;
  2056. border: 1px dashed #d9d9d9;
  2057. }
  2058. .avatar {
  2059. border: 1px dashed #d9d9d9;
  2060. padding: 5px;
  2061. border-radius: 6px;
  2062. width: 100px;
  2063. height: 100px;
  2064. display: block;
  2065. }
  2066. .imageStyle {
  2067. display: inline-block;
  2068. width: 100px;
  2069. height: 100px;
  2070. box-shadow: #ddd 0px 0px 5px;
  2071. margin-right: 20px;
  2072. }
  2073. /* 上传图片样式End */
  2074. .dis {
  2075. display: flex;
  2076. }
  2077. .align {
  2078. align-items: center;
  2079. }
  2080. .jus {
  2081. justify-content: space-between;
  2082. }
  2083. .display {
  2084. display: flex;
  2085. justify-content: center;
  2086. align-items: center;
  2087. padding: 10px;
  2088. box-sizing: border-box;
  2089. }
  2090. .block {
  2091. margin-top: 10px;
  2092. }
  2093. .page {
  2094. padding: 14px;
  2095. box-sizing: border-box;
  2096. }
  2097. .el-select--medium {
  2098. vertical-align: bottom !important;
  2099. }
  2100. .widths {
  2101. width: 220px;
  2102. }
  2103. .demo-table-expand {
  2104. width: 100%;
  2105. height: auto;
  2106. padding: 10px 50px;
  2107. font-size: 14px;
  2108. }
  2109. .demo-table-expand-time {
  2110. width: 600px;
  2111. }
  2112. .demo-table-expand-time > div {
  2113. margin: 0 10px;
  2114. }
  2115. .icon-img {
  2116. display: block;
  2117. width: 30px;
  2118. height: 30px;
  2119. }
  2120. .Enclosure {
  2121. width: 100%;
  2122. background-color: #fff;
  2123. padding: 20px;
  2124. box-sizing: border-box;
  2125. margin-bottom: 15px;
  2126. border-radius: 6px;
  2127. border: 1px solid #ebeef5;
  2128. transition: all 0.2s ease-in-out;
  2129. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  2130. }
  2131. .headers {
  2132. display: flex;
  2133. align-items: center;
  2134. justify-content: space-between;
  2135. flex-wrap: wrap;
  2136. margin: 5px 0;
  2137. font-weight: bold;
  2138. color: #333;
  2139. }
  2140. /* 内容待定 */
  2141. .headers_Custom > div {
  2142. padding: 20px 40px;
  2143. font-size: 16px;
  2144. }
  2145. .headers_Custom > div > span {
  2146. color: rgb(226, 118, 10);
  2147. }
  2148. .back {
  2149. color: #303133;
  2150. font-weight: 700;
  2151. }
  2152. .u-f-ac {
  2153. -webkit-box-align: center;
  2154. align-items: center;
  2155. /* padding: 10px; */
  2156. }
  2157. .bodyTitle {
  2158. height: 40px;
  2159. background: #f3f3f3;
  2160. border: 1px solid #dddddd;
  2161. line-height: 40px;
  2162. padding: 0 20px;
  2163. box-sizing: border-box;
  2164. }
  2165. .bjdbody {
  2166. width: 100%;
  2167. height: auto;
  2168. background-color: rgb(199, 20, 45);
  2169. padding: 20px 10px 0 10px;
  2170. box-sizing: border-box;
  2171. border-radius: 8px;
  2172. }
  2173. .bjdCarMessage,
  2174. .bjdCarSum {
  2175. width: 100%;
  2176. height: auto;
  2177. background-color: #fff;
  2178. border-radius: 8px;
  2179. margin-bottom: 10px;
  2180. padding-bottom: 10px;
  2181. }
  2182. .bjdfooter {
  2183. border-top: 1px solid #fff;
  2184. padding: 10px;
  2185. box-sizing: border-box;
  2186. color: #fff;
  2187. }
  2188. .bjdCarSum > div {
  2189. width: 100%;
  2190. padding: 15px 20px;
  2191. box-sizing: border-box;
  2192. font-weight: bold;
  2193. color: #000;
  2194. border-bottom: 1px solid #f2f2f2;
  2195. }
  2196. .bjdCarMessage1 {
  2197. height: 80px;
  2198. padding: 16px;
  2199. box-sizing: border-box;
  2200. border-bottom: 1px solid #f2f2f2;
  2201. display: flex;
  2202. align-items: center;
  2203. color: #000;
  2204. }
  2205. .bjdCarMessage1 > .f-c > span:nth-child(1) {
  2206. font-size: 18px;
  2207. font-weight: bold;
  2208. }
  2209. .bjdCarMessage1 > img,
  2210. .bjdfooter > img {
  2211. margin-right: 30px;
  2212. }
  2213. .bjdCarMessage1 .f-c > span:nth-child(2),
  2214. .bjdCarMessage1 .f-c > span:nth-child(3) {
  2215. font-size: 12px;
  2216. margin-top: 5px;
  2217. }
  2218. .bjdCarMessage2_car > span:nth-child(1) {
  2219. color: #000;
  2220. font-weight: bold;
  2221. }
  2222. .bjdCarMessage2_car > span:nth-child(2) {
  2223. color: #999;
  2224. }
  2225. .bjdCarMessage2 > ul > li {
  2226. margin: 20px 0;
  2227. }
  2228. .Risk {
  2229. width: 100%;
  2230. height: auto;
  2231. display: flex;
  2232. flex-direction: column;
  2233. align-items: center;
  2234. font-size: 12px;
  2235. }
  2236. .Risk_title {
  2237. width: 100%;
  2238. height: 40px;
  2239. }
  2240. .Risk_title > div {
  2241. background: rgb(199, 20, 45);
  2242. color: rgb(255, 255, 255);
  2243. height: 100%;
  2244. font-weight: 500;
  2245. width: 33.3%;
  2246. padding: 10px 20px;
  2247. box-sizing: border-box;
  2248. border: #fff solid 1px;
  2249. display: flex;
  2250. justify-content: center;
  2251. align-items: center;
  2252. border-bottom: none;
  2253. }
  2254. .Risk_title > div:nth-child(2) {
  2255. border-left: none;
  2256. border-right: none;
  2257. }
  2258. .Risk_data {
  2259. width: 100%;
  2260. height: 40px;
  2261. }
  2262. .Risk_data > div {
  2263. background: #fbf6f7;
  2264. color: rgb(51, 51, 51);
  2265. height: 100%;
  2266. font-weight: 500;
  2267. width: 33.3%;
  2268. padding: 10px 20px;
  2269. box-sizing: border-box;
  2270. border: #fff solid 1px;
  2271. display: flex;
  2272. justify-content: center;
  2273. align-items: center;
  2274. border-bottom: none;
  2275. }
  2276. .Risk_data > div :nth-child(2) {
  2277. border-left: none;
  2278. border-right: none;
  2279. }
  2280. .Risk_title > div :nth-child(3) {
  2281. border-top-right-radius: 10px;
  2282. }
  2283. .jyxStyle > span {
  2284. display: inline-block;
  2285. text-align: center;
  2286. }
  2287. .FeeEnclosure /deep/ table {
  2288. width: 100% !important;
  2289. }
  2290. .FeeEnclosure /deep/ .cell {
  2291. text-align: center;
  2292. }
  2293. .FeeEnclosure /deep/ .el-table__empty-block {
  2294. width: 100% !important;
  2295. }
  2296. .FeeEnclosure .feeadjust-input {
  2297. width: 35%;
  2298. height: 20px;
  2299. font-size: 13px;
  2300. }
  2301. </style>