resultUplodModel.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. title="导入数据"
  5. :center="true"
  6. align="left"
  7. top="5vh"
  8. width="1040px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. @close="showModelThis = false"
  15. >
  16. <el-card style="margin: -20px">
  17. <el-row :gutter="10" style="height: 550px">
  18. <el-col :span="24">
  19. <upload-excel
  20. :on-success="handleSuccess"
  21. :before-upload="beforeUpload"
  22. />
  23. <el-table
  24. :data="tableData"
  25. size="mini"
  26. border
  27. max-height="400px"
  28. highlight-current-row
  29. style="width: 100%; margin-top: 20px"
  30. >
  31. <el-table-column
  32. show-overflow-tooltip
  33. v-for="(item, index) in columns"
  34. :key="item.prop + index"
  35. :prop="item.prop"
  36. :label="item.label"
  37. min-width="96px"
  38. />
  39. </el-table>
  40. </el-col>
  41. <el-col :span="24" style="text-align: right; margin: 15px 0 0 0">
  42. <el-button
  43. v-if="!isDetail"
  44. :size="'mini'"
  45. type="primary"
  46. @click="submitForm"
  47. >保 存
  48. </el-button>
  49. <el-button :size="'mini'" @click="showModelThis = false">{{
  50. isDetail ? "关 闭" : "取 消"
  51. }}</el-button>
  52. </el-col>
  53. </el-row>
  54. </el-card>
  55. </el-dialog>
  56. </template>
  57. <script>
  58. import urlConfig from "@/apis/url-config";
  59. import resToken from "@/mixins/resToken";
  60. import asyncRequest from "@/apis/service/stock/check/detail";
  61. import { isnumber } from "@/utils/validate";
  62. export default {
  63. name: "resultUplodModel",
  64. props: ["showModel", "id"],
  65. mixins: [resToken],
  66. data() {
  67. return {
  68. imgAPI: urlConfig.baseURL,
  69. loading: false,
  70. length: 0,
  71. showModelThis: this.showModel,
  72. isfile: false,
  73. head: [
  74. "商品编码",
  75. // "商品属性编码",
  76. "商品名称",
  77. "商品描述",
  78. "品牌",
  79. "单位",
  80. "供应商编码",
  81. "供应商名称",
  82. "一级分类",
  83. "二级分类",
  84. "三级分类",
  85. "新建时间",
  86. "仓库编码",
  87. "仓库名称",
  88. "可用库存",
  89. "盘点库存",
  90. ],
  91. tableData: [],
  92. ruleForm: {
  93. execl: "",
  94. },
  95. rules: {
  96. execl: [
  97. {
  98. required: true,
  99. message: "请选择文件",
  100. trigger: "change",
  101. },
  102. ],
  103. },
  104. columns: [],
  105. };
  106. },
  107. watch: {
  108. showModel: function (val) {
  109. this.showModelThis = val;
  110. if (val) {
  111. this.initForm();
  112. }
  113. },
  114. showModelThis(val) {
  115. if (!val) {
  116. this.$emit("cancel");
  117. }
  118. },
  119. },
  120. methods: {
  121. async initForm() {
  122. this.loading = true;
  123. this.isfile = false;
  124. this.tableData = [];
  125. this.columns = [];
  126. this.head.forEach((v, i) => {
  127. let model = {
  128. prop: "value" + i,
  129. label: v,
  130. };
  131. this.columns.push(model);
  132. });
  133. this.loading = false;
  134. },
  135. beforeUpload(file) {
  136. const isLt1M = file.size / 1024 / 1024 < 1;
  137. if (isLt1M) {
  138. return true;
  139. }
  140. this.$message({
  141. message: "请不要上传大于1MB的文件.",
  142. type: "warning",
  143. });
  144. return false;
  145. },
  146. handleSuccess({ results, header }) {
  147. this.length = 0;
  148. if (this.head.length !== header.length) {
  149. this.$message.error("表头与导入模板不匹配!");
  150. return;
  151. }
  152. let isok = true;
  153. this.head.forEach((v, i) => {
  154. if (v !== header[i]) {
  155. isok = false;
  156. }
  157. });
  158. if (!isok) {
  159. this.$message.error("表头与导入模板不匹配!");
  160. return;
  161. }
  162. this.length = header.length;
  163. this.tableHeader = header;
  164. let list = results;
  165. this.tableData = [];
  166. list.forEach((v1) => {
  167. let b = Object.values(v1);
  168. let model = {};
  169. for (let i = 0; i < b.length; i++) {
  170. model["value" + i] = b[i];
  171. }
  172. this.tableData.push(model);
  173. });
  174. },
  175. async submitForm() {
  176. if (!this.loading) {
  177. this.loading = true;
  178. let isok = true,
  179. isn = true,
  180. list = [];
  181. this.tableData.forEach((v) => {
  182. if (v.value14 === "") {
  183. isok = false;
  184. }
  185. });
  186. if (!isok) {
  187. this.$message.warning("盘点库存不能为空!");
  188. this.loading = false;
  189. return;
  190. }
  191. this.tableData.forEach((v) => {
  192. list.push({
  193. value0: v.value0,
  194. value1: v.value1,
  195. // value2: v.value2,
  196. value14: v.value14+"",
  197. });
  198. if (!isnumber(v.value14)) {
  199. isn = false;
  200. }
  201. });
  202. if (!isn) {
  203. this.$message.warning("盘点库存只能为正整数!");
  204. this.loading = false;
  205. return;
  206. }
  207. let model = {
  208. id: this.id,
  209. data: list,
  210. };
  211. const res = await asyncRequest.checkimport(model);
  212. this.loading = false;
  213. if (res && res.code === 0) {
  214. this.$notify.success({
  215. title: "盘点数据提交成功!",
  216. message: "",
  217. });
  218. this.showModelThis = false;
  219. this.$emit("refresh", false);
  220. } else if (res && res.code >= 100 && res.code <= 104) {
  221. await this.logout();
  222. } else {
  223. this.$message.warning(res.message);
  224. }
  225. }
  226. },
  227. },
  228. };
  229. </script>
  230. <style lang="scss" scoped>
  231. .checkDetail {
  232. .excelUploadBox {
  233. position: relative;
  234. width: 100%;
  235. height: 120px;
  236. line-height: 120px;
  237. box-sizing: border-box;
  238. &:hover {
  239. cursor: pointer;
  240. }
  241. .el-icon-receiving {
  242. width: 100%;
  243. text-align: center;
  244. height: 50px;
  245. display: block;
  246. font-size: 32px;
  247. line-height: 90px;
  248. color: #d3d4d6;
  249. }
  250. .boxM {
  251. width: 100%;
  252. display: block;
  253. text-align: center;
  254. line-height: 65px;
  255. height: 60px;
  256. color: #909399;
  257. }
  258. }
  259. .excelUpload {
  260. top: 0;
  261. left: 0;
  262. position: absolute;
  263. z-index: 2;
  264. width: 100%;
  265. height: 120px;
  266. line-height: 120px;
  267. box-sizing: border-box;
  268. // opacity: 0!important;
  269. // .excel-upload-input {
  270. // top: 0 !important;
  271. // left: 0 !important;
  272. // position: absolute !important;
  273. // z-index: 2 !important;
  274. // width: 100% !important;
  275. // height: 120px !important;
  276. // line-height: 120px !important;
  277. // box-sizing: border-box !important;
  278. // }
  279. }
  280. .excelUploadRes {
  281. width: 100%;
  282. height: 120px;
  283. line-height: 120px;
  284. box-sizing: border-box;
  285. i {
  286. width: 55px;
  287. height: 120px;
  288. line-height: 120px;
  289. text-align: center;
  290. font-size: 20px;
  291. &.fl {
  292. padding-left: 16px;
  293. }
  294. &.fr {
  295. padding-right: 16px;
  296. &:hover {
  297. cursor: pointer;
  298. }
  299. }
  300. }
  301. span {
  302. width: 386px;
  303. line-height: 16px;
  304. margin: 52px 0 0 0;
  305. font-size: 16px;
  306. }
  307. }
  308. }
  309. </style>