enterpriseAudit.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  1. // 企业信息
  2. <template>
  3. <div class="center">
  4. <div class="center_css">
  5. <div class="top_css">
  6. <el-row>
  7. <el-col :span="14" style="height: 45px;">
  8. <!-- <el-button type="primary">添加</el-button> -->
  9. </el-col>
  10. <el-col :span="10">
  11. <div class="screen">
  12. <el-input class='find' placeholder="可按法人姓名、账号、企业名称查找" @keyup.enter.native="find" v-model="searchkeyWord"
  13. clearable @change="find"></el-input>
  14. <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
  15. src="../../../public/img/sousuo.png" /></el-button><span class="count_css">共{{ deptBudgetTotal
  16. }}条</span>
  17. </div>
  18. </el-col>
  19. </el-row>
  20. <el-row>
  21. <el-col>
  22. <div class="search_btn">
  23. <div :class="search == '' ? 'search' : 'searchNo'" class="search_item search_block"
  24. @click="searchBtn('')">
  25. 全部
  26. </div>
  27. <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
  28. 待审核
  29. </div>
  30. <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
  31. 已通过
  32. </div>
  33. <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
  34. 已驳回
  35. </div>
  36. <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
  37. 已过期
  38. </div>
  39. </div>
  40. </el-col>
  41. </el-row>
  42. </div>
  43. <el-table :data="tableData" style="width: 98%; margin: 0 auto; border-radius: 10px" height="55.8vh" border
  44. highlight-current-row>
  45. <el-table-column type="index" width="60" label="序号" align="center">
  46. <template scope="scope">
  47. <span>{{scope.$index + 1}}</span>
  48. <!-- <span v-else>{{scope.$index}}</span> -->
  49. </template>
  50. </el-table-column>
  51. <el-table-column prop="companyName" label="企业名称" min-width="150"></el-table-column>
  52. <el-table-column prop="unifiedSocialCreditCode" label="统一社会信用代码" min-width="160"></el-table-column>
  53. <el-table-column prop="legalPersonName" label="法定代表人" min-width="91"></el-table-column>
  54. <el-table-column prop="accountNumber" label="账号" min-width="107"></el-table-column>
  55. <el-table-column prop="accountBalance" label="可用余额(元)" min-width="133"></el-table-column>
  56. <el-table-column prop="accumulatedFreight" label="累计支付运费(元)" min-width="133"></el-table-column>
  57. <el-table-column prop="frozenAmount" label="冻结金额(元)" min-width="133"></el-table-column>
  58. <el-table-column label="账户" min-width="153">
  59. <template slot-scope="scope">
  60. <el-popover placement="right" width="400" trigger="click" @show="getBillList(scope.row.id)">
  61. <div v-if='billList.length>0' class="bill-content">
  62. <div class="bill-item" v-for="item in billList" :Key="item.id">
  63. <div class="row1">
  64. <div class="left">
  65. {{ item.types }}
  66. </div>
  67. <div class="right">{{ item.amountMoney }}元</div>
  68. </div>
  69. <div class="row1">
  70. <div class="left">
  71. <img v-if='item.rechargeUrl' style='width:20px;height:20px;' @click="enlarge(item.rechargeUrl)" :src="item.rechargeUrl" alt="">
  72. <div >{{item.orderNo}}</div>
  73. </div>
  74. <div class="right">{{ item.createDate }}</div>
  75. </div>
  76. <!-- <div class="row2">
  77. <div class="left">
  78. 支付预付款
  79. </div>
  80. <div class="right">-1000</div>
  81. </div> -->
  82. </div>
  83. </div>
  84. <div v-else>暂无数据</div>
  85. <!-- <el-button slot="reference">账单</el-button> -->
  86. <span slot="reference" class="btn_css" style="margin-right:20px">账单</span>
  87. </el-popover>
  88. <!-- <el-button style='margin-left:10px;' @click='seemessage(scope.row)'>信息</el-button> -->
  89. <span class="btn_css" @click='seemessage(scope.row)'>信息</span>
  90. </template>
  91. </el-table-column>
  92. <!-- <el-table-column prop="registeredPaidAmount" label="实缴金额(万元)" min-width="133"></el-table-column>
  93. <el-table-column prop="updateDate" label="认证日期"></el-table-column> -->
  94. <el-table-column prop="siteLeaseDate" label="厂地租赁截止日期" min-width="132"></el-table-column>
  95. <el-table-column prop="businessTermDate" label="营业期限"></el-table-column>
  96. <el-table-column prop="backStageStatus" label="状态"></el-table-column>
  97. <el-table-column label="操作" min-width="200">
  98. <template slot-scope="scope">
  99. <el-link target="_blank" @click="seeInfo(scope.row)" type="primary" :underline="false"
  100. :disabled="scope.row.status != '审核中'">通过</el-link>
  101. <el-divider direction="vertical"></el-divider>
  102. <el-link target="_blank" @click="seeInfo(scope.row)" type="primary" :underline="false"
  103. :disabled="scope.row.status != '审核中'">驳回</el-link>
  104. <el-divider direction="vertical"></el-divider>
  105. <el-link target="_blank" @click="seeInfo(scope.row)" type="primary" :underline="false">查看</el-link>
  106. <el-divider direction="vertical"></el-divider>
  107. <el-link target="_blank" @click="recharge(scope.row)" type="primary" :underline="false"
  108. :disabled="scope.row.passOnce == '0'">充值</el-link>
  109. <!-- <span class="btn_css" @click="seeInfo(scope.row)"></span> -->
  110. </template>
  111. </el-table-column>
  112. </el-table>
  113. </div>
  114. <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
  115. style="text-align: center; margin-top: 10px" :page-size="deptCircularPage.pageSize"
  116. layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
  117. </el-pagination>
  118. <!-- <el-dialog title="驳回认证" :visible.sync="rejectInfo" width="400px" :before-close="rejectClose">
  119. <div>
  120. <div><span class="sign">*</span>选择驳回原因</div>
  121. <div class="form_css">
  122. <el-form ref="form" :model="form" label-width="80px">
  123. <el-checkbox-group v-model="form.checkList">
  124. <el-checkbox label="证件照片不清晰"></el-checkbox>
  125. <el-checkbox label="证件照片上传错误"></el-checkbox>
  126. <el-checkbox label="身份信息填写错误"></el-checkbox>
  127. <el-checkbox label="证件信息填写错误"></el-checkbox>
  128. <el-checkbox label="其他"></el-checkbox>
  129. </el-checkbox-group>
  130. <div style="margin: 20px 0;">驳回原因描述(选填)</div>
  131. <el-input type="textarea" :rows="3" resize="none" placeholder="输入驳回原因,5-50个字" maxlength="50"
  132. v-model="form.textarea"></el-input>
  133. <div class="form_btn">
  134. <el-button @click="rejectClose">取消</el-button>
  135. <el-button @click="submit" type="primary">确定</el-button>
  136. </div>
  137. </el-form>
  138. </div>
  139. </div>
  140. </el-dialog> -->
  141. <el-dialog :close-on-click-modal="false" title="账户信息" :visible.sync="messageshow" width="500px"
  142. :before-close="payClose">
  143. <div class="pay">
  144. <div class="pay_css">
  145. <div class="title_css">对公账户:</div>
  146. <div class="name_css">{{ message.corporateAccount }}</div>
  147. </div>
  148. <div class="pay_css">
  149. <div class="title_css">账号:</div>
  150. <div class="id_css">{{ message.bankCard }}</div>
  151. </div>
  152. <div class="pay_css">
  153. <div class="title_css">开户行:</div>
  154. <div class="pay_name">{{ message.bankDeposit }}</div>
  155. </div>
  156. <div class="pay_css">
  157. <div class="title_css">开户支行:</div>
  158. <div class="pay_name">{{ message.bankDepositBranch }}</div>
  159. </div>
  160. </div>
  161. <!-- <img
  162. :src="paySee.payeeAddressUrl"
  163. class="user_item"
  164. @click="enlarge(paySee.payeeAddressUrl)"
  165. /> -->
  166. </el-dialog>
  167. <el-dialog :close-on-click-modal="false" title="充值" :visible.sync="rechargeShow" width="500px"
  168. :before-close="rechargeClose">
  169. <div class="recharge">
  170. <div class="recharge_css">
  171. <div class="title_css">企业名称 :</div>
  172. <div class="recharge_css">{{ rechargeData.companyName }}</div>
  173. </div>
  174. <div class="pay_css">
  175. <div class="title_css">金额(元) :</div>
  176. <div class="recharge_css" style="margin: -24px 32px 44px 69px;">
  177. <el-input type="number" @mousewheel.native.prevent v-model="rechargeData.amountMoney" placeholder="输入充值金额"
  178. maxlength="100" size="small">
  179. </el-input>
  180. </div>
  181. </div>
  182. <div class="pay_css">
  183. <div class="title_css">流水号:</div>
  184. <div class="recharge_css" style="margin: -24px 32px 44px 69px;">
  185. <el-input type="number" @mousewheel.native.prevent v-model="rechargeData.serialNumber" placeholder="输入流水号"
  186. maxlength="100" size="small">
  187. </el-input>
  188. </div>
  189. </div>
  190. <div class="pay_css">
  191. <div class="title_css">银行卡号:</div>
  192. <div class="recharge_css" style="margin: -24px 32px 44px 69px;">
  193. <el-input disabled type="number" @mousewheel.native.prevent v-model="rechargeData.bankCard" placeholder="输入银行卡号"
  194. maxlength="100" size="small">
  195. </el-input>
  196. </div>
  197. </div>
  198. <div class="recharge_css">
  199. <div class="title_css">上传截图 :</div>
  200. <div class="upLoad">
  201. <el-upload class="avatar-uploader" action="https://api.changyuntong56.com/appendix/api/upload" :show-file-list="false"
  202. :on-success="handleAvatarSuccess">
  203. <img v-if="imageUrl" :src="imageUrl" class="avatar" />
  204. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  205. </el-upload>
  206. </div>
  207. </div>
  208. <div style="text-align: center; margin-top: 20px">
  209. <el-button @click="rechargeSubmit()">提交</el-button>
  210. </div>
  211. </div>
  212. </el-dialog>
  213. <el-drawer title="企业详情" :visible.sync="rightSee">
  214. <div class="right_css">
  215. <div class="right_title">企业名称</div>
  216. <div class="right_item">{{ infoData.companyName }}</div>
  217. <div class="right_title">法定代表人姓名</div>
  218. <div class="right_item">{{ infoData.legalPersonName }}</div>
  219. <div class="right_title">联系方式</div>
  220. <div class="right_item">{{ infoData.accountNumber }}</div>
  221. <div class="right_title">通讯地址</div>
  222. <div class="right_item">{{ infoData.mailingAddress }}</div>
  223. <div class="right_title">上传营业执照</div>
  224. <div class="right_item">
  225. <img :src="infoData.businessLicenseAddressUrl" class="right_img"
  226. @click="enlarge(infoData.businessLicenseAddressUrl)">
  227. </div>
  228. <div class="right_title">营业期限截止日期</div>
  229. <div class="right_item">{{ infoData.businessTermDate }}</div>
  230. <div class="right_title">统一社会信用代码</div>
  231. <div class="right_item">{{ infoData.unifiedSocialCreditCode }}</div>
  232. <div class="right_title">身份证正反面</div>
  233. <div class="right_item">
  234. <img :src="infoData.cardAddressUrl" class="right_img" @click="enlarge(infoData.cardAddressUrl)">
  235. <img :src="infoData.cardBackAddressUrl" class="right_img" @click="enlarge(infoData.cardBackAddressUrl)">
  236. </div>
  237. <div class="right_title">身份证号</div>
  238. <div class="right_item">{{ infoData.cardNumber }}</div>
  239. <div class="right_title">身份证有效期</div>
  240. <div class="right_item">{{ infoData.cardValidityDate }}</div>
  241. <div class="right_title" v-if="infoData.advanceFreightService == 1">{{ infoData.landOwnership == 0 ?
  242. "房产证" : "租赁合同"
  243. }}</div>
  244. <div class="right_item" v-for="(item, index) in infoData.imgs" :key="index">
  245. <img :src="item" class="right_img" @click="enlarge(item)">
  246. </div>
  247. <div class="right_title">视频验证</div>
  248. <div class="right_item">
  249. <!-- <img src="../../../public/img/yonghu.jpg" class="right_img"> -->
  250. <!-- <video :src="infoData.videoAddressUrl" class="right_img">
  251. <source src="movie.mp4" type="video/mp4">
  252. <source src="movie.ogg" type="video/ogg">
  253. </video> -->
  254. <video ref="video" id="video" :src="infoData.videoAddressUrl" autoplay="false" controls="true"
  255. class="right_img">
  256. </video>
  257. </div>
  258. <div class="right_item">{{ infoData.advanceFreightService == 1 ? "申请开通平台垫付运费业务" : "未申请开通平台垫付运费业务" }}</div>
  259. <div class="right_btn">
  260. <el-button @click="submit(1)" v-if="infoData.status == '审核中'">通过</el-button>
  261. <el-button @click="submit(2)" v-if="infoData.status == '审核中'">驳回</el-button>
  262. <el-button @click="rightSee = false">关闭</el-button>
  263. </div>
  264. </div>
  265. </el-drawer>
  266. <el-image-viewer v-if="imgsVisible" :on-close="closeImgViewer" :url-list="srcList" style="z-index:9999" />
  267. </div>
  268. </template>
  269. <script>
  270. import {
  271. getList,
  272. toallowExamine,
  273. getBillList,
  274. theRecharge
  275. } from '@/api/enterpriseManagement'
  276. import {
  277. uploadPath
  278. } from '@/api/officialWebsiteManagement'
  279. export default {
  280. components: {
  281. 'el-image-viewer': () =>
  282. import('element-ui/packages/image/src/image-viewer'),
  283. },
  284. data() {
  285. return {
  286. uploadPath,
  287. billList: [],
  288. tableData: [],
  289. //分页
  290. searchkeyWord: '',
  291. currentPage: 1,
  292. pageSize: 10,
  293. deptBudgetTotal: 0,
  294. deptCircularPage: {},
  295. message: {},
  296. search: '5',
  297. addressUrl: [],
  298. disabled: false,
  299. rejectInfo: false,
  300. checkList: [],
  301. form: {
  302. checkList: [],
  303. textarea: '',
  304. },
  305. rightSee: false,
  306. infoData: {},
  307. //图片预览
  308. srcList: [],
  309. messageshow: false,
  310. rechargeShow: false,
  311. imageUrl: '',
  312. rechargeData: {bankCard:''},
  313. imgsVisible: false,
  314. };
  315. },
  316. mounted() {
  317. this.loading = true
  318. let _obj = {}
  319. let start_obj = {}
  320. start_obj.currentPage = this.currentPage
  321. start_obj.pageSize = this.pageSize
  322. start_obj.searchKeyWord = this.searchkeyWord
  323. start_obj.searchType = 1
  324. console.log(start_obj)
  325. getList(start_obj).then(response => {
  326. if (response.data.records.length > 0) {
  327. this.search = 1
  328. _obj.currentPage = this.currentPage
  329. _obj.pageSize = this.pageSize
  330. _obj.searchKeyWord = this.searchkeyWord
  331. _obj.searchType = this.search
  332. getList(_obj).then(response => {
  333. this.tableData = response.data.records
  334. this.deptBudgetTotal = response.data.total
  335. this.listLoading = false
  336. })
  337. .catch(() => {
  338. this.loading = false
  339. })
  340. } else {
  341. this.search = ''
  342. _obj.currentPage = this.currentPage
  343. _obj.pageSize = this.pageSize
  344. _obj.searchKeyWord = this.searchkeyWord
  345. _obj.searchType = this.search
  346. getList(_obj).then(response => {
  347. this.tableData = response.data.records
  348. this.deptBudgetTotal = response.data.total
  349. this.listLoading = false
  350. })
  351. .catch(() => {
  352. this.loading = false
  353. })
  354. }
  355. })
  356. .catch(() => {
  357. this.loading = false
  358. })
  359. },
  360. methods: {
  361. closeImgViewer() {
  362. this.srcList = []
  363. this.imgsVisible = false;
  364. },
  365. enlarge(url) {
  366. this.imgsVisible = true;
  367. this.srcList.push(url)
  368. },
  369. getBillList(id) {
  370. console.log('查看账单')
  371. let _obj = {
  372. companyId: id,
  373. pageSize: 999,
  374. currentPage: 1
  375. }
  376. getBillList(_obj).then(response => {
  377. this.billList = response.data.records
  378. })
  379. .catch(() => {
  380. this.loading = false
  381. })
  382. },
  383. seemessage(item) {
  384. this.message = item
  385. this.messageshow = true
  386. },
  387. payClose() {
  388. this.messageshow = false;
  389. },
  390. getList() {
  391. this.loading = true
  392. let _obj = {}
  393. _obj.currentPage = this.currentPage
  394. _obj.pageSize = this.pageSize
  395. _obj.searchKeyWord = this.searchkeyWord
  396. _obj.searchType = this.search
  397. getList(_obj).then(response => {
  398. this.tableData = response.data.records
  399. this.deptBudgetTotal = response.data.total
  400. this.listLoading = false
  401. })
  402. .catch(() => {
  403. this.loading = false
  404. })
  405. },
  406. submit(num) {
  407. var _allowObj = {}
  408. _allowObj.id = this.infoData.id
  409. let allowTitle = ''
  410. if (num == 1) {
  411. _allowObj.flag = 1
  412. allowTitle = '通过'
  413. } else if (num == 2) {
  414. _allowObj.flag = 2
  415. allowTitle = '驳回'
  416. }
  417. this.$confirm('确定' + allowTitle + '企业审核?', '提示', {
  418. confirmButtonText: '确定',
  419. cancelButtonText: '取消',
  420. type: 'warning',
  421. })
  422. .then(() => {
  423. this.listLoading = true
  424. toallowExamine(_allowObj).then(response => {
  425. this.rightSee = false
  426. this.infoData = {}
  427. this.$notify({
  428. title: '成功',
  429. message: allowTitle + '成功!',
  430. type: 'success'
  431. });
  432. this.getList()
  433. this.listLoading = false
  434. })
  435. .catch(() => {
  436. this.loading = false
  437. })
  438. })
  439. },
  440. seeInfo(row) {
  441. this.infoData = row
  442. this.infoData.imgs = []
  443. if (this.infoData.propertyAddressUrl) {
  444. this.infoData.imgs = this.infoData.propertyAddressUrl.split(',')
  445. }
  446. this.rightSee = true
  447. },
  448. rechargeClose() {
  449. this.rechargeShow = false;
  450. },
  451. recharge(item) {
  452. // this.rechargeData = item
  453. this.rechargeData.bankCard=item.bankCard
  454. this.rechargeData.bankDeposit=item.bankDeposit
  455. this.rechargeData.bankDepositBranch=item.bankDepositBranch
  456. this.rechargeData.companyName = item.companyName
  457. this.rechargeData.rechargeId = item.id;
  458. this.rechargeData.flag = 2;
  459. this.rechargeData.companyId = item.id;
  460. this.rechargeShow = true
  461. },
  462. //上传付款截图
  463. handleAvatarSuccess(e) {
  464. // console.log(e)
  465. this.imageUrl = e.data.url
  466. },
  467. rechargeSubmit() {
  468. if (!this.rechargeData.amountMoney) {
  469. this.$message({
  470. message: '充值金额不能为空',
  471. type: 'warning',
  472. })
  473. return
  474. }
  475. if (!this.imageUrl) {
  476. this.$message({
  477. message: '请上传截图 ',
  478. type: 'warning',
  479. })
  480. return
  481. }
  482. this.rechargeData.rechargeUrl = this.imageUrl
  483. this.listLoading = true;
  484. this.$confirm('确定提交充值信息?', '提示', {
  485. confirmButtonText: '确定',
  486. cancelButtonText: '取消',
  487. type: 'warning',
  488. })
  489. .then(() => {
  490. theRecharge(this.rechargeData)
  491. .then((response) => {
  492. this.$notify({
  493. title: '成功',
  494. message: '充值成功!',
  495. type: 'success',
  496. });
  497. this.rechargeData = {};
  498. this.rechargeShow = false;
  499. this.getList();
  500. this.listLoading = false;
  501. })
  502. })
  503. .catch(() => {
  504. this.loading = false;
  505. });
  506. },
  507. searchBtn(num) {
  508. this.search = num;
  509. this.getList();
  510. },
  511. find() {
  512. this.currentPage = 1
  513. this.getList();
  514. },
  515. onChange() {
  516. this.$refs.upload
  517. .handleSaveBill()
  518. .then(async (response) => {
  519. this.formData.addressUrl = response;
  520. })
  521. .catch((res) => {
  522. EventBus.$emit('error', (JSON.parse(res) || {}).message);
  523. this.$refs.upload.clearFiles();
  524. });
  525. },
  526. handleSizeChange(val) {
  527. console.log(`每页 ${val} 条`);
  528. this.pageSize = val;
  529. this.getList();
  530. },
  531. handleCurrentChange(val) {
  532. this.currentPage = val;
  533. console.log(`当前页: ${val}`);
  534. this.getList();
  535. },
  536. },
  537. };
  538. </script>
  539. <style lang="scss" scoped>
  540. .center {
  541. padding: 10px 20px;
  542. background: #f5f6f7;
  543. min-height: calc(100vh - 50px);
  544. .top_css {
  545. padding: 10px;
  546. .search_btn {
  547. height: 80px;
  548. background: linear-gradient(#fafbfb, #ffffff);
  549. display: flex;
  550. margin-top: 20px;
  551. .search_block {
  552. margin-left: 20px;
  553. }
  554. .search_item {
  555. text-align: center;
  556. font-size: 14px;
  557. font-weight: 600;
  558. line-height: 40px;
  559. width: 112px;
  560. height: 40px;
  561. background: #f7f8f9;
  562. cursor: pointer;
  563. margin-top: 30px;
  564. }
  565. .searchNo {
  566. color: #323233;
  567. }
  568. .search {
  569. color: #2f53eb;
  570. background: #ffffff;
  571. }
  572. }
  573. }
  574. .center_css {
  575. background: #ffffff;
  576. border-radius: 1px;
  577. margin-top: 10px;
  578. padding-bottom: 10px;
  579. }
  580. .screen {
  581. display: flex;
  582. .search {
  583. width: 40px;
  584. height: 40px;
  585. background: #2f53eb;
  586. border-radius: 0px 2px 2px 0px;
  587. border: 1px solid #DCDFE6;
  588. margin-left: -1px;
  589. // border-left: 1px solid #2f53eb;
  590. }
  591. .count_css {
  592. width: 80px;
  593. text-align: center;
  594. line-height: 40px;
  595. color: #666666;
  596. }
  597. }
  598. .el-button {
  599. padding: 10px 20px !important;
  600. }
  601. .center_css {
  602. ::v-deep .el-table th,
  603. ::v-deep .el-table td {
  604. text-align: center;
  605. }
  606. .fujian {
  607. font-size: 24px;
  608. color: #409eff;
  609. }
  610. .warning {
  611. font-size: 14px;
  612. color: #ed1d1d;
  613. }
  614. }
  615. }
  616. .car_css {
  617. width: 50%;
  618. display: inline-block;
  619. text-align: center;
  620. margin-top: 20px;
  621. }
  622. .car_item {
  623. width: 100px;
  624. height: 100px;
  625. }
  626. .user {
  627. margin-bottom: 20px;
  628. .user_id {
  629. display: flex;
  630. height: 30px;
  631. }
  632. .name_css,
  633. .id_css {
  634. width: 50%;
  635. }
  636. .name_css {
  637. text-align: right;
  638. }
  639. .user_item {
  640. width: 450px;
  641. height: 300px;
  642. }
  643. }
  644. ::v-deep .el-table--border .el-table__header th {
  645. background: #f7f8f9;
  646. }
  647. .btn_css {
  648. color: #409eff;
  649. cursor: pointer;
  650. }
  651. .sign {
  652. font-size: 14px;
  653. color: red;
  654. }
  655. .form_css {
  656. width: 100%;
  657. margin: 20px auto 20px;
  658. ::v-deep .el-checkbox {
  659. width: 40%;
  660. height: 30px;
  661. }
  662. ::v-deep .el-dialog__body {
  663. padding: 10px 20px;
  664. }
  665. ::v-deep .el-dialog__title {
  666. font-size: 16px;
  667. }
  668. ::v-deep .el-textarea__inner {
  669. background: #F0F1F2;
  670. }
  671. .form_btn {
  672. text-align: right;
  673. margin-top: 10px;
  674. }
  675. }
  676. //发送信息
  677. .Info_css {
  678. .Info_title {
  679. color: #323233;
  680. font-size: 16px;
  681. }
  682. .Info_item {
  683. margin: 20px 0;
  684. }
  685. .Info_btn {
  686. text-align: right;
  687. margin-top: 10px;
  688. }
  689. }
  690. .right_css {
  691. padding: 0 20px;
  692. .right_title {
  693. color: #9D9D9D;
  694. font-size: 14px;
  695. }
  696. .right_item {
  697. color: #0D0D0D;
  698. font-size: 14px;
  699. margin-bottom: 20px;
  700. }
  701. .right_btn {
  702. text-align: right;
  703. margin: 10px 0;
  704. }
  705. .right_img {
  706. width: 200px;
  707. height: 120px;
  708. margin-top: 10px;
  709. }
  710. }
  711. ::v-deep .el-drawer {
  712. overflow: auto;
  713. }
  714. .bill-content {
  715. .bill-item{
  716. border-bottom:1px solid #ccc;
  717. }
  718. .bill-item:last-child{
  719. border-bottom:1px solid transparent;
  720. }
  721. .row1{
  722. display: flex;
  723. justify-content: space-between;
  724. align-items: center;
  725. padding:5px;
  726. }
  727. }
  728. .pay {
  729. .pay_css {
  730. display: flex;
  731. margin-bottom: 20px;
  732. justify-content: space-between;
  733. }
  734. }
  735. .recharge {
  736. .recharge_css {
  737. display: flex;
  738. margin-bottom: 20px;
  739. justify-content: space-between;
  740. }
  741. .recharge_css {
  742. width: 80%;
  743. }
  744. }
  745. .upLoad {
  746. width: 40%;
  747. margin: 0 auto;
  748. // border: 1px solid #8890b1;
  749. // border-radius: 3px;
  750. }
  751. .avatar-uploader {
  752. position: relative;
  753. width: 178px;
  754. }
  755. .avatar-uploader .el-upload {
  756. border: 1px dashed #d9d9d9;
  757. border-radius: 6px;
  758. cursor: pointer;
  759. position: relative;
  760. overflow: hidden;
  761. width: 178px;
  762. }
  763. .avatar-uploader .el-upload:hover {
  764. border-color: #409eff;
  765. }
  766. .avatar-uploader-icon {
  767. font-size: 28px;
  768. color: #8c939d;
  769. width: 178px;
  770. height: 178px;
  771. line-height: 178px;
  772. text-align: center;
  773. border: 1px solid #8890b1;
  774. border-radius: 5px;
  775. }
  776. .avatar {
  777. width: 178px;
  778. height: 178px;
  779. border: 1px solid #8890b1;
  780. border-radius: 5px;
  781. display: block;
  782. }
  783. .find::v-deep input.el-input__inner {
  784. border-radius: 0;
  785. }
  786. </style>