billway.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. <template>
  2. <div class="billWay_container">
  3. <div class="title">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="demo-input-suffix" style="margin-left: 10px;margin-top: 15px;">
  7. <el-upload :action="url" :http-request="importExcel" list-type="text" :show-file-list="false" >
  8. <el-button type="primary">导入参数</el-button>
  9. <el-select style="margin-left: 120px;" v-model="noCarWayBill.billwayStatus" placeholder="运单状态">
  10. <el-option
  11. v-for="item in tradeStatus"
  12. :key="item.value"
  13. :label="item.label"
  14. :value="item.value">
  15. </el-option>
  16. </el-select>
  17. </el-upload>
  18. </div>
  19. <div class="demo-input-suffix" style="margin-top: 5px;">
  20. <el-input placeholder="公司名称" class="input-demo" v-model="noCarWayBill.companyName"></el-input>
  21. <el-input placeholder="运单编号" class="input-demo" v-model="noCarWayBill.billNum"></el-input>
  22. <el-input placeholder="税号" class="input-demo" v-model="noCarWayBill.taxplayerCode"></el-input>
  23. <el-button style="margin-right: 1%;" @click="DownloadTemplate">查询模板下载</el-button>
  24. <el-button type="primary" style="margin-left: 1%;" @click="exportExcel">导出报表</el-button>
  25. </div>
  26. <div class="demo-input-suffix" style="margin-top: 5px;margin-left: 10px;">
  27. <el-date-picker v-model="noCarWayBill.startBegin" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="运单上传开始指令始" end-placeholder="运单上传开始指令止"></el-date-picker>
  28. <el-date-picker v-model="noCarWayBill.endBegin" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="运单上传结束指令始" end-placeholder="运单上传结束指令止"></el-date-picker>
  29. <!-- <el-date-picker v-model="noCarWayBill.startEnd" type="date" placeholder="开始指令上传时间止"></el-date-picker>
  30. <el-date-picker v-model="noCarWayBill.startBegin" type="date" placeholder="开始指令上传时间始"></el-date-picker> -->
  31. <!-- <el-date-picker v-model="noCarWayBill.endBegin" type="date" placeholder="结束指令上传时间始"></el-date-picker>
  32. <el-date-picker v-model="noCarWayBill.endEnd" type="date" placeholder="结束指令上传时间止"></el-date-picker> -->
  33. <el-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
  34. <el-button type="success" style="margin-left: 1%;" @click="updateStatus">更新状态</el-button>
  35. </div>
  36. </el-col>
  37. </el-row>
  38. </div>
  39. <!-- 表格部分 -->
  40. <template>
  41. <el-table
  42. class="table"
  43. v-loading="loading"
  44. ref="multipleTable"
  45. :data="billWayTable"
  46. :height="heightt"
  47. border
  48. tooltip-effect="dark" @selection-change="handleSelectionChange">
  49. <el-table-column
  50. type="selection"
  51. width="55">
  52. </el-table-column>
  53. <el-table-column
  54. label="企业编号"
  55. prop="companyNum"
  56. show-overflow-tooltip>
  57. </el-table-column>
  58. <el-table-column
  59. prop="companyName"
  60. label="公司名称"
  61. show-overflow-tooltip>
  62. </el-table-column>
  63. <el-table-column
  64. prop="billNum"
  65. label="运单编号"
  66. show-overflow-tooltip>
  67. </el-table-column>
  68. <el-table-column
  69. prop="taxplayerCode"
  70. label="税号"
  71. show-overflow-tooltip>
  72. </el-table-column>
  73. <el-table-column
  74. prop="startTime"
  75. label="运单开始时间"
  76. width="120"
  77. show-overflow-tooltip>
  78. </el-table-column>
  79. <el-table-column
  80. prop="intfaceStartTime"
  81. label="开始指令时间"
  82. width="120"
  83. show-overflow-tooltip>
  84. </el-table-column>
  85. <el-table-column
  86. prop="predictEndTime"
  87. label="运单结束时间"
  88. width="120"
  89. show-overflow-tooltip>
  90. </el-table-column>
  91. <el-table-column
  92. prop="interfaceEndTime"
  93. label="结束指令时间"
  94. width="120"
  95. show-overflow-tooltip>
  96. </el-table-column>
  97. <el-table-column
  98. prop="sourceAddr"
  99. label="运单开始地址"
  100. width="120"
  101. show-overflow-tooltip>
  102. </el-table-column>
  103. <el-table-column
  104. prop="destAddr"
  105. label="运单结束地址"
  106. width="120"
  107. show-overflow-tooltip>
  108. </el-table-column>
  109. <el-table-column
  110. prop="fee"
  111. label="运单费用"
  112. show-overflow-tooltip>
  113. <template slot-scope="scope">
  114. <span>{{scope.row.fee/100| rounding}}</span>
  115. </template>
  116. </el-table-column>
  117. <el-table-column
  118. label="运单状态"
  119. show-overflow-tooltip>
  120. <template slot-scope="scope">
  121. <span v-if="scope.row.billwayStatus == 1" style="color: green">未结束</span>
  122. <span v-else-if="scope.row.billwayStatus == -2" style="color: red">上传失败</span>
  123. <span v-else-if="scope.row.billwayStatus == -3" style="color: red">结束指令上传失败</span>
  124. <span v-else-if="scope.row.billwayStatus == 2" style="color: green">开票中</span>
  125. <span v-else-if="scope.row.billwayStatus == 3" style="color: green">开票完成</span>
  126. <span v-else-if="scope.row.billwayStatus == 4" style="color: red">超时运单</span>
  127. </template>
  128. </el-table-column>
  129. <el-table-column
  130. label="是否成功"
  131. show-overflow-tooltip>
  132. <template slot-scope="scope">
  133. <span v-if="scope.row.billwayStatus == -2 || scope.row.billwayStatus == -3" style="color: red">失败</span>
  134. <span v-else-if="scope.row.billwayStatus != -2 && scope.row.billwayStatus != -3" style="color: green">成功</span>
  135. </template>
  136. </el-table-column>
  137. <el-table-column
  138. prop="failReason"
  139. label="失败原因"
  140. show-overflow-tooltip>
  141. </el-table-column>
  142. <el-table-column
  143. prop="updateTime"
  144. label="最后更新时间"
  145. width="120"
  146. show-overflow-tooltip>
  147. </el-table-column>
  148. <el-table-column
  149. prop="hisFlag"
  150. label="运单类型"
  151. show-overflow-tooltip>
  152. <template slot-scope="scope">
  153. <span v-if="scope.row.hisFlag == 0" >实时运单</span>
  154. <span v-else-if="scope.row.hisFlag == 1">历史运单</span>
  155. </template>
  156. </el-table-column>
  157. </el-table>
  158. </template>
  159. <!-- 分页 -->
  160. <div class="block">
  161. <el-pagination
  162. @size-change="handleSizeChange"
  163. @current-change="handleCurrentChange"
  164. :current-page="current"
  165. :page-sizes="[6, 8, 10, 20, 50, 100]"
  166. :page-size="pagesize"
  167. layout="total, sizes, prev, pager, next, jumper"
  168. :total="total">
  169. </el-pagination>
  170. </div>
  171. </div>
  172. </template>
  173. <script type="text/javascript">
  174. import FileSaver from "file-saver";
  175. import XLSX from "xlsx";
  176. export default {
  177. data(){
  178. return{
  179. noCarWayBill:{
  180. billNum:''
  181. },
  182. formUserList: {
  183. "file": ""
  184. },
  185. tradeStatus:[
  186. {"label":"上传失败","value":"-2"},
  187. {"label":"结束指令上传失败","value":"-3"},
  188. {"label":"未结束","value":"1"},
  189. {"label":"开票中","value":"2"},
  190. {"label":"开票完成","value":"3"},
  191. {"label":"超时运单","value":"4"}],
  192. multipleSelection: [],
  193. optionone: [{
  194. value: 0,
  195. label: '实时运单'
  196. }, {
  197. value: 1,
  198. label: '历史运单'
  199. }],
  200. billWayTable:[],
  201. current: 1,
  202. pagesize: 8,
  203. hightt:'0px',
  204. total:''
  205. }
  206. },
  207. created() {
  208. //设置表格高度
  209. this.heightt = '300px';
  210. this.loadData();
  211. },
  212. filters: {
  213. rounding (value) {
  214. return value.toFixed(2)
  215. }
  216. },
  217. methods:{
  218. firstLoadData(){
  219. this.current = 1;
  220. this.pagesize = 8;
  221. this.loadData();
  222. },
  223. // 列表展示
  224. async loadData() {
  225. const formData = new FormData();
  226. formData.append('current', this.current);
  227. formData.append('size', this.pagesize);
  228. for(var i in this.noCarWayBill){
  229. formData.append(i,this.noCarWayBill[i]);
  230. }
  231. const response = await this.$http.post(`noCar/findBillWay`, formData);
  232. if (response.data.code === 0) {
  233. this.billWayTable = response.data.data.records;
  234. this.total = response.data.data.total;
  235. }
  236. },
  237. importExcel (content) {
  238. debugger
  239. const file = content.file
  240. // let file = file.files[0] // 使用传统的input方法需要加上这一步
  241. const filename = file.name
  242. if(!filename||typeof filename!='string'){
  243. this.$message('格式错误!请重新选择')
  244. return
  245. }
  246. let a = filename.split('').reverse().join('');
  247. let types = a.substring(0,a.search(/\./)).split('').reverse().join('');
  248. const fileType = ['xlsx', 'xlc', 'xlm', 'xls', 'xlt', 'xlw', 'csv'].some(item => item === types)
  249. if (!fileType) {
  250. this.$message('格式错误!请重新选择')
  251. return
  252. }
  253. this.file2Xce(file).then(tabJson => {
  254. var billNums = '';
  255. if (tabJson && tabJson.length > 0) {
  256. this.xlsxJson = tabJson
  257. this.fileList = this.xlsxJson[0].sheet
  258. this.fileList.forEach((item, index, arr) => {
  259. if(item['运单编号']!=null && item['运单编号']!='' && typeof item['运单编号']!='undefined'){
  260. billNums+= item['运单编号']+',';
  261. }
  262. });
  263. }
  264. if(billNums!=''){
  265. this.noCarWayBill.billNum =billNums.substring(0,billNums.length-1);
  266. }
  267. })
  268. },
  269. file2Xce (file) {
  270. return new Promise(function (resolve, reject) {
  271. const reader = new FileReader()
  272. reader.onload = function (e) {
  273. const data = e.target.result
  274. this.wb = XLSX.read(data, {
  275. type: 'binary'
  276. })
  277. const result = []
  278. console.log((this.wb.Sheets.Sheet1)['!ref'])
  279. var are = (this.wb.Sheets.Sheet1)['!ref'];
  280. var areRe = are.replace('A1','A2');
  281. (this.wb.Sheets.Sheet1)['!ref'] = areRe;
  282. this.wb.SheetNames.forEach((sheetName) => {
  283. result.push({
  284. sheetName: sheetName,
  285. sheet: XLSX.utils.sheet_to_json(this.wb.Sheets[sheetName])
  286. })
  287. })
  288. resolve(result)
  289. }
  290. // reader.readAsBinaryString(file.raw)
  291. reader.readAsBinaryString(file) // 传统input方法
  292. })
  293. },
  294. // 下载模板
  295. DownloadTemplate() {
  296. var url = hostUrl+"noCar/templateDownload?fileName=5"
  297. window.location.href= url;
  298. },
  299. handleRemove(file, fileList) {
  300. console.log(file, fileList);
  301. },
  302. handlePreview(file) {
  303. console.log(file);
  304. },
  305. handleSuccess (a) {
  306. this.formUserList.file = a.raw;
  307. },
  308. handleSelectionChange(value){
  309. this.multipleSelection = value;
  310. console.log(this.multipleSelection);
  311. },
  312. async updateStatus(){
  313. const formData = new FormData();
  314. formData.append('noCarWayBillStr', JSON.stringify(this.multipleSelection));
  315. const response = await this.$http.post(`noCar/updateStatus`,formData);
  316. if(response.data.code === 0) {
  317. this.loadData();
  318. this.$message({
  319. type: 'success',
  320. message: '更新成功'
  321. });
  322. }else {
  323. this.$message({
  324. type: 'error',
  325. message: '更新失败'
  326. });
  327. }
  328. },
  329. // 分页方法
  330. handleSizeChange(val) {
  331. this.pagesize = val;
  332. this.loadData();
  333. console.log(`每页 ${val} 条`);
  334. },
  335. handleCurrentChange(val) {
  336. this.current = val;
  337. this.loadData();
  338. // console.log(`当前页: ${val}`);
  339. },
  340. // 批量上传模板信息
  341. async batchUpload() {
  342. this.fullscreenLoading = true;
  343. const formData = new FormData();
  344. formData.append('file', this.formUserList.file);
  345. const response = await this.$http.post(`noCar/batchImportNocarBillWay`,formData);
  346. var {data: { code, msg, data }} = response;
  347. debugger
  348. if(code === 0 && msg === '1') {
  349. this.fullscreenLoading = false;
  350. this.billWayTable = response.data.data;
  351. this.total = response.data.data.length;
  352. }else {
  353. this.fullscreenLoading = false;
  354. this.$message.error('数据存在错误,请检查文件中数据');
  355. }
  356. },
  357. async exportExcel() {
  358. let curr = this.current;
  359. let pagesize1 = this.pagesize;
  360. this.current = 1;
  361. this.pagesize = this.total;
  362. await this.loadData();
  363. // 设置当前日期
  364. let time = new Date();
  365. //console.log(time);
  366. let year = time.getFullYear();
  367. let month = time.getMonth() + 1;
  368. let day = time.getDate();
  369. let name = "无车运单查询列表_"+year + "" + month + "" + day;
  370. // console.log(name)
  371. /* generate workbook object from table */
  372. // .table要导出的是哪一个表格
  373. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  374. /* get binary string as output */
  375. var wbout = XLSX.write(wb, {
  376. bookType: "xlsx",
  377. bookSST: true,
  378. type: "array"
  379. });
  380. try {
  381. // name+'.xlsx'表示导出的excel表格名字
  382. FileSaver.saveAs(
  383. new Blob([wbout], { type: "application/octet-stream" }),
  384. name + ".xlsx"
  385. );
  386. } catch (e) {
  387. if (typeof console !== "undefined") console.log(e, wbout);
  388. }
  389. this.current = curr;
  390. this.pagesize = pagesize1;
  391. this.loadData();
  392. return wbout;
  393. },
  394. }
  395. };
  396. </script>
  397. <style>
  398. .billWay_container {
  399. border: 1px solid #d9d9d9;
  400. border-radius: 10px;
  401. }
  402. .billWay_container .title {
  403. font-size: 5px;
  404. margin-bottom: 20px;
  405. }
  406. .billWay_container .top {
  407. padding-top: 20px;
  408. padding-left: 20px;
  409. }
  410. .billWay_container .text {
  411. display: inline-block;
  412. color: #000;
  413. font-size: 16px ;
  414. margin-left: 1%;
  415. }
  416. .billWay_container .input-demo {
  417. display: inline-block;
  418. width: 20%;
  419. margin-left: 1%;
  420. }
  421. .billWay_container .block {
  422. font-size: 5px;
  423. text-align: center;
  424. margin-top: 25px;
  425. margin-bottom: 25px;
  426. }
  427. .billWay_container .el-dialog {
  428. width: 60%;
  429. }
  430. .billWay_container .el-dialog__header, .el-dialog__body {
  431. padding: 0 20px;
  432. }
  433. .billWay_container .tou {
  434. font-size: 20px;
  435. height: 30px;
  436. line-height: 30px;
  437. padding-top: 15px;
  438. }
  439. .billWay_container .line {
  440. margin-top: 15px;
  441. margin-bottom: 15px;
  442. width: 100%;
  443. height: 2px;
  444. background-color: #d9d9d9;
  445. }
  446. .billWay_container .xinxi {
  447. text-align: center;
  448. margin: 15px auto;
  449. font-size: 18px;
  450. }
  451. </style>