logisticsForm.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <el-form
  3. v-loading="loading"
  4. :model="ruleForm"
  5. :rules="rules"
  6. status-icon
  7. ref="ruleForm"
  8. label-width="100px"
  9. class="demo-ruleForm"
  10. >
  11. <el-row>
  12. <el-col :span="12">
  13. <el-form-item label="发货总数" prop="send_num" required>
  14. <el-input
  15. disabled
  16. placeholder="物流单号"
  17. v-model="ruleForm.send_num"
  18. maxlength="100"
  19. />
  20. </el-form-item>
  21. </el-col>
  22. <el-col :span="12">
  23. <el-form-item label="物流公司" prop="post_name">
  24. <search-express
  25. :value="ruleForm.post_name"
  26. :placeholder="'物流公司'"
  27. :names="''"
  28. :is-detail="false"
  29. @searchChange="handleCompany"
  30. />
  31. </el-form-item>
  32. </el-col>
  33. <el-col :span="12">
  34. <el-form-item label="物流单号" prop="post_code">
  35. <el-input
  36. placeholder="物流单号"
  37. v-model="ruleForm.post_code"
  38. maxlength="100"
  39. />
  40. </el-form-item>
  41. </el-col>
  42. <el-col :span="12">
  43. <el-form-item label="物流费用" prop="post_fee">
  44. <el-input
  45. placeholder="物流费用"
  46. v-model="ruleForm.post_fee"
  47. maxlength="100"
  48. >
  49. <template slot="append">元</template>
  50. </el-input>
  51. </el-form-item>
  52. </el-col>
  53. <el-col
  54. :span="24"
  55. style="text-align: right"
  56. v-if="powers.some((item) => item == '045')"
  57. >
  58. <el-button type="primary" :size="'mini'" @click="submitForm">保 存 </el-button>
  59. </el-col>
  60. </el-row>
  61. </el-form>
  62. </template>
  63. <script>
  64. import asyncRequest from "@/apis/service/sellOut/zxoutOrder";
  65. import resToken from "@/mixins/resToken";
  66. import { isnumber, isnumber2, isAlphanumeric } from "@/utils/validate";
  67. export default {
  68. name: "wsmInOrderAdd",
  69. props: ["id", "sitem", "newTime"],
  70. mixins: [resToken],
  71. computed: {
  72. powers() {
  73. let tran =
  74. this.$store.getters.btnList.find(
  75. (item) => item.menu_route == "zxoutOrderDetail"
  76. ) || {};
  77. if (tran && tran.action && tran.action.length > 0) {
  78. return tran.action;
  79. } else {
  80. return [];
  81. }
  82. },
  83. },
  84. data() {
  85. const validatePrice = (rule, value, callback) => {
  86. if (value === "") {
  87. callback(new Error("不能为空!"));
  88. } else {
  89. if (isnumber(value)) {
  90. callback();
  91. } else if (isnumber2(value)) {
  92. callback();
  93. } else {
  94. callback(new Error("仅支持整数或两位小数!"));
  95. }
  96. }
  97. };
  98. const validateCode = (rule, value, callback) => {
  99. if (value === "") {
  100. callback(new Error("不能为空!"));
  101. } else {
  102. if (!isAlphanumeric(value)) {
  103. callback(new Error("仅支持字母和数字!"));
  104. } else {
  105. callback();
  106. }
  107. }
  108. };
  109. return {
  110. loading: true,
  111. ruleForm: {
  112. outCode: "",
  113. send_num: "",
  114. post_name: [],
  115. post_code: "",
  116. post_fee: "",
  117. sendtime: "",
  118. },
  119. rules: {
  120. post_name: {
  121. type: "array",
  122. required: true,
  123. trigger: "change",
  124. message: "请输入物流公司",
  125. },
  126. post_code: {
  127. required: true,
  128. validator: validateCode,
  129. trigger: "blur",
  130. },
  131. post_fee: {
  132. required: true,
  133. validator: validatePrice,
  134. trigger: "blur",
  135. },
  136. },
  137. };
  138. },
  139. watch: {
  140. newTime: function (val) {
  141. if (val) {
  142. this.initForm();
  143. }
  144. },
  145. },
  146. mounted() {
  147. this.initForm();
  148. },
  149. methods: {
  150. async initForm() {
  151. this.loading = true;
  152. await this.resetForm();
  153. this.loading = false;
  154. },
  155. //初始化表单
  156. async resetForm() {
  157. await this.$nextTick(() => {
  158. if (this.$refs.ruleForm) {
  159. this.$refs.ruleForm.resetFields();
  160. this.$refs.ruleForm.clearValidate();
  161. const { outCode, send_num, post_code, post_name, post_fee } =
  162. this.sitem;
  163. this.ruleForm = {
  164. outCode: outCode || "",
  165. send_num: send_num || "",
  166. post_name: post_name ? [post_name] : [],
  167. post_code: post_code || "",
  168. post_fee: post_fee || "",
  169. sendtime: "",
  170. };
  171. }
  172. });
  173. },
  174. // 保存更改
  175. async submitForm() {
  176. await this.$refs.ruleForm.validate(async (valid) => {
  177. if (valid) {
  178. this.loading = true;
  179. let model = JSON.parse(JSON.stringify(this.ruleForm));
  180. model.post_name = model.post_name.toString();
  181. delete model["send_num"];
  182. delete model["page"];
  183. const res = await asyncRequest.salezxout(model);
  184. this.loading = false;
  185. if (res && res.code === 0) {
  186. this.$notify.success({
  187. title: "添加成功",
  188. message: "",
  189. });
  190. this.$emit("refresh"); //抛出事件给详情页。
  191. } else if (res && res.code >= 100 && res.code <= 104) {
  192. await this.logout();
  193. } else {
  194. this.$message.warning(res.message);
  195. }
  196. } else {
  197. console.log("error submit!!");
  198. return false;
  199. }
  200. });
  201. },
  202. handleCompany(e) {
  203. console.log(e);
  204. if (e && e.code) {
  205. this.ruleForm.post_name = [e.shortName];
  206. this.ruleForm.page = 1;
  207. }
  208. console.log(this.ruleForm.express_company);
  209. this.$refs.ruleForm.validateField("post_name");
  210. },
  211. },
  212. };
  213. </script>
  214. <style lang="scss" scoped>
  215. .account {
  216. }
  217. </style>