waybill.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <template>
  2. <div class="waybill">
  3. <!-- 头部细节部分 -->
  4. <div class="title">
  5. <el-row>
  6. <el-col :span="24">
  7. <div class="top">
  8. <span style="margin-top: 10px;" >导入文件:</span>
  9. <el-upload
  10. class="upload-demo"
  11. ref="upload"
  12. action="http://invoice.back.jkcredit.com/dishonestuser/upload"
  13. :on-preview="handlePreview"
  14. :on-remove="handleRemove"
  15. :on-change="handleSuccess"
  16. :auto-upload="false">
  17. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  18. <el-button style="margin-left: 10px;" size="small" type="success" @click="batchUpload" v-loading.fullscreen.lock="fullscreenLoading">提交</el-button>
  19. </el-upload>
  20. </div>
  21. </el-col>
  22. </el-row>
  23. <el-row>
  24. <el-col :span="24">
  25. <div class="top">
  26. <el-input placeholder="主体账号名称" class="input-demo" v-model="companyName"></el-input>
  27. <el-input placeholder="批次号" class="input-demo" v-model="batchNum"></el-input>
  28. <el-button style="margin-left: 1%;" @click="DownloadTemplate">下载模板</el-button>
  29. <el-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
  30. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  31. </div>
  32. </el-col>
  33. </el-row>
  34. </div>
  35. <!-- 头部细节部分结束 -->
  36. <!-- 表格部分 -->
  37. <template>
  38. <el-table
  39. class="table"
  40. v-loading="loading"
  41. ref="multipleTable"
  42. :data="usertable"
  43. :height="heightt"
  44. border
  45. tooltip-effect="dark">
  46. <el-table-column
  47. label="用户名"
  48. prop="customerName"
  49. show-overflow-tooltip>
  50. </el-table-column>
  51. <!-- <el-table-column
  52. label="用户手机号"
  53. prop="customerPhone"
  54. show-overflow-tooltip>
  55. </el-table-column> -->
  56. <el-table-column
  57. prop="company"
  58. label="主账号名称"
  59. show-overflow-tooltip>
  60. </el-table-column>
  61. <el-table-column
  62. prop="batchNumber"
  63. label="批次号"
  64. show-overflow-tooltip>
  65. </el-table-column>
  66. <el-table-column
  67. label="创建时间"
  68. show-overflow-tooltip>
  69. <template slot-scope="scope" show-overflow-tooltip>
  70. <span>{{scope.row.createTime | fmtDate}}</span>
  71. </template>
  72. </el-table-column>
  73. <el-table-column
  74. label="操作"
  75. width="80">
  76. <template slot-scope="scope" show-overflow-tooltip>
  77. <span style="cursor:pointer;color: blue;" @click="checkLook(scope.row.batchNumber)">查看</span>
  78. </template>
  79. </el-table-column>
  80. </el-table>
  81. </template>
  82. <!-- 分页 -->
  83. <div class="block">
  84. <el-pagination
  85. @size-change="handleSizeChange"
  86. @current-change="handleCurrentChange"
  87. :current-page="current"
  88. :page-sizes="[6, 8, 10]"
  89. :page-size="pagesize"
  90. layout="total, sizes, prev, pager, next, jumper"
  91. :total="total">
  92. </el-pagination>
  93. </div>
  94. <!-- 查看 -->
  95. <el-dialog
  96. @close="handleEditDialogClose"
  97. :visible.sync="addList"
  98. style="font-size: 0px;">
  99. <template>
  100. <div class="tou">运单列表</div>
  101. <div class="line"></div>
  102. <div class="styleType">
  103. <el-input placeholder="运单编号" class="theinput" v-model="billNum"></el-input>
  104. <el-input placeholder="车牌号" class="theinput" v-model="plateNumber"></el-input>
  105. <el-input placeholder="税号" class="theinput" v-model="taxPlayerCode"></el-input>
  106. <el-select v-model="success" placeholder="是否成功">
  107. <el-option
  108. v-for="item in optionone"
  109. :key="item.value"
  110. :label="item.label"
  111. :value="item.value">
  112. </el-option>
  113. </el-select>
  114. <el-button type="success" style="margin-left: 1%;" @click="twoLoadData">查询</el-button>
  115. <el-button type="success" style="margin-left: 1%;" @click="exportExcel">导出</el-button>
  116. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  117. </div>
  118. <el-table
  119. class="ttt"
  120. v-loading="loading"
  121. ref="multipleTable"
  122. :data="usertabletwo"
  123. border
  124. tooltip-effect="dark">
  125. <el-table-column
  126. label="运单编号"
  127. prop="billNum"
  128. show-overflow-tooltip>
  129. </el-table-column>
  130. <el-table-column
  131. prop="taxplayerCode"
  132. label="税号"
  133. show-overflow-tooltip>
  134. </el-table-column>
  135. <el-table-column
  136. label="车牌号码"
  137. prop="plateNum"
  138. show-overflow-tooltip>
  139. </el-table-column>
  140. <el-table-column
  141. prop="startTime"
  142. label="运单开始时间"
  143. show-overflow-tooltip>
  144. </el-table-column>
  145. <el-table-column
  146. prop="sourceAddr"
  147. label="运单开始地址"
  148. show-overflow-tooltip>
  149. </el-table-column>
  150. <el-table-column
  151. prop="destAddr"
  152. label="运单目的地址"
  153. show-overflow-tooltip>
  154. </el-table-column>
  155. <el-table-column
  156. prop="predictEndTime"
  157. label="运单预计完成时间"
  158. show-overflow-tooltip>
  159. </el-table-column>
  160. <el-table-column
  161. prop="fee"
  162. label="运单费用(元)"
  163. show-overflow-tooltip>
  164. <template slot-scope="scope" show-overflow-tooltip>
  165. <span>{{scope.row.fee / 100}}</span>
  166. </template>
  167. </el-table-column>
  168. <!-- <el-table-column
  169. prop="billwayStatus"
  170. label="运单状态"
  171. show-overflow-tooltip>
  172. <template slot-scope="scope">
  173. <span v-if="scope.row.billwayStatus == 1" style="color: green">未结束</span>
  174. <span v-else-if="scope.row.billwayStatus == -2" style="color: red">上传失败</span>
  175. <span v-else-if="scope.row.billwayStatus == -3" style="color: red">结束指令上传失败</span>
  176. <span v-else-if="scope.row.billwayStatus == 2" style="color: green">开票中</span>
  177. <span v-else-if="scope.row.billwayStatus == 3" style="color: green">开票完成</span>
  178. <span v-else-if="scope.row.billwayStatus == 4" style="color: red">超时运单</span>
  179. </template>
  180. </el-table-column> -->
  181. <el-table-column
  182. label="是否成功"
  183. show-overflow-tooltip>
  184. <template slot-scope="scope">
  185. <span v-if="scope.row.billwayStatus == -2 || scope.row.billwayStatus == -3" style="color: red">失败</span>
  186. <span v-else-if="scope.row.billwayStatus != -2 && scope.row.billwayStatus != -3" style="color: green">成功</span>
  187. </template>
  188. </el-table-column>
  189. <el-table-column
  190. prop="failReason"
  191. label="失败原因"
  192. show-overflow-tooltip>
  193. </el-table-column>
  194. </el-table>
  195. </template>
  196. <div class="blocks">
  197. <el-pagination
  198. @size-change="handleSize"
  199. @current-change="handleCurrent"
  200. :current-page="currenttwo"
  201. :page-sizes="[6, 8, 10]"
  202. :page-size="pagesizetwo"
  203. layout="total, sizes, prev, pager, next, jumper"
  204. :total="totaltwo">
  205. </el-pagination>
  206. </div>
  207. </el-dialog>
  208. </div>
  209. </template>
  210. <script>
  211. import FileSaver from "file-saver";
  212. import XLSX from "xlsx";
  213. export default{
  214. data() {
  215. return {
  216. loading: false,
  217. fullscreenLoading: false,
  218. customerName: '',
  219. companyName: '',
  220. billNum: '',
  221. plateNumber: '',
  222. taxPlayerCode: '',
  223. hightt:'0px',
  224. status: '',
  225. addList: false,
  226. success:'',
  227. current: 1,
  228. pagesize: 8,
  229. total: 0,
  230. currenttwo: 1,
  231. pagesizetwo: 8,
  232. totaltwo: 0,
  233. batchNum: '',
  234. batchNumberQ:'',
  235. usertable: [],
  236. usertabletwo: [],
  237. formUserList: {
  238. "customerName": "",
  239. "file": "",
  240. "roleId": ""
  241. },
  242. optionone: [{
  243. value: '1',
  244. label: '成功'
  245. }, {
  246. value: '2',
  247. label: '失败'
  248. }],
  249. isSuccess: '',
  250. }
  251. },
  252. created() {
  253. this.heightt = tableHeight;
  254. this.formUserList.customerName = sessionStorage.getItem('userName');
  255. this.loadData();
  256. },
  257. methods: {
  258. firstLoadData(){
  259. this.current = 1;
  260. this.pagesize = 8;
  261. this.loadData();
  262. },
  263. // 列表展示
  264. async loadData() {
  265. const formData = new FormData();
  266. formData.append('current', this.current);
  267. formData.append('size', this.pagesize);
  268. formData.append('customerName',this.formUserList.customerName);
  269. formData.append('company', this.companyName);
  270. formData.append('batchNumber', this.batchNum);
  271. formData.append('operType', 1);
  272. const response = await this.$http.post(`noCar/findBatchList`, formData);
  273. if (response.data.code === 0) {
  274. this.loading = false;
  275. this.usertable = response.data.data.records;
  276. this.total = response.data.data.total;
  277. }
  278. },
  279. // 下载模板
  280. DownloadTemplate() {
  281. var url = hostUrl+"noCar/templateDownload?fileName=1"
  282. window.location.href= url;
  283. },
  284. // 批量上传模板信息
  285. async batchUpload() {
  286. debugger
  287. const isLt50M = this.formUserList.file.size / 1024 / 1024 < 50;
  288. let extName = this.formUserList.file.name.substring(this.formUserList.file.name.lastIndexOf(".")).toLowerCase();
  289. let AllUpExt = ".xlsx";
  290. if( extName != AllUpExt){
  291. this.$message.error('格式错误!请重新选择xlsx格式的文件');
  292. return false;
  293. }
  294. if (!isLt50M) {
  295. this.$message.error('上传文件大小不能超过50MB!');
  296. return false;
  297. }
  298. const loading = this.$loading({
  299. lock: true,
  300. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  301. spinner: 'el-icon-loading',
  302. background: 'rgba(0, 0, 0, 0.7)'
  303. });
  304. const formData = new FormData();
  305. formData.append('customerName', this.formUserList.customerName);
  306. formData.append('file', this.formUserList.file);
  307. const response = await this.$http.post(`noCar/batchImprotBillWay`,formData);
  308. var {data: { code, msg, data }} = response;
  309. if(code === 0 && msg === 'success') {
  310. this.loadData();
  311. loading.close();
  312. this.$message.success('上传成功');
  313. }else if(code === 1 && msg == null && data == null) {
  314. loading.close();
  315. this.$message.error('数据存在错误,请检查文件中数据,金额是否有空的,时间是否全是时间格式');
  316. }else {
  317. loading.close();
  318. this.$message.error("数据存在错误,请检查文件中数据");
  319. }
  320. },
  321. // 查看批次数据
  322. async checkLook(id) {
  323. this.addList = true;
  324. this.batchNumberQ = id;
  325. this.loadDataCar();
  326. },
  327. handleEditDialogClose(){
  328. this.addList = false;
  329. },
  330. twoLoadData(){
  331. this.currenttwo = 1;
  332. this.pagesizetwo = 8;
  333. this.loadDataCar();
  334. },
  335. // 查看实时数据
  336. async loadDataCar() {
  337. const formData = new FormData();
  338. formData.append('current', this.currenttwo);
  339. formData.append('size', this.pagesizetwo);
  340. formData.append('customerName', this.formUserList.customerName);
  341. formData.append('batchNum', this.batchNumberQ);
  342. formData.append('billNum', this.billNum);
  343. formData.append('success', this.success);
  344. formData.append('plateNum', this.plateNumber);
  345. formData.append('taxPlayerCode', this.taxPlayerCode);
  346. formData.append('hisFlag', 0);
  347. const response = await this.$http.post(`noCar/findImportBillWay`, formData);
  348. if (response.data.code === 0) {
  349. this.loading = false;
  350. this.usertabletwo = response.data.data.records;
  351. this.totaltwo = response.data.data.total;
  352. }
  353. },
  354. async exportExcel() {
  355. let curr = this.currenttwo;
  356. let pagesize1 = this.pagesizetwo;
  357. this.currenttwo = 1;
  358. this.pagesizetwo = this.totaltwo;
  359. await this.loadDataCar();
  360. // 设置当前日期
  361. let time = new Date();
  362. //console.log(time);
  363. let year = time.getFullYear();
  364. let month = time.getMonth() + 1;
  365. let day = time.getDate();
  366. let name = "实时运单上传列表_"+year + "" + month + "" + day;
  367. // console.log(name)
  368. /* generate workbook object from table */
  369. // .table要导出的是哪一个表格
  370. var wb = XLSX.utils.table_to_book(document.querySelector(".ttt"),{ raw: true });
  371. /* get binary string as output */
  372. var wbout = XLSX.write(wb, {
  373. bookType: "xlsx",
  374. bookSST: true,
  375. type: "array"
  376. });
  377. try {
  378. // name+'.xlsx'表示导出的excel表格名字
  379. FileSaver.saveAs(
  380. new Blob([wbout], { type: "application/octet-stream" }),
  381. name + ".xlsx"
  382. );
  383. } catch (e) {
  384. if (typeof console !== "undefined") console.log(e, wbout);
  385. }
  386. this.currenttwo = curr;
  387. this.pagesizetwo = pagesize1;
  388. this.loadDataCar();
  389. return wbout;
  390. },
  391. handleRemove(file, fileList) {
  392. console.log(file, fileList);
  393. },
  394. handlePreview(file) {
  395. console.log(file);
  396. },
  397. handleSuccess (a) {
  398. this.formUserList.file = a.raw;
  399. },
  400. // 分页方法
  401. handleSizeChange(val) {
  402. this.pagesize = val;
  403. this.loadData();
  404. console.log(`每页 ${val} 条`);
  405. },
  406. handleCurrentChange(val) {
  407. this.current = val;
  408. this.loadData();
  409. console.log(`当前页: ${val}`);
  410. },
  411. handleSize(val) {
  412. this.pagesizetwo = val;
  413. this.loadDataCar();
  414. console.log(`每页 ${val} 条`);
  415. },
  416. handleCurrent(val) {
  417. this.currenttwo = val;
  418. this.loadDataCar();
  419. console.log(`当前页: ${val}`);
  420. }
  421. }
  422. };
  423. </script>
  424. <style>
  425. .waybill {
  426. border: 1px solid #d9d9d9;
  427. border-radius: 10px;
  428. }
  429. .waybill .upload-demo {
  430. display: inline-block;
  431. }
  432. .waybill .title {
  433. font-size: 5px;
  434. margin-bottom: 20px;
  435. }
  436. .waybill .top {
  437. padding-top: 20px;
  438. padding-left: 20px;
  439. }
  440. .waybill .text {
  441. display: inline-block;
  442. color: #000;
  443. font-size: 16px ;
  444. margin-left: 1%;
  445. }
  446. .waybill .tou {
  447. font-size: 20px;
  448. height: 30px;
  449. line-height: 30px;
  450. padding-top: 15px;
  451. }
  452. .waybill .line {
  453. margin-top: 15px;
  454. margin-bottom: 15px;
  455. width: 100%;
  456. height: 2px;
  457. background-color: #d9d9d9;
  458. }
  459. .waybill .theinput {
  460. display: inline-block;
  461. width: 20%;
  462. }
  463. .waybill .styleType {
  464. margin-top: 20px;
  465. margin-bottom: 20px;
  466. }
  467. .waybill .input-demo {
  468. display: inline-block;
  469. width: 20%;
  470. margin-left: 1%;
  471. }
  472. .waybill .block {
  473. font-size: 5px;
  474. text-align: center;
  475. margin-top: 15px;
  476. margin-bottom: 20px;
  477. }
  478. .waybill .blocks {
  479. font-size: 5px;
  480. text-align: center;
  481. margin-top: 20px;
  482. padding-bottom: 20px;
  483. }
  484. .waybill .el-dialog {
  485. width: 90%;
  486. }
  487. .waybill .el-dialog__header, .el-dialog__body {
  488. padding: 0 20px;
  489. }
  490. </style>