express.vue 7.1 KB

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