want-deliver.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <template>
  2. <el-form
  3. v-loading="loading"
  4. :model="ruleForm"
  5. :rules="rules"
  6. :size="'mini'"
  7. status-icon
  8. ref="ruleForm"
  9. label-width="95px"
  10. class="demo-ruleForm"
  11. >
  12. <el-row>
  13. <el-col :span="8">
  14. <el-form-item label="发货总数" prop="send_num" required>
  15. <el-input
  16. disabled
  17. placeholder="发货总数"
  18. v-model="ruleForm.send_num"
  19. maxlength="100"
  20. />
  21. </el-form-item>
  22. <el-form-item label="物流费用" prop="post_fee">
  23. <digital-input
  24. :values="ruleForm.post_fee"
  25. :placeholder="'物流费用'"
  26. :min="0"
  27. :disabled="type === 'view' || type === 'post_fee'"
  28. :max="100000000000"
  29. :position="'right'"
  30. :precision="2"
  31. :size="'mini'"
  32. :controls="false"
  33. :append="'元'"
  34. @reschange="number_change($event, 'post_fee')"
  35. />
  36. </el-form-item>
  37. </el-col>
  38. <el-col :span="16">
  39. <el-form-item label="备注" prop="remark">
  40. <el-input
  41. type="textarea"
  42. placeholder="备注"
  43. :autosize="{ minRows: 4, maxRows: 4 }"
  44. v-model="ruleForm.remark"
  45. maxlength="100"
  46. />
  47. </el-form-item>
  48. </el-col>
  49. <el-col :span="24">
  50. <el-row>
  51. <el-col :span="8">
  52. <el-form-item label="物流公司" prop="post_name">
  53. <search-express
  54. :value="ruleForm.post_name"
  55. :placeholder="'物流公司'"
  56. :names="''"
  57. :size="'mini'"
  58. :is-detail="false"
  59. @searchChange="handleCompany"
  60. /> </el-form-item
  61. ></el-col>
  62. <el-col
  63. :span="8"
  64. v-for="(domain, index) in ruleForm.post_code"
  65. :key="domain.key"
  66. >
  67. <el-form-item
  68. :label="'物流单号' + (index + 1)"
  69. :key="domain.key"
  70. :prop="'post_code.' + index + '.value'"
  71. :rules="const_post"
  72. >
  73. <el-input placeholder="物流单号" v-model="domain.value" maxlength="20">
  74. <el-button
  75. slot="append"
  76. icon="el-icon-delete"
  77. @click.prevent="removeDomain(index)"
  78. ></el-button>
  79. </el-input>
  80. </el-form-item>
  81. </el-col>
  82. </el-row>
  83. </el-col>
  84. <el-col :span="24" style="text-align: right; padding: 0 0 16px 0">
  85. <el-button
  86. type="warning"
  87. :size="'mini'"
  88. @click="addDomain"
  89. icon="el-icon-circle-plus-outline"
  90. >添加快递单号</el-button
  91. >
  92. <el-button type="primary" :size="'mini'" @click="submitForm" icon="el-icon-search"
  93. >保 存
  94. </el-button>
  95. </el-col>
  96. </el-row>
  97. </el-form>
  98. </template>
  99. <script>
  100. import asyncRequest from "@/apis/service/sellOut/sellOutOrder";
  101. import resToken from "@/mixins/resToken";
  102. import { isnumber, isAlphanumeric } from "@/utils/validate";
  103. // import ladderPriceVue from "@/views/goodStore/goodsCost/ladderPrice.vue";
  104. export default {
  105. name: "wsmInOrderAdd",
  106. props: ["id", "sitem", "newTime"],
  107. mixins: [resToken],
  108. data() {
  109. const validate_num = (rule, value, callback) => {
  110. const { required } = rule;
  111. if (required && value === "") {
  112. callback(new Error("不能为空!"));
  113. } else {
  114. callback();
  115. }
  116. };
  117. const validateCode = (rule, value, callback) => {
  118. const { required } = rule;
  119. const l = value.length;
  120. if (required) {
  121. if (value === "") {
  122. callback(new Error("物流单号不能为空!"));
  123. } else if (value === "0") {
  124. callback();
  125. } else if (l < 10 || l > 20) {
  126. callback(new Error("仅支持0;纯数字或字母数字组合(10~20位)!"));
  127. } else if (isnumber(value)) {
  128. callback();
  129. } else if (!isAlphanumeric(value)) {
  130. console.log(!isAlphanumeric(value));
  131. callback(new Error("仅支持0;纯数字或字母数字组合(10~20位)!"));
  132. } else {
  133. callback();
  134. }
  135. } else {
  136. callback();
  137. }
  138. };
  139. return {
  140. loading: true,
  141. const_post: {
  142. required: true,
  143. validator: validateCode,
  144. trigger: "blur",
  145. },
  146. ruleForm: {
  147. outCode: "",
  148. send_num: "",
  149. post_name: [],
  150. post_code: [
  151. {
  152. value: "",
  153. key: Date.now(),
  154. },
  155. ],
  156. post_fee: "",
  157. remark: "",
  158. // sendtime: "",
  159. },
  160. rules: {
  161. post_name: {
  162. type: "array",
  163. required: true,
  164. trigger: "change",
  165. message: "请输入物流公司",
  166. },
  167. post_code: {
  168. required: true,
  169. validator: validateCode,
  170. trigger: "blur",
  171. },
  172. post_fee: {
  173. required: true,
  174. validator: validate_num,
  175. trigger: "blur",
  176. },
  177. remark: {
  178. required: true,
  179. validator: validate_num,
  180. trigger: "blur",
  181. },
  182. },
  183. };
  184. },
  185. watch: {
  186. newTime: function (val) {
  187. if (val) {
  188. this.initForm();
  189. }
  190. },
  191. },
  192. mounted() {
  193. this.initForm();
  194. },
  195. methods: {
  196. async initForm() {
  197. this.loading = true;
  198. await this.resetForm();
  199. this.loading = false;
  200. },
  201. removeDomain(index) {
  202. if (this.ruleForm.post_code.length === 1) {
  203. this.$message.warning("至少填写一个快递单号!");
  204. return;
  205. }
  206. if (index !== -1) {
  207. this.ruleForm.post_code.splice(index, 1);
  208. }
  209. },
  210. addDomain() {
  211. this.ruleForm.post_code.push({
  212. value: "",
  213. key: Date.now(),
  214. });
  215. },
  216. //初始化表单
  217. async resetForm() {
  218. await this.$nextTick(() => {
  219. if (this.$refs.ruleForm) {
  220. this.$refs.ruleForm.resetFields();
  221. this.$refs.ruleForm.clearValidate();
  222. const {
  223. outCode,
  224. send_num,
  225. post_code,
  226. post_name,
  227. post_fee,
  228. remark,
  229. } = this.sitem;
  230. this.ruleForm = {
  231. outCode: outCode || "",
  232. send_num: send_num || "",
  233. post_name: post_name ? [post_name] : [],
  234. post_code: [
  235. {
  236. value: post_code || "",
  237. key: Date.now(),
  238. },
  239. ],
  240. post_fee: post_fee || "",
  241. remark: remark || "",
  242. // sendtime: "",
  243. };
  244. }
  245. });
  246. },
  247. // 保存更改
  248. async submitForm() {
  249. await this.$refs.ruleForm.validate(async (valid) => {
  250. if (valid) {
  251. if (this.loading) {
  252. return;
  253. }
  254. this.loading = true;
  255. const { post_name, post_code } = this.ruleForm;
  256. const postName = post_name.toString();
  257. let post_list = "",
  258. isok = true,
  259. is_has = 0;
  260. post_code.forEach((si, sii) => {
  261. post_list += `${sii === 0 ? "" : ","}${si.value}`;
  262. if (si.value === "0") {
  263. is_has++;
  264. if (postName !== "其他") {
  265. isok = false;
  266. }
  267. }
  268. });
  269. if (!isok) {
  270. this.$message.warning("快递单号填零,物流公司必须选择其他!");
  271. this.loading = false;
  272. return;
  273. }
  274. if (is_has > 0 && post_code.length > 2) {
  275. this.$message.warning("多物流单号不允许填零!");
  276. this.loading = false;
  277. return;
  278. }
  279. let model = JSON.parse(JSON.stringify(this.ruleForm));
  280. model.post_name = postName;
  281. model.post_code = post_list;
  282. delete model["send_num"];
  283. delete model["page"];
  284. console.log(model);
  285. const { code, message } = await asyncRequest.saleoutsend(model);
  286. this.loading = false;
  287. if (code === 0) {
  288. this.$notify.success({
  289. title: "添加成功",
  290. message: "",
  291. });
  292. this.$emit("refresh");
  293. } else if (code >= 100 && code <= 104) {
  294. await this.logout();
  295. } else {
  296. this.$message.warning(message);
  297. }
  298. } else {
  299. console.log("error submit!!");
  300. return false;
  301. }
  302. });
  303. },
  304. handleCompany(e) {
  305. const { code, id, label } = e;
  306. this.ruleForm.post_name = label ? [label] : [];
  307. this.$refs.ruleForm.validateField("post_name");
  308. },
  309. number_change(e, key) {
  310. this.ruleForm[key] = e + "" || "0";
  311. this.$refs.ruleForm.validateField(key);
  312. },
  313. },
  314. };
  315. </script>
  316. <style lang="scss" scoped>
  317. .account {
  318. }
  319. </style>