waybill.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  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" style="margin: 0;" v-model="customerName"></el-input>
  27. <el-input placeholder="用户所在公司" class="input-demo" v-model="companyName"></el-input>
  28. <el-input placeholder="批次号" class="input-demo" v-model="batchNum"></el-input>
  29. <el-button style="margin-left: 1%;" @click="DownloadTemplate">下载模板</el-button>
  30. <el-button type="success" style="margin-left: 1%;" @click="loadData">查询</el-button>
  31. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  32. </div>
  33. </el-col>
  34. </el-row>
  35. </div>
  36. <!-- 头部细节部分结束 -->
  37. <!-- 表格部分 -->
  38. <template>
  39. <el-table
  40. class="table"
  41. v-loading="loading"
  42. ref="multipleTable"
  43. :data="usertable"
  44. :height="heightt"
  45. border
  46. tooltip-effect="dark">
  47. <el-table-column
  48. label="用户名"
  49. prop="customerName"
  50. show-overflow-tooltip>
  51. </el-table-column>
  52. <el-table-column
  53. label="用户手机号"
  54. prop="customerPhone"
  55. show-overflow-tooltip>
  56. </el-table-column>
  57. <el-table-column
  58. prop="company"
  59. label="用户所在公司"
  60. show-overflow-tooltip>
  61. </el-table-column>
  62. <el-table-column
  63. prop="batchNumber"
  64. label="批次号"
  65. show-overflow-tooltip>
  66. </el-table-column>
  67. <el-table-column
  68. label="创建时间"
  69. show-overflow-tooltip>
  70. <template slot-scope="scope" show-overflow-tooltip>
  71. <span>{{scope.row.createTime | fmtDate}}</span>
  72. </template>
  73. </el-table-column>
  74. <el-table-column
  75. label="操作"
  76. width="80">
  77. <template slot-scope="scope" show-overflow-tooltip>
  78. <span style="cursor:pointer;color: blue;" @click="checkLook(scope.row.batchNumber)">查看</span>
  79. </template>
  80. </el-table-column>
  81. </el-table>
  82. </template>
  83. <!-- 分页 -->
  84. <div class="block">
  85. <el-pagination
  86. @size-change="handleSizeChange"
  87. @current-change="handleCurrentChange"
  88. :current-page="current"
  89. :page-sizes="[6, 8, 10]"
  90. :page-size="pagesize"
  91. layout="total, sizes, prev, pager, next, jumper"
  92. :total="total">
  93. </el-pagination>
  94. </div>
  95. <!-- 查看 -->
  96. <el-dialog
  97. @close="handleEditDialogClose"
  98. :visible.sync="addList"
  99. style="font-size: 0px;">
  100. <template>
  101. <div class="tou">运单列表</div>
  102. <div class="line"></div>
  103. <div class="styleType">
  104. <el-input placeholder="运单编号" class="theinput" v-model="billNum"></el-input>
  105. <el-input placeholder="车牌号" class="theinput" v-model="plateNum"></el-input>
  106. <el-input placeholder="税号" class="theinput" v-model="taxPlayerCode"></el-input>
  107. <el-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
  108. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  109. </div>
  110. <el-table
  111. v-loading="loading"
  112. ref="multipleTable"
  113. :data="usertabletwo"
  114. border
  115. tooltip-effect="dark">
  116. <el-table-column
  117. label="运单编号"
  118. prop="billNum"
  119. show-overflow-tooltip>
  120. </el-table-column>
  121. <el-table-column
  122. prop="taxplayerCode"
  123. label="税号"
  124. show-overflow-tooltip>
  125. </el-table-column>
  126. <el-table-column
  127. label="车牌号码"
  128. prop="plateNum"
  129. show-overflow-tooltip>
  130. </el-table-column>
  131. <el-table-column
  132. prop="startTime"
  133. label="运单开始时间"
  134. show-overflow-tooltip>
  135. </el-table-column>
  136. <el-table-column
  137. prop="sourceAddr"
  138. label="运单开始地址"
  139. show-overflow-tooltip>
  140. </el-table-column>
  141. <el-table-column
  142. prop="destAddr"
  143. label="运单目的地址"
  144. show-overflow-tooltip>
  145. </el-table-column>
  146. <el-table-column
  147. prop="predictEndTime"
  148. label="运单预计完成时间"
  149. show-overflow-tooltip>
  150. </el-table-column>
  151. <el-table-column
  152. prop="fee"
  153. label="运单费用(元)"
  154. show-overflow-tooltip>
  155. <template slot-scope="scope" show-overflow-tooltip>
  156. <span>{{scope.row.fee / 100}}</span>
  157. </template>
  158. </el-table-column>
  159. <el-table-column
  160. prop="billwayStatus"
  161. label="运单状态"
  162. show-overflow-tooltip>
  163. <template slot-scope="scope">
  164. <span v-if="scope.row.billwayStatus == 1" style="color: green">未结束</span>
  165. <span v-else-if="scope.row.billwayStatus == 2" style="color: green">开票中</span>
  166. <span v-else-if="scope.row.billwayStatus == 3" style="color: green">开票完成</span>
  167. <span v-else-if="scope.row.billwayStatus == 4" style="color: red">超时运单</span>
  168. <span v-else-if="scope.row.billwayStatus == -2" style="color: red">导入失败</span>
  169. </template>
  170. </el-table-column>
  171. <el-table-column
  172. prop="failReason"
  173. label="失败原因"
  174. show-overflow-tooltip>
  175. </el-table-column>
  176. </el-table>
  177. </template>
  178. <div class="blocks">
  179. <el-pagination
  180. @size-change="handleSize"
  181. @current-change="handleCurrent"
  182. :current-page="currenttwo"
  183. :page-sizes="[6, 8, 10]"
  184. :page-size="pagesizetwo"
  185. layout="total, sizes, prev, pager, next, jumper"
  186. :total="totaltwo">
  187. </el-pagination>
  188. </div>
  189. </el-dialog>
  190. </div>
  191. </template>
  192. <script>
  193. export default{
  194. data() {
  195. return {
  196. loading: false,
  197. fullscreenLoading: false,
  198. customerName: '',
  199. companyName: '',
  200. billNum: '',
  201. plateNumber: '',
  202. taxPlayerCode: '',
  203. hightt:'0px',
  204. status: '',
  205. addList: false,
  206. current: 1,
  207. pagesize: 8,
  208. total: 0,
  209. currenttwo: 1,
  210. pagesizetwo: 8,
  211. totaltwo: 0,
  212. batchNum: '',
  213. batchNumberQ:'',
  214. usertable: [],
  215. usertabletwo: [],
  216. formUserList: {
  217. "customerName": "",
  218. "file": "",
  219. "roleId": ""
  220. },
  221. optionone: [{
  222. value: '1',
  223. label: '成功'
  224. }, {
  225. value: '2',
  226. label: '失败'
  227. }],
  228. isSuccess: '',
  229. }
  230. },
  231. created() {
  232. this.heightt = tableHeight;
  233. this.formUserList.customerName = sessionStorage.getItem('userName');
  234. this.loadData();
  235. },
  236. methods: {
  237. firstLoadData(){
  238. this.current = 1;
  239. this.pagesize = 8;
  240. this.loadData();
  241. },
  242. // 列表展示
  243. async loadData() {
  244. const formData = new FormData();
  245. formData.append('current', this.current);
  246. formData.append('size', this.pagesize);
  247. formData.append('customerName',this.formUserList.customerName);
  248. formData.append('company', this.companyName);
  249. formData.append('batchNumer', this.batchNum);
  250. formData.append('operType', 1);
  251. const response = await this.$http.post(`noCar/findBatchList`, formData);
  252. if (response.data.code === 0) {
  253. this.loading = false;
  254. this.usertable = response.data.data.records;
  255. this.total = response.data.data.total;
  256. }
  257. },
  258. // 下载模板
  259. DownloadTemplate() {
  260. var url = hostUrl+"noCar/templateDownload?fileName=1"
  261. window.location.href= url;
  262. },
  263. // 批量上传模板信息
  264. async batchUpload() {
  265. this.fullscreenLoading = true;
  266. const formData = new FormData();
  267. formData.append('customerName', this.formUserList.customerName);
  268. formData.append('file', this.formUserList.file);
  269. const response = await this.$http.post(`noCar/batchImprotBillWay`,formData);
  270. var {data: { code, msg, data }} = response;
  271. if(code === 0 && msg === 'success') {
  272. this.loadData();
  273. this.fullscreenLoading = false;
  274. this.$message.success('上传成功');
  275. }else if(code === 1 && msg == null && data == null) {
  276. this.fullscreenLoading = false;
  277. this.$message.error('数据存在错误,请检查文件中数据');
  278. }else {
  279. this.fullscreenLoading = false;
  280. this.$message.error(msg);
  281. }
  282. },
  283. // 查看批次数据
  284. async checkLook(id) {
  285. this.addList = true;
  286. this.batchNumberQ = id;
  287. this.loadDataCar();
  288. },
  289. handleEditDialogClose(){
  290. this.addList = false;
  291. },
  292. // 查看实时数据
  293. async loadDataCar() {
  294. const formData = new FormData();
  295. formData.append('current', this.currenttwo);
  296. formData.append('size', this.pagesizetwo);
  297. formData.append('customerName', this.formUserList.customerName);
  298. formData.append('batchNum', this.batchNumberQ);
  299. formData.append('plateNumber', this.plateNumber);
  300. formData.append('taxPlayerCode', this.taxPlayerCode);
  301. formData.append('hisFlag', 0);
  302. const response = await this.$http.post(`noCar/findImportBillWay`, formData);
  303. if (response.data.code === 0) {
  304. this.loading = false;
  305. this.usertabletwo = response.data.data.records;
  306. this.totaltwo = response.data.data.total;
  307. }
  308. },
  309. handleRemove(file, fileList) {
  310. console.log(file, fileList);
  311. },
  312. handlePreview(file) {
  313. console.log(file);
  314. },
  315. handleSuccess (a) {
  316. this.formUserList.file = a.raw;
  317. },
  318. // 分页方法
  319. handleSizeChange(val) {
  320. this.pagesize = val;
  321. this.loadData();
  322. console.log(`每页 ${val} 条`);
  323. },
  324. handleCurrentChange(val) {
  325. this.current = val;
  326. this.loadData();
  327. console.log(`当前页: ${val}`);
  328. },
  329. handleSize(val) {
  330. this.pagesizetwo = val;
  331. this.loadDataCar();
  332. console.log(`每页 ${val} 条`);
  333. },
  334. handleCurrent(val) {
  335. this.currenttwo = val;
  336. this.loadDataCar();
  337. console.log(`当前页: ${val}`);
  338. }
  339. }
  340. };
  341. </script>
  342. <style>
  343. .waybill {
  344. border: 1px solid #d9d9d9;
  345. border-radius: 10px;
  346. }
  347. .waybill .upload-demo {
  348. display: inline-block;
  349. }
  350. .waybill .title {
  351. font-size: 5px;
  352. margin-bottom: 20px;
  353. }
  354. .waybill .top {
  355. padding-top: 20px;
  356. padding-left: 20px;
  357. }
  358. .waybill .text {
  359. display: inline-block;
  360. color: #000;
  361. font-size: 16px ;
  362. margin-left: 1%;
  363. }
  364. .waybill .tou {
  365. font-size: 20px;
  366. height: 30px;
  367. line-height: 30px;
  368. padding-top: 15px;
  369. }
  370. .waybill .line {
  371. margin-top: 15px;
  372. margin-bottom: 15px;
  373. width: 100%;
  374. height: 2px;
  375. background-color: #d9d9d9;
  376. }
  377. .waybill .theinput {
  378. display: inline-block;
  379. width: 20%;
  380. }
  381. .waybill .styleType {
  382. margin-top: 20px;
  383. margin-bottom: 20px;
  384. }
  385. .waybill .input-demo {
  386. display: inline-block;
  387. width: 20%;
  388. margin-left: 1%;
  389. }
  390. .waybill .block {
  391. font-size: 5px;
  392. text-align: center;
  393. margin-top: 15px;
  394. margin-bottom: 20px;
  395. }
  396. .waybill .blocks {
  397. font-size: 5px;
  398. text-align: center;
  399. margin-top: 20px;
  400. padding-bottom: 20px;
  401. }
  402. .waybill .el-dialog {
  403. width: 90%;
  404. }
  405. .waybill .el-dialog__header, .el-dialog__body {
  406. padding: 0 20px;
  407. }
  408. </style>