editRecord.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. title="库存变动记录"
  5. :center="true"
  6. align="left"
  7. top="18vh"
  8. width="750px"
  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="closeModel"
  15. >
  16. <el-card style="margin-top: -25px">
  17. <ex-table
  18. :table="table"
  19. :data="tableData"
  20. :columns="columns"
  21. :page="pageInfo"
  22. :size="size"
  23. @page-curr-change="handlePageChange"
  24. @page-size-change="handleSizeChange"
  25. @screen-reset="
  26. pageInfo.curr = 1;
  27. searchList();
  28. "
  29. @screen-submit="
  30. pageInfo.curr = 1;
  31. searchList();
  32. "
  33. >
  34. <template #type="{ scope }">
  35. <el-tag
  36. :size="tablebtnSize"
  37. v-text="
  38. (statusList.find((item) => item.id == scope.row.type) || {})
  39. .label || '--'
  40. "
  41. ></el-tag>
  42. </template>
  43. </ex-table>
  44. </el-card>
  45. </el-dialog>
  46. </template>
  47. <script>
  48. import asyncRequest from "@/apis/service/mobile/stock";
  49. import resToken from "@/mixins/resToken";
  50. import { mapGetters } from "vuex";
  51. import ExTable from "@/components/ExTableNew.vue";
  52. import mixinPage from "@/mixins/elPaginationHandle";
  53. export default {
  54. name: "stock",
  55. props: ["showModel", "id"],
  56. mixins: [mixinPage,resToken],
  57. components: {
  58. ExTable,
  59. },
  60. computed: {
  61. //组件SIZE设置
  62. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  63. },
  64. data() {
  65. return {
  66. loading: false,
  67. title: "添加可用库存",
  68. showModelThis: this.showModel,
  69. parmValue: {
  70. id: "", // 账户名
  71. page: 1, // 页码
  72. size: 15, // 每页显示条数
  73. },
  74. // 状态
  75. statusList: [
  76. { id: "1", label: "运营新增" },
  77. { id: "2", label: "运营减少" },
  78. { id: "3", label: "用户订购" },
  79. ],
  80. // 表格 - 数据
  81. tableData: [],
  82. // 表格 - 参数
  83. table: {
  84. stripe: true,
  85. border: true,
  86. // _defaultHeader_: ["setcol"]
  87. },
  88. // 表格 - 分页
  89. pageInfo: {
  90. size: 15,
  91. curr: 1,
  92. total: 0,
  93. },
  94. // 表格 - 列参数
  95. columns: [
  96. {
  97. prop: "id",
  98. label: "记录ID",
  99. width: "80",
  100. },
  101. {
  102. prop: "username",
  103. label: "账户名",
  104. },
  105. {
  106. prop: "nickname",
  107. label: "用户名",
  108. },
  109. {
  110. prop: "type",
  111. label: "变动类型",
  112. _slot_: "type",
  113. width: "90",
  114. },
  115. {
  116. prop: "run_stock",
  117. label: "变动数量",
  118. width: "90",
  119. },
  120. {
  121. prop: "before_stock",
  122. label: "变动前库存",
  123. width: "90",
  124. },
  125. {
  126. prop: "after_stock",
  127. label: "变动后库存",
  128. width: "90",
  129. },
  130. {
  131. prop: "addtime",
  132. label: "库存更新时间",
  133. sortable: true,
  134. width: "140",
  135. },
  136. ],
  137. };
  138. },
  139. watch: {
  140. showModel: function (val) {
  141. this.showModelThis = val;
  142. if (val) {
  143. this.initForm();
  144. }
  145. },
  146. showModelThis(val) {
  147. if (!val) {
  148. console.log('cancel')
  149. this.$emit("cancel");
  150. }
  151. },
  152. },
  153. methods: {
  154. closeModel() {
  155. console.log("closeModel!!");
  156. },
  157. async initForm() {
  158. this.loading = true;
  159. this.tableData= [];
  160. await this.searchList();
  161. this.loading = false;
  162. },
  163. async searchList() {
  164. this.loading = true;
  165. this.parmValue.id = this.id;
  166. const {code,data,message} = await asyncRequest.log(this.parmValue);
  167. if (code === 0 ) {
  168. const {list,count}=data
  169. this.tableData = list;
  170. this.pageInfo.total = Number(count);
  171. } else if (code >= 100 && code <= 104) {
  172. await this.logout();
  173. } else {
  174. this.tableData = [];
  175. this.pageInfo.total = 0;
  176. }
  177. this.loading = false;
  178. },
  179. },
  180. };
  181. </script>
  182. <style lang="scss" scoped>
  183. .stock {
  184. .stock-edit {
  185. width: 100%;
  186. display: flex;
  187. li {
  188. &:first-child {
  189. width: 100px;
  190. position: relative;
  191. }
  192. &:last-child {
  193. width: calc(100% - 100px);
  194. }
  195. }
  196. }
  197. }
  198. </style>