applyCostConfirm.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. <template>
  2. <el-dialog
  3. :close-on-click-modal="false"
  4. :close-on-press-escape="false"
  5. :title="dialogTitle"
  6. :visible.sync="dialogVisible"
  7. top="50px"
  8. width="75%"
  9. :before-close="beforeClose"
  10. >
  11. <div class="tabsdom">
  12. <el-tabs v-model="activeName" @tab-click="handleClick">
  13. <el-tab-pane label="报支申请" name="first">
  14. <el-form
  15. ref="elformData"
  16. :model="form"
  17. class="cost_form"
  18. label-width="125px"
  19. style="width: 100%;padding: 5px"
  20. >
  21. <el-card shadow="always" style="padding: 15px 5px 5px 15px">
  22. <el-row :gutter="10">
  23. <el-col :span="24">
  24. <el-form-item label="关联项目">
  25. <el-input v-model="form.proMainName" readonly></el-input>
  26. </el-form-item>
  27. </el-col>
  28. </el-row>
  29. <el-card class="pdtopbottom16 mb25 pdtop16px">
  30. <span class="moneydetails">
  31. 费用明细
  32. </span>
  33. <el-row :gutter="10" class="eltype">
  34. <el-col :span="5" class="col-txt txtc"><span>费用&成本类型</span></el-col>
  35. <el-col :span="5" class="col-txt txtc">
  36. 金额(元)
  37. </el-col>
  38. <el-col :span="4" class="col-txt txtc">发票号</el-col>
  39. <el-col :span="10" class="col-txt txtc">
  40. 单据
  41. </el-col>
  42. </el-row>
  43. <el-row
  44. v-for="(item,index) in form.applyUseMoneyDetailListString"
  45. :gutter="10" class="eltype"
  46. >
  47. <el-col :span="5">
  48. <el-select
  49. size="small"
  50. v-model="item.feeType"
  51. filterable
  52. placeholder="请选择"
  53. disabled
  54. style="width: 100%"
  55. >
  56. <el-option
  57. v-for="item in cbFyTypes"
  58. :key="item.value"
  59. :label="item.label"
  60. :value="item.value"
  61. />
  62. </el-select>
  63. </el-col>
  64. <el-col :span="5">
  65. <el-input
  66. size="small"
  67. v-model="item.feeMoney"
  68. filterable
  69. placeholder="请选择"
  70. readonly
  71. style="width: 100%"
  72. />
  73. </el-col>
  74. <el-col :span="4">
  75. <el-input
  76. readonly
  77. v-model="item.fileNumber"
  78. :controls="false"
  79. size="small"
  80. :disabled="item.fileList==0"
  81. controls-position="right"
  82. placeholder="无"
  83. style="width: 100%"
  84. />
  85. </el-col>
  86. <el-col :span="10" class="col-input">
  87. <el-upload
  88. disabled
  89. :action="$constant.BASE_URI+'/FileController/upload'"
  90. :file-list="item.fileList"
  91. :http-request="(params)=>{uploadFile(params,index)}"
  92. :limit="5"
  93. :multiple="false"
  94. :show-file-list="false"
  95. class="upload-demo"
  96. style="width: 30%;float: left;margin-left: 42px;display: block"
  97. >
  98. <el-button disabled size="small" style="font-size: 14px" type="text">
  99. 上传发票
  100. <img
  101. src="./fapiaoicon.png"
  102. style="margin-left: 5px;position: absolute;top: 13.5px;"
  103. width="24px"
  104. />
  105. </el-button>
  106. <!-- <div slot="file" slot-scope="{file}">-->
  107. <!-- <a :href="file.url">{{ file.name }}</a>-->
  108. <!-- <span class="el-upload-list__item-actions">-->
  109. <!-- <i class="el-icon-delete" @click="handlePictureRemove(index,file,item.fileList)"/>-->
  110. <!-- </span>-->
  111. <!-- </div>-->
  112. </el-upload>
  113. <el-radio-group
  114. v-model="item.fileType"
  115. disabled
  116. style="margin-left: 30px;"
  117. @input="changeFileType($event,index)"
  118. >
  119. <el-radio v-if="false" :label="1">上传发票</el-radio>
  120. <el-radio :label="2">发票后补</el-radio>
  121. <el-radio :label="3">无发票</el-radio>
  122. </el-radio-group>
  123. </el-col>
  124. <el-col :span="15">&nbsp;</el-col>
  125. <el-col :span="9">
  126. <div v-for="(file,i) in item.fileList" v-if="item.fileList.length>0"
  127. style="margin: 0px 0px 0px 45px;"
  128. >
  129. <div>
  130. <a :href="file.url">{{ file.name }}</a>
  131. <span class="el-upload-list__item-actions">
  132. <!-- <i class="el-icon-delete" @click="handlePictureRemove(i,file,item.fileList)"/>-->
  133. </span>
  134. </div>
  135. </div>
  136. </el-col>
  137. </el-row>
  138. <div class="feeMoneyTotal">
  139. <div style="float: right">共计金额(元):{{ form.feeMoneyTotal }}</div>
  140. </div>
  141. </el-card>
  142. <el-row>
  143. <el-col :span="24">
  144. <el-form-item label="用途">
  145. <el-input
  146. v-model="form.useReasons"
  147. readonly
  148. type="textarea"
  149. />
  150. </el-form-item>
  151. </el-col>
  152. <el-col :span="24">
  153. <el-form-item label="收款单位(人)">
  154. <el-input v-model="form.payeeName" readonly></el-input>
  155. </el-form-item>
  156. </el-col>
  157. <el-col :span="12">
  158. <el-form-item label="开户银行">
  159. <el-input v-model="form.bankName" readonly></el-input>
  160. </el-form-item>
  161. </el-col>
  162. <el-col :span="12">
  163. <el-form-item label="银行账户" label-width="125px">
  164. <el-input v-model="form.bankAccountNum" placeholder="金额" readonly/>
  165. </el-form-item>
  166. </el-col>
  167. <el-col :span="24">
  168. <el-form-item label="抄送">
  169. <el-input v-model="form.flowMainCcList" readonly/>
  170. </el-form-item>
  171. </el-col>
  172. <el-col :span="12">
  173. <el-form-item
  174. label="发起人" prop="field119"
  175. >
  176. <el-input v-model="form.createdByString" readonly></el-input>
  177. </el-form-item>
  178. </el-col>
  179. <el-col :span="12">
  180. <el-form-item
  181. label="发起时间"
  182. prop="field119"
  183. >
  184. <el-input v-model="form.createdAt" readonly></el-input>
  185. </el-form-item>
  186. </el-col>
  187. </el-row>
  188. <el-card v-if="zhidanStatus" style="margin-bottom: 10px;">
  189. <h3 style="margin:0">制单 </h3>
  190. <el-form
  191. ref="confirmForm"
  192. :model="confirmForm"
  193. class="cost_form"
  194. label-width="100px"
  195. style="width: 100%;padding: 5px"
  196. >
  197. <el-row :gutter="10">
  198. <el-col :span="12">
  199. <el-form-item label="支付方式" style="margin-bottom: 15px">
  200. <el-select :disabled="zffhStatus" v-model="confirmForm.payType">
  201. <el-option
  202. v-for="item in dc_data.PAY_TYPE"
  203. :key="item.value"
  204. :label="item.label"
  205. :value="item.value"
  206. />
  207. </el-select>
  208. </el-form-item>
  209. </el-col>
  210. <el-col :span="12">
  211. <el-form-item disabled label="支付账户" style="margin-bottom: 15px">
  212. <el-select :disabled="zffhStatus" v-model="confirmForm.accountType">
  213. <el-option
  214. v-for="item in dc_data.ACCOUNT"
  215. :key="item.value"
  216. :label="item.label"
  217. :value="item.value"
  218. />
  219. </el-select>
  220. </el-form-item>
  221. </el-col>
  222. <el-col :span="12">
  223. <el-form-item label="制单日期" style="margin-bottom: 0">
  224. <el-date-picker
  225. :readonly="zffhStatus"
  226. v-model="confirmForm.makeDate"
  227. placeholder="请填写制单日期"
  228. style="width: 100%"
  229. type="date"
  230. value-format="yyyy-MM-dd"
  231. />
  232. </el-form-item>
  233. </el-col>
  234. <el-col :span="12">
  235. <el-form-item label="制单号" style="margin-bottom: 0">
  236. <el-input :readonly="zffhStatus" v-model="confirmForm.makeNum"></el-input>
  237. </el-form-item>
  238. </el-col>
  239. </el-row>
  240. </el-form>
  241. </el-card>
  242. <el-card v-if="zffhStatus" style="margin-bottom: 10px;">
  243. <h3 style="margin:0">支付复核 </h3>
  244. <el-form
  245. ref="confirmForm"
  246. :model="confirmForm"
  247. class="cost_form"
  248. label-width="100px"
  249. style="width: 100%;padding: 5px"
  250. >
  251. <el-row :gutter="10">
  252. <el-col :span="24">
  253. <el-form-item label="实际支付日期" style="margin-bottom: 15px">
  254. <el-date-picker
  255. v-model="confirmForm.payTime"
  256. placeholder="实际支付日期"
  257. style="width: 100%"
  258. type="date"
  259. value-format="yyyy-MM-dd"
  260. />
  261. </el-form-item>
  262. </el-col>
  263. <el-col :span="24">
  264. <el-form-item label="备注" style="margin-bottom: 0">
  265. <el-input v-model="confirmForm.payRemark" style="margin-top:10px" type="textarea"/>
  266. </el-form-item>
  267. </el-col>
  268. </el-row>
  269. </el-form>
  270. </el-card>
  271. </el-card>
  272. </el-form>
  273. <h3>流程历史</h3>
  274. <el-card>
  275. <div class="tableDom">
  276. <el-table
  277. :data="tableData"
  278. :header-cell-style="{
  279. background:'#1890FF !important',
  280. color:'white'
  281. }"
  282. border
  283. style="width: 100%"
  284. >
  285. <el-table-column fixed label="序号" type="index" width="60"/>
  286. <el-table-column
  287. label="节点名称"
  288. prop="nodeName"
  289. width="180"
  290. />
  291. <el-table-column
  292. label="处理人"
  293. prop="auditUserName"
  294. width="180"
  295. />
  296. <el-table-column
  297. label="审核结果"
  298. prop="auditResultString"
  299. />
  300. <el-table-column
  301. label="审核意见"
  302. prop="auditContent"
  303. />
  304. <el-table-column
  305. label="发起/审核时间"
  306. prop="createdAt"
  307. >
  308. <template slot-scope="scope">
  309. {{ $common.transTime(scope.row.createdAt) }}
  310. </template>
  311. </el-table-column>
  312. </el-table>
  313. </div>
  314. </el-card>
  315. <h3>处理</h3>
  316. <el-card shadow="always" style="padding: 0px 5px 5px 15px">
  317. <el-form
  318. ref="confirmForm"
  319. :model="confirmForm"
  320. class="cost_form"
  321. label-width="100px"
  322. style="width: 100%;padding: 5px"
  323. >
  324. <el-row :gutter="10">
  325. <el-col :span="24">
  326. <el-form-item label="处理结果" style="margin-bottom: 15px">
  327. <el-radio-group v-model="confirmForm.confirmResult">
  328. <el-radio :label="1">同意</el-radio>
  329. <el-radio v-if="argeeNoStatus" :label="2">退回发起人</el-radio>
  330. <el-radio v-if="argeeBackStatus" :label="3">退回上节点</el-radio>
  331. <!-- <el-radio :label="4">结束流程</el-radio>-->
  332. </el-radio-group>
  333. </el-form-item>
  334. </el-col>
  335. <el-col :span="24">
  336. <el-form-item label="处理意见">
  337. <el-input v-model="confirmForm.confirmContent" style="margin-top:10px" type="textarea"/>
  338. <el-dropdown size="mini" split-button trigger="hover" type="primary">
  339. 常用语选择
  340. <el-dropdown-menu slot="dropdown">
  341. <el-dropdown-item
  342. v-for="item in dc_data.COMMON_PHRASES"
  343. @click.native="selectCommonPhrases(item.label)"
  344. >
  345. {{ item.label }}
  346. </el-dropdown-item>
  347. </el-dropdown-menu>
  348. </el-dropdown>
  349. </el-form-item>
  350. </el-col>
  351. <el-col :span="24">
  352. <el-form-item label="审核人抄送">
  353. <user-select
  354. :default-select="confirmList"
  355. :multiple="true"
  356. class="cclist"
  357. @selectValue="parentMethod"
  358. />
  359. </el-form-item>
  360. </el-col>
  361. </el-row>
  362. </el-form>
  363. </el-card>
  364. </el-tab-pane>
  365. <el-tab-pane label="流程图 " name="second">
  366. <cost-canvas v-if="canVasStatus" ref="costCanvas"/>
  367. </el-tab-pane>
  368. </el-tabs>
  369. </div>
  370. <div slot="footer">
  371. <el-button @click="dialogVisible = false">取 消</el-button>
  372. <el-button type="primary" @click="confirmSubmit()">确 定</el-button>
  373. </div>
  374. </el-dialog>
  375. </template>
  376. <script>
  377. import { upload } from '@/static/utils/channel'
  378. import Base from '@/views/base/base'
  379. import BaseData from '@/views/base/baseData'
  380. import UserSelect from '@/views/components/UserSelect'
  381. import costCanvas from '@/views/workflow/components/myProcess/costCanvas.vue'
  382. export default {
  383. name: 'ApplyPay',
  384. mixins: [Base, BaseData],
  385. components: {
  386. upload, UserSelect, costCanvas
  387. },
  388. data() {
  389. return {
  390. row: {},
  391. canVasStatus: false,
  392. zffhStatus: false,
  393. zhidanStatus: false,
  394. confirmForm: {
  395. makeDate:'',
  396. payType:null,
  397. makeNum:'',
  398. confirmContent: '',
  399. accountType:'',
  400. confirmResult: 1
  401. },
  402. confirmList: [],
  403. selectList: [],
  404. tableData: [],
  405. loading: false,
  406. dc_key: ['ORDER_STATUS', 'PAY_TYPE', 'BUDGET_FY', 'COMMON_PHRASES','ACCOUNT'],
  407. argeeBackStatus: false,
  408. argeeNoStatus: false,
  409. ProjectData: [],
  410. dialogTitle: '费用报支申请-审核',
  411. dialogVisible: false,
  412. form: {
  413. applyUseMoneyDetailListString: [],
  414. feeMoneyTotal: 0
  415. },
  416. activeName: 'first',
  417. cbFyTypes:[]
  418. }
  419. },
  420. mounted() {
  421. const _this = this
  422. _this.initDict(this.dc_key).then((res) => {
  423. })
  424. },
  425. methods: {
  426. handleClick(tab, event) {
  427. this.canVasStatus = false
  428. console.log(this.activeName)
  429. if (this.activeName == 'second') {
  430. this.canVasStatus = true
  431. debugger
  432. this.$nextTick(() => {
  433. this.$refs.costCanvas.createNodeCanvas(this.row)
  434. })
  435. }
  436. },
  437. beforeClose() {
  438. this.canVasStatus = false
  439. this.form = {
  440. applyUseMoneyDetailListString: []
  441. }
  442. this.dialogVisible = false
  443. this.activeName = 'first'
  444. this.$forceUpdate()
  445. },
  446. selectCommonPhrases(e) {
  447. if (!this.confirmForm.confirmContent) this.confirmForm.confirmContent = ''
  448. this.confirmForm.confirmContent += e
  449. },
  450. getFeeMoneyTotal() {
  451. let feeMoneyTotal = 0
  452. for (let i = 0; i < this.form.applyUseMoneyDetailListString.length; i++) {
  453. feeMoneyTotal += this.form.applyUseMoneyDetailListString[i].feeMoney
  454. }
  455. this.form.feeMoneyTotal = feeMoneyTotal
  456. },
  457. changeFileType(e, i) {
  458. if (e != 1) {
  459. this.form.applyUseMoneyDetailListString[i].fileList = []
  460. }
  461. this.$forceUpdate()
  462. },
  463. parentMethod(val) {
  464. if (val.length > 0) {
  465. this.confirmForm.ccList = val.join(',')
  466. }
  467. },
  468. handlePictureRemove(i, file, fileList) {
  469. fileList.splice(i, 1)
  470. let copyFileList = [...fileList]
  471. fileList = copyFileList
  472. this.form.applyUseMoneyDetailListString = this.form.applyUseMoneyDetailListString.map((e) => {
  473. return e
  474. })
  475. },
  476. uploadFile(params, i) {
  477. upload(params, true).then((res) => {
  478. this.form.applyUseMoneyDetailListString[i].fileList.push(res)
  479. this.form.applyUseMoneyDetailListString[i].fileType = 1
  480. this.$message.success('上传成功')
  481. })
  482. },
  483. baseRequest1(prefix, opUrl, postData) {
  484. return this.$channel.globleRequest(prefix, opUrl, postData, 'project task')
  485. },
  486. async confirmSubmit() {
  487. console.log(this.confirmForm)
  488. for (let i = 0; i < this.form.applyUseMoneyDetailListString.length; i++) {
  489. if (this.form.applyUseMoneyDetailListString[i].fileType == 1
  490. &&
  491. (!this.form.applyUseMoneyDetailListString[i].fileList
  492. ||
  493. this.form.applyUseMoneyDetailListString[i].fileList.length == 0)) {
  494. this.$message.warning(`请上传费用明细中第${i + 1}行的发票文件`)
  495. return
  496. }
  497. }
  498. const { data } = await this.baseRequest1(
  499. 'ApplyUseMoneyController',
  500. 'AddConfirmResultUseMoney',
  501. { ...this.confirmForm, applyUseMoneyDetailListString: JSON.stringify(this.form.applyUseMoneyDetailListString) })
  502. if (data.code == 200) {
  503. this.$message.success('处理成功')
  504. this.form = {}
  505. this.confirmForm = {
  506. makeDate:'',
  507. payType:null,
  508. makeNum:'',
  509. confirmContent: '',
  510. accountType: '',
  511. confirmResult: 1
  512. },
  513. this.dialogVisible = false
  514. this.$emit('getData')
  515. }
  516. },
  517. async setVisible(status, row) {
  518. this.loading = false
  519. this.row = row
  520. this.activeName = 'first'
  521. let { data: data } = await this.baseRequest1('ApplyUseMoneyController', 'getInfoByFlowMainPushId', { flowMainPushId: row.flowMainPushId })
  522. this.zffhStatus = data.pushUserKey.indexOf('flow_zffh') != -1 ? true : false
  523. this.zhidanStatus = data.pushUserKey.indexOf('flow_cnzf') != -1 ? true : false|| this.zffhStatus
  524. console.log('(data.pushUserKey.indexOf(\'flow_cnzf\') != -1 ? true : false)',(data.pushUserKey.indexOf('flow_cnzf') != -1 ? true : false))
  525. console.log('this.zffhStatus',this.zffhStatus)
  526. let { data: flowHistroy } = await this.baseRequest1('FlowMainController', 'getFlowHistroyByFlowMainId', { flowMainId: row.id })
  527. let noAndbackstatus = await this.baseRequest1('FlowMainController', 'getOutgoingFlowsByFlowMainPushId', { flowMainPushId: row.flowMainPushId })
  528. for (let i = 0; i < noAndbackstatus.data.length; i++) {
  529. if (noAndbackstatus.data[i].conditionExpression == '${agree==\'no\'}') this.argeeNoStatus = true
  530. if (noAndbackstatus.data[i].conditionExpression == '${agree==\'back\'}') this.argeeBackStatus = true
  531. }
  532. this.confirmForm.flowMainPushId = row.flowMainPushId
  533. this.tableData = flowHistroy
  534. this.form = data
  535. this.projectChange()
  536. let confirmForm= {...data}
  537. this.form.confirmResult = 1
  538. /*if(!this.zhidanStatus){
  539. if (confirmForm.makeNum) this.confirmForm.makeNum = confirmForm.makeNum
  540. if (confirmForm.makeDate) this.confirmForm.makeDate = this.$common.transDate(confirmForm.makeDate)
  541. if (confirmForm.payType) this.confirmForm.payType = confirmForm.payType
  542. if (confirmForm.accountType) this.confirmForm.accountType = confirmForm.accountType
  543. }else{
  544. this.confirmForm.makeNum=null
  545. this.confirmForm.makeDate=''
  546. this.confirmForm.payType=null
  547. }*/
  548. this.confirmForm.makeNum = confirmForm.makeNum? confirmForm.makeNum:null
  549. this.confirmForm.makeDate = confirmForm.makeDate?this.$common.transDate(confirmForm.makeDate):''
  550. this.confirmForm.payType = confirmForm.payType?confirmForm.payType:null
  551. this.confirmForm.accountType =confirmForm.accountType? confirmForm.accountType:null
  552. this.form.createdAt = this.form.createdAt ? this.$common.transDate(confirmForm.createdAt) : null
  553. this.form.applyUseMoneyDetailListString = data.applyUseMoneyDetailList
  554. for (const e of this.form.applyUseMoneyDetailListString) {
  555. // e.fileList = e.fileDataIds.split(',')
  556. if (e.fileDataIds && e.fileDataIds.length > 0) {
  557. const { data: fileTaoTaoList } = await this.baseRequest1('FileZtController', 'findFileInfoByIds/' + e.fileDataIds, '')
  558. e.fileList = fileTaoTaoList.data.map((file) => {
  559. console.log(file)
  560. return {
  561. url: this.$constant.BASE_URI + '/FileController/download/' + file.id,
  562. name: file.fileName,
  563. data: e.id,
  564. uid: new Date().getTime()
  565. }
  566. })
  567. } else {
  568. e.fileList = []
  569. }
  570. }
  571. if (data.flowMainCcList) {
  572. this.form.flowMainCcList = data.flowMainCcList.map((e) => {
  573. return (e.name)
  574. }).join()
  575. }
  576. if (data.applyUseMoneyDetailList) {
  577. this.form.applyUseMoneyDetailListString = data.applyUseMoneyDetailList
  578. }
  579. console.log(this.form.applyUseMoneyDetailListString)
  580. this.dialogVisible = status
  581. },
  582. addListRow() {
  583. const _this = this
  584. _this.form.applyUseMoneyDetailListString.push({ type: '1', fileList: [] })
  585. },
  586. deleteRow(index) {
  587. this.form.applyUseMoneyDetailListString.splice(index, 1)
  588. },
  589. async projectChange(){
  590. this.cbFyTypes=[]
  591. let submitData = {proId:this.form.proId }
  592. const { data } = await this.baseRequest1('ProMainDashboardController', 'getRightBudgetList', submitData)
  593. if (data) {
  594. const fyList = data.fyList || []
  595. const cbList = data.cbList || []
  596. fyList.forEach(item=>{
  597. const i = {
  598. value : item.budgetChildType,
  599. label:item.budgetType+'-'+item.budgetChildType
  600. }
  601. this.cbFyTypes.push(i)
  602. })
  603. cbList.forEach(item=>{
  604. const i = {
  605. value : item.budgetChildType,
  606. label:item.budgetType+'-'+item.budgetChildType
  607. }
  608. this.cbFyTypes.push(i)
  609. })
  610. }
  611. }
  612. }
  613. }
  614. </script>
  615. <style lang="scss">
  616. .mb25 {
  617. margin-bottom: 25px;
  618. }
  619. .pdtopbottom16 {
  620. padding: 0px 16px;
  621. }
  622. .pdtop16px {
  623. padding-top: 16px;
  624. }
  625. .cost_form {
  626. .col-input {
  627. font-weight: 400;
  628. }
  629. .el-form-item__label {
  630. text-align: right;
  631. font-size: 16px;
  632. font-family: 微软雅黑;
  633. padding-right: 10px;
  634. line-height: 40px;
  635. word-break: keep-all;
  636. white-space: nowrap;
  637. color: #606266;
  638. text-rendering: optimizeLegibility;
  639. font-weight: 400;
  640. }
  641. }
  642. .txtc {
  643. text-align: center
  644. }
  645. .ml5 {
  646. margin-left: 5px;
  647. }
  648. .eltype {
  649. margin-bottom: 5px;
  650. }
  651. .moneydetails {
  652. text-align: right;
  653. font-size: 16px;
  654. font-family: 微软雅黑;
  655. padding-right: 10px;
  656. word-break: keep-all;
  657. white-space: nowrap;
  658. color: #606266;
  659. text-rendering: optimizeLegibility;
  660. font-weight: 400;
  661. }
  662. .moneydetails:before {
  663. content: "*";
  664. color: #ff4949;
  665. }
  666. .tabsdom {
  667. .el-tabs__header {
  668. text-align: center !important;
  669. width: 139px !important;
  670. text-align: center !important;
  671. display: block !important;
  672. margin: auto !important;
  673. margin-bottom: 15px !important;
  674. }
  675. .el-tabs__nav-wrap::after {
  676. display: none;
  677. }
  678. .el-upload {
  679. width: 100%;
  680. }
  681. }
  682. .feeMoneyTotal {
  683. width: 100%;
  684. height: 14px;
  685. font-size: 14px;
  686. font-weight: 400;
  687. color: #1890FF;
  688. margin-top: 31px;
  689. margin-bottom: 13px;
  690. }
  691. </style>