over.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. <template>
  2. <div class="over">
  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="batchNumer"></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-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
  106. <!-- <el-button type="info" style="margin-left: 1%;">重置</el-button> -->
  107. </div>
  108. <el-table
  109. v-loading="loading"
  110. ref="multipleTable"
  111. :data="usertabletwo"
  112. border
  113. tooltip-effect="dark">
  114. <el-table-column
  115. label="运单编号"
  116. prop="billNum"
  117. show-overflow-tooltip>
  118. </el-table-column>
  119. <el-table-column
  120. prop="destAddr"
  121. label="目的地址"
  122. show-overflow-tooltip>
  123. </el-table-column>
  124. <el-table-column
  125. prop="predictEndTime"
  126. label="结束时间"
  127. show-overflow-tooltip>
  128. </el-table-column>
  129. <el-table-column
  130. prop="isSuccess"
  131. label="是否成功"
  132. show-overflow-tooltip>
  133. <template slot-scope="scope">
  134. <span v-if="scope.row.isSuccess == 1">成功</span>
  135. <span v-else-if="scope.row.isSuccess == 2">失败</span>
  136. </template>
  137. </el-table-column>
  138. </el-table>
  139. </template>
  140. <div class="blocks">
  141. <el-pagination
  142. @size-change="handleSize"
  143. @current-change="handleCurrent"
  144. :current-page="currenttwo"
  145. :page-sizes="[6, 8, 10]"
  146. :page-size="pagesizetwo"
  147. layout="total, sizes, prev, pager, next, jumper"
  148. :total="totaltwo">
  149. </el-pagination>
  150. </div>
  151. </el-dialog>
  152. </div>
  153. </template>
  154. <script>
  155. export default{
  156. data() {
  157. return {
  158. loading: false,
  159. fullscreenLoading: false,
  160. customerName: '',
  161. companyName: '',
  162. batchNumber: '',
  163. batchNumberQ:'',
  164. num: '',
  165. hightt:'0px',
  166. addList: false,
  167. current: 1,
  168. pagesize: 8,
  169. total: 0,
  170. currenttwo: 1,
  171. pagesizetwo: 8,
  172. totaltwo: 0,
  173. batchId: '',
  174. usertable: [],
  175. usertabletwo: [],
  176. formUserList: {
  177. "customerName": "",
  178. "file": "",
  179. "roleId": ""
  180. },
  181. }
  182. },
  183. created() {
  184. this.heightt = tableHeight;
  185. this.formUserList.customerName = sessionStorage.getItem('userName');
  186. this.loadData();
  187. },
  188. methods: {
  189. firstLoadData(){
  190. this.current = 1;
  191. this.pagesize = 8;
  192. this.loadData();
  193. },
  194. // 列表展示
  195. async loadData() {
  196. const formData = new FormData();
  197. formData.append('current', this.current);
  198. formData.append('size', this.pagesize);
  199. formData.append('customerName',this.formUserList.customerName);
  200. formData.append('company', this.companyName);
  201. formData.append('batchNumer', this.batchNumer);
  202. formData.append('operType', 2);
  203. const response = await this.$http.post(`noCar/findBatchList`, formData);
  204. if (response.data.code === 0) {
  205. this.loading = false;
  206. this.usertable = response.data.data.records;
  207. this.total = response.data.data.total;
  208. }
  209. },
  210. // 下载模板
  211. DownloadTemplate() {
  212. var url = hostUrl+"noCar/templateDownload?fileName=2"
  213. window.location.href= url;
  214. },
  215. // 批量上传模板信息
  216. async batchUpload() {
  217. this.fullscreenLoading = true;
  218. const formData = new FormData();
  219. formData.append('customerName', this.formUserList.customerName);
  220. formData.append('file', this.formUserList.file);
  221. const response = await this.$http.post(`noCar/batchImprotEndBillWay`,formData);
  222. var {data: { code, msg, data }} = response;
  223. if(code === 0 && msg === 'success') {
  224. this.loadData();
  225. this.fullscreenLoading = false;
  226. this.$message.success('上传成功');
  227. }else if(code === 1 && msg == null && data == null) {
  228. this.fullscreenLoading = false;
  229. this.$message.error('数据存在错误,请检查文件中数据');
  230. }else {
  231. this.fullscreenLoading = false;
  232. this.$message.error(msg);
  233. }
  234. },
  235. // 查看批次数据
  236. async checkLook(id) {
  237. this.addList = true;
  238. this.batchNumberQ = id;
  239. this.loadDataCar();
  240. },
  241. // 查看实时数据
  242. async loadDataCar() {
  243. const formData = new FormData();
  244. formData.append('current', this.currenttwo);
  245. formData.append('size', this.pagesizetwo);
  246. formData.append('customerName', this.formUserList.customerName);
  247. formData.append('batchNumEnd', this.batchNumberQ);
  248. formData.append('plateNumber', this.plateNumber);
  249. formData.append('taxPlayerCode', this.taxPlayerCode);
  250. formData.append('hisFlag', 0);
  251. const response = await this.$http.post(`noCar/findImportBillWay`, formData);
  252. if (response.data.code === 0) {
  253. this.loading = false;
  254. this.usertabletwo = response.data.data.records;
  255. this.totaltwo = response.data.data.total;
  256. }
  257. },
  258. // 清空表单数据
  259. handleEditDialogClose() {
  260. this.addList = false;
  261. },
  262. handleRemove(file, fileList) {
  263. console.log(file, fileList);
  264. },
  265. handlePreview(file) {
  266. console.log(file);
  267. },
  268. handleSuccess (a) {
  269. this.formUserList.file = a.raw;
  270. },
  271. // 分页方法
  272. handleSizeChange(val) {
  273. this.pagesize = val;
  274. this.loadData();
  275. console.log(`每页 ${val} 条`);
  276. },
  277. handleCurrentChange(val) {
  278. this.current = val;
  279. this.loadData();
  280. console.log(`当前页: ${val}`);
  281. },
  282. handleSize(val) {
  283. this.pagesizetwo = val;
  284. this.loadDataCar();
  285. console.log(`每页 ${val} 条`);
  286. },
  287. handleCurrent(val) {
  288. this.currenttwo = val;
  289. this.loadDataCar();
  290. console.log(`当前页: ${val}`);
  291. }
  292. }
  293. };
  294. </script>
  295. <style>
  296. .over {
  297. border: 1px solid #d9d9d9;
  298. border-radius: 10px;
  299. }
  300. .over .upload-demo {
  301. display: inline-block;
  302. }
  303. .over .title {
  304. font-size: 5px;
  305. margin-bottom: 20px;
  306. }
  307. .over .top {
  308. padding-top: 20px;
  309. padding-left: 20px;
  310. }
  311. .over .text {
  312. display: inline-block;
  313. color: #000;
  314. font-size: 16px ;
  315. margin-left: 1%;
  316. }
  317. .over .tou {
  318. font-size: 20px;
  319. height: 30px;
  320. line-height: 30px;
  321. padding-top: 15px;
  322. }
  323. .over .line {
  324. margin-top: 15px;
  325. margin-bottom: 15px;
  326. width: 100%;
  327. height: 2px;
  328. background-color: #d9d9d9;
  329. }
  330. .over .theinput {
  331. display: inline-block;
  332. width: 20%;
  333. }
  334. .over .styleType {
  335. margin-top: 20px;
  336. margin-bottom: 20px;
  337. }
  338. .over .input-demo {
  339. display: inline-block;
  340. width: 20%;
  341. margin-left: 1%;
  342. }
  343. .over .block {
  344. font-size: 5px;
  345. text-align: center;
  346. margin-top: 15px;
  347. margin-bottom: 20px;
  348. }
  349. .over .blocks {
  350. font-size: 5px;
  351. text-align: center;
  352. margin-top: 20px;
  353. padding-bottom: 20px;
  354. }
  355. .over .el-dialog {
  356. width: 90%;
  357. }
  358. .over .el-dialog__header, .el-dialog__body {
  359. padding: 0 20px;
  360. }
  361. </style>