work-diff-table.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <template>
  2. <div class="work-diff-table">
  3. <el-table
  4. ref="addrForm"
  5. :data="tableData"
  6. border
  7. :size="'mini'"
  8. style="width: 100%"
  9. row-key="key"
  10. >
  11. <el-table-column
  12. show-overflow-tooltip
  13. prop="diff_weight"
  14. label="工差克重(g)"
  15. />
  16. <el-table-column
  17. show-overflow-tooltip
  18. prop="diff_price"
  19. label="工差金额"
  20. />
  21. <el-table-column show-overflow-tooltip prop="status" label="状态">
  22. <template slot-scope="scope">
  23. <el-tag
  24. :size="tablebtnSize"
  25. :type="scope.row.status == '0' ? 'warning' : ''"
  26. v-text="
  27. (
  28. diffStatusOptions.find((item) => item.id == scope.row.status) ||
  29. {}
  30. ).label || '--'
  31. "
  32. ></el-tag>
  33. </template>
  34. </el-table-column>
  35. <el-table-column show-overflow-tooltip prop="apply_name" label="创建人" />
  36. <el-table-column show-overflow-tooltip prop="addtime" label="创建时间" />
  37. <el-table-column fixed="right" width="50">
  38. <template slot="header" slot-scope="scope">
  39. <span>操作</span>
  40. </template>
  41. <template slot-scope="scope">
  42. <el-tooltip
  43. effect="dark"
  44. content="查看"
  45. v-if="!scope.row.edit"
  46. placement="top"
  47. >
  48. <i
  49. class="el-icon-view tb-icon"
  50. @click="
  51. routeGoto('purchaseDiffOrderDetail', {
  52. id: scope.row.id,
  53. })
  54. "
  55. ></i>
  56. </el-tooltip>
  57. </template>
  58. </el-table-column>
  59. </el-table>
  60. </div>
  61. </template>
  62. <script>
  63. import resToken from "@/mixins/resToken";
  64. // import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
  65. // import outOrderAddModel from "./out-order-add-model";
  66. // import addEdit from "@/views/sellOut/sellAfterApply/components/addEdit.vue";
  67. import { mapGetters } from "vuex";
  68. export default {
  69. name: "workDiffTable",
  70. mixins: [resToken],
  71. props: ["newTime", "id", "sitem"],
  72. // components: { addEdit, outOrderAddModel },
  73. watch: {
  74. newTime: function (val) {
  75. if (val) {
  76. this.initForm();
  77. }
  78. },
  79. },
  80. computed: {
  81. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  82. },
  83. data() {
  84. return {
  85. orderCode: "",
  86. outCode: "",
  87. // 状态
  88. statusOptions: [
  89. { id: "1", label: "已出库" },
  90. { id: "2", label: "验收中" },
  91. { id: "3", label: "验收完成" },
  92. ],
  93. showGoodsModel: false,
  94. stock_code: "",
  95. tableData: [],
  96. loading: false,
  97. diffStatusOptions: [
  98. { id: "1", label: "待业务部门审核" },
  99. { id: "2", label: "工差单审核完成" },
  100. ],
  101. queryId: "",
  102. status: "",
  103. showModel: null,
  104. modelId: "",
  105. modelItem: null,
  106. s_sitem: null,
  107. };
  108. },
  109. mounted() {
  110. // console.log(this.sitem);
  111. // console.log(this.sitem.bum);
  112. this.initForm();
  113. },
  114. methods: {
  115. refresh() {
  116. this.$emit("refresh");
  117. },
  118. async initForm() {
  119. // console.log("12");
  120. this.status = "";
  121. this.queryId = this.$route.query.id;
  122. // this.rulesThis = this.rules;
  123. this.resetForm();
  124. },
  125. getNewTime() {
  126. this.newTime = new Date().valueOf();
  127. },
  128. async resetForm() {
  129. // 重置
  130. await this.$nextTick(() => {
  131. this.tableData = [];
  132. const { purcheasediff } = this.sitem;
  133. console.log(purcheasediff);
  134. if (purcheasediff) {
  135. this.tableData.push(purcheasediff);
  136. }
  137. });
  138. },
  139. editRow(index) {
  140. let findex = this.stockForm.good_stock.findIndex((v) => v.edit === true);
  141. if (findex !== -1) {
  142. this.$message.warning("当前已有发货仓库信息在编辑,请保存后再试!");
  143. return;
  144. } else {
  145. this.stockForm.good_stock[index].edit = true;
  146. }
  147. },
  148. checkStockRow(index) {
  149. let total = parseInt(this.stockForm.good_stock[index].usable_stock),
  150. num = parseInt(this.stockForm.good_stock[index].num);
  151. if (total === 0) {
  152. this.$message.warning("该仓库已无该商品库存!不能销售!");
  153. return;
  154. } else {
  155. if (num > total) {
  156. this.$message.warning("销售数量不能大于可用库存!");
  157. return;
  158. } else {
  159. this.stockForm.good_stock[index].edit = false;
  160. }
  161. }
  162. },
  163. openHouseModal() {
  164. this.modelId = "add";
  165. this.modelItem = this.sitem;
  166. this.modelShowModel = true;
  167. },
  168. //省市区保存某一行
  169. checkRow(rowIndex) {
  170. this.$refs.addrForm.validate((valid) => {
  171. if (valid) {
  172. this.tableData[rowIndex].edit = false;
  173. } else {
  174. console.log("error submit!!");
  175. return false;
  176. }
  177. });
  178. },
  179. // 省市区删除行操作
  180. deleteRow(index, rows) {
  181. rows.splice(index, 1);
  182. },
  183. // async submitForm() {
  184. // await this.$refs.ruleForm.validate(async (valid) => {
  185. // if (valid) {
  186. // if (this.loading) {
  187. // return;
  188. // }
  189. // this.loading = true;
  190. // const { order_addr } = JSON.parse(JSON.stringify(this.addrForm));
  191. // let model = {
  192. // id: this.queryId,
  193. // order_addr: [],
  194. // };
  195. // order_addr.forEach((v2) => {
  196. // let model2 = {
  197. // post_fee: v2.post_fee,
  198. // id: v2.id,
  199. // };
  200. // model.order_addr.push(model2);
  201. // });
  202. // let res = await asyncRequest.salefee(model);
  203. // this.loading = false;
  204. // if (res && res.code === 0) {
  205. // this.$notify.success({
  206. // title: "反馈物流费用成功!",
  207. // message: "",
  208. // });
  209. // this.showModelThis = false;
  210. // // 刷新
  211. // this.$emit("refresh");
  212. // } else if (res && res.code >= 100 && res.code <= 104) {
  213. // await this.logout();
  214. // } else {
  215. // this.$message.warning(res.message);
  216. // }
  217. // } else {
  218. // console.log("error submit!!");
  219. // return false;
  220. // }
  221. // });
  222. // },
  223. openModal(code, sitem, outcode) {
  224. console.log(sitem);
  225. this.s_sitem = sitem;
  226. this.modelId = code;
  227. this.showModel = true;
  228. },
  229. },
  230. };
  231. </script>
  232. <style lang="scss" scoped>
  233. </style>