resultUplod.vue 6.1 KB

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