invoice.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <template>
  2. <div class="invoice">
  3. <!-- 头部细节部分 -->
  4. <div class="title">
  5. <el-row>
  6. <el-col :span="24">
  7. <div class="top">
  8. <el-upload
  9. class="upload-demo"
  10. ref="upload"
  11. action="http://invoice.back.jkcredit.com/"
  12. :on-preview="handlePreview"
  13. :on-remove="handleRemove"
  14. :on-change="handleSuccess"
  15. :auto-upload="false">
  16. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  17. <el-button style="margin-left: 10px;" size="small" type="success" @click="batchUpload" v-loading.fullscreen.lock="fullscreenLoading">提交</el-button>
  18. <div style="margin-top: 10px;">导入文件:</div>
  19. </el-upload>
  20. </div>
  21. <div class="top">
  22. <el-button @click="DownloadTemplate">下载模板</el-button>
  23. </div>
  24. </el-col>
  25. </el-row>
  26. </div>
  27. <!-- 表格部分 -->
  28. <template>
  29. <el-table
  30. class="table"
  31. v-loading="loading"
  32. ref="multipleTable"
  33. :data="usertable"
  34. :height="heightt"
  35. border
  36. tooltip-effect="dark">
  37. <el-table-column
  38. label="用户名"
  39. prop="userName"
  40. show-overflow-tooltip>
  41. </el-table-column>
  42. <el-table-column
  43. label="用户手机号"
  44. prop="userPhone"
  45. show-overflow-tooltip>
  46. </el-table-column>
  47. <el-table-column
  48. prop="userCompany"
  49. label="用户所在公司"
  50. show-overflow-tooltip>
  51. </el-table-column>
  52. <el-table-column
  53. prop="batchNumber"
  54. label="批次号"
  55. show-overflow-tooltip>
  56. </el-table-column>
  57. <el-table-column
  58. label="创建时间"
  59. show-overflow-tooltip>
  60. <template slot-scope="scope" show-overflow-tooltip>
  61. <span>{{scope.row.createTime | fmtDate}}</span>
  62. </template>
  63. </el-table-column>
  64. <el-table-column
  65. label="操作"
  66. width="80">
  67. <template slot-scope="scope" show-overflow-tooltip>
  68. <span style="cursor:pointer;" @click="checkLook(scope.row.id)">查看</span>
  69. </template>
  70. </el-table-column>
  71. </el-table>
  72. </template>
  73. <!-- 分页 -->
  74. <div class="block">
  75. <el-pagination
  76. @size-change="handleSizeChange"
  77. @current-change="handleCurrentChange"
  78. :current-page="current"
  79. :page-sizes="[6, 8, 10]"
  80. :page-size="pagesize"
  81. layout="total, sizes, prev, pager, next, jumper"
  82. :total="total">
  83. </el-pagination>
  84. </div>
  85. <el-dialog
  86. @close="handleEditDialogClose"
  87. :visible.sync="addList"
  88. style="font-size: 0px;">
  89. <template>
  90. <div class="tou">运单列表</div>
  91. <div class="line"></div>
  92. <div class="styleType">
  93. <el-input placeholder="运单编号" class="theinput" v-model="num"></el-input>
  94. <el-button type="success" style="margin-left: 1%;" @click="queryLookTwo">查询</el-button>
  95. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  96. </div>
  97. <el-table
  98. v-loading="loading"
  99. ref="multipleTable"
  100. :data="usertabletwo"
  101. border
  102. tooltip-effect="dark">
  103. <el-table-column
  104. label="批次号"
  105. prop="batchNumber"
  106. show-overflow-tooltip>
  107. </el-table-column>
  108. <el-table-column
  109. label="创建时间"
  110. show-overflow-tooltip>
  111. <template slot-scope="scope" show-overflow-tooltip>
  112. <span>{{scope.row.createTime | fmtDate}}</span>
  113. </template>
  114. </el-table-column>
  115. <el-table-column
  116. label="运单编号"
  117. prop="num"
  118. show-overflow-tooltip>
  119. </el-table-column>
  120. <el-table-column
  121. label="查询状态"
  122. show-overflow-tooltip>
  123. <template slot-scope="scope">
  124. <span v-if="scope.row.isSuccess == 1">成功</span>
  125. <span v-else-if="scope.row.isSuccess == 2">失败</span>
  126. <span v-else-if="scope.row.isSuccess == 3">无结果</span>
  127. </template>
  128. </el-table-column>
  129. <el-table-column
  130. label="公司名称"
  131. prop="userCompany"
  132. show-overflow-tooltip>
  133. </el-table-column>
  134. <el-table-column
  135. prop="userName"
  136. label="用户名称"
  137. show-overflow-tooltip>
  138. </el-table-column>
  139. <el-table-column
  140. prop="userPhone"
  141. label="用户手机号"
  142. show-overflow-tooltip>
  143. </el-table-column>
  144. </el-table>
  145. </template>
  146. <div class="blocks">
  147. <el-pagination
  148. @size-change="handleSize"
  149. @current-change="handleCurrent"
  150. :current-page="currenttwo"
  151. :page-sizes="[6, 8, 10]"
  152. :page-size="pagesizetwo"
  153. layout="total, sizes, prev, pager, next, jumper"
  154. :total="totaltwo">
  155. </el-pagination>
  156. </div>
  157. </el-dialog>
  158. </div>
  159. </template>
  160. <script>
  161. export default{
  162. data() {
  163. return {
  164. loading: false,
  165. fullscreenLoading: false,
  166. usertable: [],
  167. usertabletwo: [],
  168. batchId: '',
  169. addList: false,
  170. hightt:'0px',
  171. current: 1,
  172. pagesize: 8,
  173. total: 0,
  174. currenttwo: 1,
  175. pagesizetwo: 8,
  176. totaltwo: 0,
  177. num: '',
  178. formUserList: {
  179. "roleId": "",
  180. "userId": "",
  181. "file": ""
  182. },
  183. }
  184. },
  185. created() {
  186. this.heightt = tableHeight;
  187. this.loadData();
  188. },
  189. methods: {
  190. firstLoadData(){
  191. this.current = 1;
  192. this.pagesize = 8;
  193. this.loadData();
  194. },
  195. // 列表展示
  196. async loadData() {
  197. this.formUserList.userId = sessionStorage.getItem('userId');
  198. this.formUserList.roleId = sessionStorage.getItem('roleId');
  199. if(this.formUserList.roleId == 1) {
  200. const formData = new FormData();
  201. formData.append('current', this.current);
  202. formData.append('size', this.pagesize);
  203. formData.append('type', 4);
  204. const response = await this.$http.post(`batch/list`, formData);
  205. if (response.data.code === 0) {
  206. this.loading = false;
  207. this.usertable = response.data.data.records;
  208. this.total = response.data.data.total;
  209. }
  210. }else {
  211. const formData = new FormData();
  212. formData.append('current', this.current);
  213. formData.append('size', this.pagesize);
  214. formData.append('userId', this.formUserList.userId);
  215. formData.append('type', 4);
  216. const response = await this.$http.post(`batch/list`, formData);
  217. if (response.data.code === 0) {
  218. this.loading = false;
  219. this.usertable = response.data.data.records;
  220. this.total = response.data.data.total;
  221. };
  222. };
  223. },
  224. // 查看批次数据
  225. async checkLook(id) {
  226. this.addList = true;
  227. this.batchId = id;
  228. this.loadDataCar();
  229. },
  230. // 查看实时数据
  231. async loadDataCar() {
  232. if(this.formUserList.roleId == 1) {
  233. const formData = new FormData();
  234. formData.append('current', this.currenttwo);
  235. formData.append('size', this.pagesizetwo);
  236. formData.append('batchId', this.batchId);
  237. const response = await this.$http.post(`numInvoice/list`, formData);
  238. if (response.data.code === 0) {
  239. this.loading = false;
  240. this.usertabletwo = response.data.data.records;
  241. this.totaltwo = response.data.data.total;
  242. }
  243. }else {
  244. const formData = new FormData();
  245. formData.append('current', this.currenttwo);
  246. formData.append('size', this.pagesizetwo);
  247. formData.append('userId', this.formUserList.userId);
  248. formData.append('batchId', this.batchId);
  249. const response = await this.$http.post(`numInvoice/list`, formData);
  250. if (response.data.code === 0) {
  251. this.loading = false;
  252. this.usertabletwo = response.data.data.records;
  253. this.totaltwo = response.data.data.total;
  254. }
  255. }
  256. },
  257. //查询
  258. async queryLookTwo() {
  259. if(this.formUserList.roleId == 1) {
  260. const formData = new FormData();
  261. formData.append('current', this.currenttwo);
  262. formData.append('size', this.pagesizetwo);
  263. formData.append('batchId', this.batchId);
  264. formData.append('num', this.num);
  265. const response = await this.$http.post(`numInvoice/list`, formData);
  266. if (response.data.code === 0) {
  267. this.loading = false;
  268. this.usertabletwo = response.data.data.records;
  269. this.totaltwo = response.data.data.total;
  270. }
  271. }else {
  272. const formData = new FormData();
  273. formData.append('current', this.currenttwo);
  274. formData.append('size', this.pagesizetwo);
  275. formData.append('userId', this.formUserList.userId);
  276. formData.append('batchId', this.batchId);
  277. formData.append('num', this.num);
  278. const response = await this.$http.post(`numInvoice/list`, formData);
  279. if (response.data.code === 0) {
  280. this.loading = false;
  281. this.usertabletwo = response.data.data.records;
  282. this.totaltwo = response.data.data.total;
  283. }
  284. }
  285. },
  286. // 下载模板
  287. DownloadTemplate() {
  288. var url = 'http://invoice.back.jkcredit.com/numInvoice/downTemp';
  289. window.location.href= url;
  290. },
  291. // 批量上传模板信息
  292. async batchUpload() {
  293. const isLt50M = this.formUserList.file.size / 1024 / 1024 < 50;
  294. let extName = this.formUserList.file.name.substring(this.formUserList.file.name.lastIndexOf(".")).toLowerCase();
  295. let AllUpExt = ".xlsx";
  296. if( extName != AllUpExt){
  297. this.$message.error('格式错误!请重新选择');
  298. return false;
  299. }
  300. if (!isLt50M) {
  301. this.$message.error('上传文件大小不能超过50MB!');
  302. return false;
  303. }
  304. const loading = this.$loading({
  305. lock: true,
  306. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  307. spinner: 'el-icon-loading',
  308. background: 'rgba(0, 0, 0, 0.7)'
  309. });
  310. this.formUserList.userId = sessionStorage.getItem('userId');
  311. const formData = new FormData();
  312. formData.append('userId', this.formUserList.userId);
  313. formData.append('file', this.formUserList.file);
  314. const response = await this.$http.post(`numInvoice/excel`,formData);
  315. var {data: { code, msg, data }} = response;
  316. if(code === 0 && msg === 'success') {
  317. this.loadData();
  318. loading.close();
  319. this.$message.success('上传成功');
  320. this.$refs.upload.clearFiles();
  321. }else if(code === 1 && msg == null && data == null) {
  322. loading.close();
  323. this.$message.error('数据存在错误,请检查文件中数据');
  324. }else {
  325. loading.close();
  326. this.$message.error("数据存在错误,请检查文件中数据");
  327. }
  328. },
  329. handleRemove(file, fileList) {
  330. console.log(file, fileList);
  331. },
  332. handlePreview(file) {
  333. console.log(file);
  334. },
  335. handleSuccess (a) {
  336. this.formUserList.file = a.raw;
  337. },
  338. // 分页方法
  339. handleSizeChange(val) {
  340. this.pagesize = val;
  341. this.loadData();
  342. console.log(`每页 ${val} 条`);
  343. },
  344. handleCurrentChange(val) {
  345. this.current = val;
  346. this.loadData();
  347. console.log(`当前页: ${val}`);
  348. },
  349. handleSize(val) {
  350. this.pagesizetwo = val;
  351. if(this.num !== '') {
  352. this.queryLookTwo();
  353. }else{
  354. this.loadDataCar();
  355. };
  356. console.log(`每页 ${val} 条`);
  357. },
  358. handleCurrent(val) {
  359. this.currenttwo = val;
  360. if(this.num !== '') {
  361. this.queryLookTwo();
  362. }else{
  363. this.loadDataCar();
  364. };
  365. console.log(`当前页: ${val}`);
  366. }
  367. }
  368. };
  369. </script>
  370. <style>
  371. .invoice {
  372. border: 1px solid #d9d9d9;
  373. border-radius: 10px;
  374. }
  375. .invoice .upload-demo {
  376. display: inline-block;
  377. }
  378. .invoice .title {
  379. font-size: 5px;
  380. margin-bottom: 20px;
  381. }
  382. .invoice .top {
  383. padding-top: 20px;
  384. padding-left: 20px;
  385. }
  386. .invoice .text {
  387. display: inline-block;
  388. color: #000;
  389. font-size: 16px ;
  390. margin-left: 1%;
  391. }
  392. .invoice .tou {
  393. font-size: 20px;
  394. height: 30px;
  395. line-height: 30px;
  396. padding-top: 15px;
  397. }
  398. .invoice .line {
  399. margin-top: 15px;
  400. margin-bottom: 15px;
  401. width: 100%;
  402. height: 2px;
  403. background-color: #d9d9d9;
  404. }
  405. .invoice .theinput {
  406. display: inline-block;
  407. width: 20%;
  408. }
  409. .invoice .styleType {
  410. margin-top: 20px;
  411. margin-bottom: 20px;
  412. }
  413. .invoice .input-demo {
  414. display: inline-block;
  415. width: 20%;
  416. margin-left: 1%;
  417. }
  418. .invoice .block {
  419. font-size: 5px;
  420. text-align: center;
  421. margin-top: 15px;
  422. margin-bottom: 20px;
  423. }
  424. .invoice .blocks {
  425. font-size: 5px;
  426. text-align: center;
  427. margin-top: 20px;
  428. padding-bottom: 20px;
  429. }
  430. .invoice .el-dialog {
  431. width: 90%;
  432. }
  433. .invoice .el-dialog__header, .el-dialog__body {
  434. padding: 0 20px;
  435. }
  436. </style>