resultUplod.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <div>
  3. <el-table
  4. v-loading="false"
  5. :data="tableData"
  6. border
  7. stripe
  8. :size="'mini'"
  9. style="width: 100%"
  10. >
  11. <el-table-column
  12. prop="spuCode"
  13. label="商品编号"
  14. min-width="130"
  15. />
  16. <el-table-column prop="good_name" label="商品名称" min-width="200" />
  17. <el-table-column prop="is_profit" label="盘盈/盘亏" min-width="100">
  18. <template slot-scope="scope">
  19. <el-tag
  20. :size="tablebtnSize"
  21. :type="scope.row.is_profit == '0' ? 'success' : 'warning'"
  22. v-text="
  23. (typeOptions.find((item) => item.id == scope.row.is_profit) || {})
  24. .label || '--'
  25. "
  26. ></el-tag>
  27. </template>
  28. </el-table-column>
  29. <el-table-column prop="origin_num" label="盘点前数量" min-width="110" />
  30. <el-table-column prop="check_num" label="盘点后数量" min-width="110" />
  31. <el-table-column prop="diff_num" label="差额数量" min-width="110" />
  32. <el-table-column prop="addtime" width="145" label="结果上传时间">
  33. <template slot="header" slot-scope="scope">
  34. <span>结果上传时间</span>
  35. <el-tooltip
  36. style="margin: 3px 0 0 0"
  37. effect="dark"
  38. class="fr"
  39. v-if="status == '1' && powers.some((item) => item == '017')"
  40. content="添加"
  41. placement="top"
  42. >
  43. <i
  44. class="el-icon-circle-plus-outline tb-icon"
  45. style="color: #63cbe7; magin: 0 0 0 10px"
  46. @click="importshowModel = true"
  47. ></i>
  48. </el-tooltip>
  49. </template>
  50. </el-table-column>
  51. </el-table>
  52. <div
  53. v-if="tableData && tableData.length > 0"
  54. class="Pagination"
  55. style="text-align: right; margin-top: 10px"
  56. >
  57. <el-pagination
  58. :current-page="parmValue.page"
  59. :page-size="parmValue.size"
  60. :size="'mini'"
  61. layout="total, prev, pager, next, jumper"
  62. :total="pageInfo.total"
  63. @size-change="handleSizeChange"
  64. @current-change="handlePageChange"
  65. />
  66. </div>
  67. <result-uplod-model
  68. :show-model="importshowModel"
  69. :id="id"
  70. @refresh="refresh"
  71. @cancel="importshowModel = false"
  72. />
  73. </div>
  74. </template>
  75. <script>
  76. import asyncRequest from "@/apis/service/stock/check/detail";
  77. import mixinPage from "@/mixins/elPaginationHandle";
  78. import resToken from "@/mixins/resToken";
  79. import resultUplodModel from "./resultUplodModel";
  80. import { mapGetters } from "vuex";
  81. export default {
  82. name: "addEdit",
  83. props: ["id", "newTime", "sitem"],
  84. mixins: [mixinPage, resToken],
  85. components: {
  86. resultUplodModel,
  87. },
  88. computed: {
  89. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  90. powers() {
  91. let tran =
  92. this.$store.getters.btnList.find(
  93. (item) => item.menu_route == "checkDetail"
  94. ) || {};
  95. if (tran && tran.action && tran.action.length > 0) {
  96. return tran.action;
  97. } else {
  98. return [];
  99. }
  100. },
  101. },
  102. watch: {
  103. newTime: function (val) {
  104. if (val) {
  105. this.restSearch();
  106. }
  107. },
  108. },
  109. data() {
  110. return {
  111. importshowModel: false,
  112. status: "",
  113. // 盘点类型
  114. typeOptions: [
  115. { id: "0", label: "盘盈" },
  116. { id: "1", label: "盘亏" },
  117. ],
  118. loading: true,
  119. showModel: false,
  120. isDetail: false,
  121. modelId: 0,
  122. parmValue: {
  123. page: 1, // 页码
  124. size: 15, // 每页显示条数
  125. check_code: "", // 盘点仓库
  126. },
  127. tableData: [],
  128. passwordModel: false,
  129. passwordModelId: 0,
  130. isPasswordDetail: false,
  131. // 表格 - 数据
  132. tableData: [],
  133. // 表格 - 参数
  134. table: {
  135. stripe: true,
  136. border: true,
  137. // _defaultHeader_: ["setcol"],
  138. },
  139. // 表格 - 分页
  140. pageInfo: {
  141. size: 15,
  142. curr: 1,
  143. total: 0,
  144. },
  145. // 表格 - 列参数
  146. columns: [
  147. {
  148. prop: "good_type_code",
  149. label: "商品属性编号",
  150. "min-width": "130px",
  151. },
  152. {
  153. prop: "good_name",
  154. label: "商品名称",
  155. "min-width": "200px",
  156. },
  157. {
  158. prop: "is_profit",
  159. label: "盘盈/盘亏",
  160. _slot_: "is_profit",
  161. "min-width": "100px",
  162. },
  163. {
  164. prop: "origin_num",
  165. label: "盘点前数量",
  166. "min-width": "110px",
  167. },
  168. {
  169. prop: "check_num",
  170. label: "盘点后数量",
  171. "min-width": "110px",
  172. },
  173. {
  174. prop: "diff_num",
  175. label: "差额数量",
  176. "min-width": "100px",
  177. },
  178. {
  179. prop: "addtime",
  180. label: "结果上传时间",
  181. width: "145px",
  182. },
  183. {
  184. prop: "",
  185. label: "操作",
  186. fixed: "right",
  187. _noset_: true,
  188. width: "50px",
  189. _slot_: "operation",
  190. },
  191. ],
  192. };
  193. },
  194. mounted() {
  195. this.restSearch();
  196. },
  197. methods: {
  198. restSearch() {
  199. this.status = this.sitem.status;
  200. // 表格 - 分页
  201. this.pageInfo = {
  202. size: 15,
  203. curr: 1,
  204. total: 0,
  205. };
  206. this.parmValue = {
  207. id: "", // 盘点编号
  208. page: 1, // 页码
  209. size: 15, // 每页显示条数
  210. };
  211. this.searchList();
  212. },
  213. refresh() {
  214. this.pageInfo.curr = 1;
  215. this.parmValue.page = 1;
  216. this.searchList();
  217. this.$emit("refresh");
  218. },
  219. async searchList() {
  220. this.loading = true;
  221. this.parmValue.id = this.id;
  222. const res = await asyncRequest.checkgood(this.parmValue);
  223. if (res && res.code === 0 && res.data) {
  224. this.tableData = res.data.list;
  225. this.pageInfo.total = Number(res.data.count);
  226. } else if (res && res.code >= 100 && res.code <= 104) {
  227. await this.logout();
  228. } else {
  229. this.tableData = [];
  230. this.pageInfo.total = 0;
  231. }
  232. this.loading = false;
  233. },
  234. },
  235. };
  236. </script>
  237. <style lang="scss" scoped>
  238. </style>