addAddressDialog.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <div>
  3. <el-dialog :lock-scroll="false"
  4. title="Add address"
  5. :visible.sync="dialogFormVisible"
  6. width="700px"
  7. >
  8. <el-form :model="data" :rules="rules" ref="ruleForm">
  9. <el-form-item prop="country">
  10. <label>Country/Region</label>
  11. <el-input v-model="data.country"></el-input>
  12. <!-- <br />
  13. <el-cascader
  14. v-model="form.country"
  15. :options="options"
  16. @change="handleChange"
  17. ></el-cascader> -->
  18. </el-form-item>
  19. <el-form-item prop="name">
  20. <label>Full name</label>
  21. <el-input v-model="data.name"></el-input>
  22. </el-form-item>
  23. <el-form-item prop="phone">
  24. <label>Phone number</label>
  25. <el-input v-model="data.phone"></el-input>
  26. </el-form-item>
  27. <el-form-item prop="address">
  28. <label>Address</label>
  29. <el-input
  30. v-model="data.address"
  31. placeholder="Street address,P.O.box,company name,c/o"
  32. ></el-input>
  33. <!-- <el-input v-model="form.address2" placeholder="Apt,Suite,Unit,Building,Floor"></el-input> -->
  34. </el-form-item>
  35. <el-form-item prop="post_code">
  36. <label>Postcode</label>
  37. <el-input v-model="data.post_code"></el-input>
  38. </el-form-item>
  39. <el-form-item prop="city">
  40. <label>City/Suburb</label>
  41. <el-input
  42. v-model="data.city"
  43. placeholder="Choose city by suburb"
  44. ></el-input>
  45. <!-- <el-select
  46. v-model="data.city"
  47. placeholder="Choose city by suburb"
  48. style="width: 100%"
  49. >
  50. <el-option
  51. v-for="item in cityList"
  52. :key="item.id"
  53. :label="item.name"
  54. :value="item.name"
  55. >
  56. </el-option>
  57. </el-select> -->
  58. </el-form-item>
  59. <el-form-item prop="state">
  60. <label>State/Territory</label>
  61. <el-input
  62. v-model="data.state"
  63. placeholder="Choose state by territory"
  64. ></el-input>
  65. <!-- <el-select
  66. v-model="data.state"
  67. placeholder="Choose state by territory"
  68. style="width: 100%"
  69. >
  70. <el-option
  71. v-for="item in stateList"
  72. :key="item.id"
  73. :label="item.name"
  74. :value="item.name"
  75. >
  76. </el-option>
  77. </el-select> -->
  78. </el-form-item>
  79. <el-form-item prop="is_default">
  80. <el-checkbox v-model="data.is_default">
  81. Make this my default address
  82. </el-checkbox>
  83. </el-form-item>
  84. <el-form-item>
  85. <label>Delivery instruction(optional)</label>
  86. <div style="color: #86d4e9; line-height: 14px">
  87. <i class="el-icon-arrow-down" style="color: #a2a2a2"></i>
  88. And preferences,notes,access codes and more
  89. </div>
  90. </el-form-item>
  91. </el-form>
  92. <div slot="footer" class="dialog-footer">
  93. <el-button @click="submit('ruleForm')">Add address</el-button>
  94. </div>
  95. </el-dialog>
  96. </div>
  97. </template>
  98. <script>
  99. export default {
  100. props: {
  101. dialogVisible: {
  102. type: Boolean,
  103. default: false,
  104. },
  105. componentVisible: {
  106. type: Number,
  107. default: 2,
  108. },
  109. data: {
  110. type: Object,
  111. default: () => {
  112. return {
  113. country: "Australia",
  114. name: "",
  115. phone: "",
  116. address: "",
  117. post_code: "",
  118. city: "",
  119. state: "",
  120. is_default: null,
  121. };
  122. },
  123. },
  124. },
  125. data() {
  126. return {
  127. value: [],
  128. options: [],
  129. rules: {
  130. country: [
  131. {
  132. required: true,
  133. message: "Please enter your country",
  134. trigger: "blur",
  135. },
  136. ],
  137. name: [
  138. {
  139. required: true,
  140. message: "Please enter your name",
  141. trigger: "blur",
  142. },
  143. ],
  144. phone: [
  145. {
  146. required: true,
  147. message: "Please enter your phone number",
  148. trigger: "blur",
  149. },
  150. ],
  151. address: [
  152. {
  153. required: true,
  154. message: "Please enter your address",
  155. trigger: "blur",
  156. },
  157. ],
  158. post_code: [
  159. {
  160. required: true,
  161. message: "Please enter post_code",
  162. trigger: "blur",
  163. },
  164. ],
  165. city: [
  166. { required: true, message: "Please enter city", trigger: "blur" },
  167. ],
  168. state: [
  169. { required: true, message: "Please enter state", trigger: "blur" },
  170. ],
  171. },
  172. cityList: [
  173. { id: 1, name: "Sydney" },
  174. { id: 2, name: "Adelaide Mail Centre" },
  175. { id: 3, name: "Melbourne" },
  176. { id: 4, name: "Eastern Suburbs Mc" },
  177. { id: 5, name: "Hobart" },
  178. { id: 6, name: "Perth" },
  179. { id: 7, name: "Launceston" },
  180. { id: 8, name: "Brisbane" },
  181. { id: 9, name: "Northern Suburbs Mc" },
  182. { id: 10, name: "Strawberry Hills" },
  183. { id: 11, name: "Springfield" },
  184. { id: 12, name: "Waterloo" },
  185. { id: 13, name: "Richmond" },
  186. { id: 14, name: "Haymarket" },
  187. { id: 15, name: "Red Hill" },
  188. { id: 16, name: "Brisbane GPO Boxes" },
  189. { id: 17, name: "Mayfield" },
  190. { id: 18, name: "Australia Square" },
  191. { id: 19, name: "Woodstock" },
  192. { id: 20, name: "Sydney South" },
  193. { id: 21, name: "The Gap" },
  194. { id: 22, name: "Kingston" },
  195. { id: 23, name: "Kensington" },
  196. { id: 24, name: "Darlington" },
  197. ],
  198. stateList: [
  199. { id: 1, name: "Australian Capital Territory" },
  200. { id: 2, name: "New South Wales" },
  201. { id: 3, name: "Northern Territory" },
  202. { id: 4, name: "Queensland" },
  203. { id: 5, name: "South Australia" },
  204. { id: 6, name: "Tasmania" },
  205. { id: 7, name: "Victoria" },
  206. { id: 8, name: "Western Australia" },
  207. ],
  208. };
  209. },
  210. computed: {
  211. dialogFormVisible: {
  212. get: function () {
  213. return this.dialogVisible;
  214. },
  215. set: function (val) {
  216. this.$emit("update:dialogVisible", val);
  217. },
  218. },
  219. },
  220. methods: {
  221. submit(ruleForm) {
  222. this.$refs[ruleForm].validate((valid) => {
  223. if (valid) {
  224. if (this.componentVisible == 2) {
  225. this.addAddress();
  226. if (this.$route.fullPath.includes('product-builder')) return
  227. this.$router.push({path:'/home/myDetail',query:{type:"third"}})
  228. } else if (this.componentVisible == 3) {
  229. this.editAddress();
  230. this.$router.push({path:'/home/myDetail',query:{type:"third"}})
  231. }
  232. } else {
  233. console.log("error submit!!");
  234. return false;
  235. }
  236. });
  237. },
  238. addAddress() {
  239. this.$axios
  240. .post("/api/address/add", this.data)
  241. .then((res) => {
  242. if (res.code === 1) {
  243. this.$notify({
  244. title: "success",
  245. message: "Submitted successfully",
  246. type: "success",
  247. duration: 3000,
  248. });
  249. this.dialogFormVisible = false;
  250. this.update();
  251. }
  252. })
  253. .catch((error) => {
  254. this.$message.error(error.response.data.msg);
  255. });
  256. },
  257. editAddress() {
  258. this.$axios
  259. .post("/api/address/edit", this.data)
  260. .then((res) => {
  261. if (res.code === 1) {
  262. this.$notify({
  263. title: "success",
  264. message: "Submitted successfully",
  265. type: "success",
  266. duration: 3000,
  267. });
  268. this.dialogFormVisible = false;
  269. this.update();
  270. }
  271. })
  272. .catch((error) => {
  273. this.$message.error(error.response.data.msg);
  274. });
  275. },
  276. update() {
  277. this.$emit("update", true);
  278. },
  279. },
  280. };
  281. </script>
  282. <style lang="scss" scoped>
  283. :deep(.el-dialog) {
  284. .el-dialog__header .el-dialog__title {
  285. font-size: 24px;
  286. font-weight: bold;
  287. }
  288. .el-dialog__body {
  289. padding: 0 20px 20px;
  290. .el-form-item {
  291. margin-bottom: 0;
  292. .el-form-item__content {
  293. label {
  294. font-weight: 600;
  295. }
  296. .el-cascader {
  297. width: 100%;
  298. }
  299. .el-input {
  300. margin-bottom: 5px;
  301. }
  302. .el-form-item__error {
  303. top: 90%;
  304. }
  305. }
  306. }
  307. }
  308. .el-dialog__footer .dialog-footer {
  309. display: flex;
  310. justify-content: flex-start;
  311. .el-button {
  312. background: #ffd814;
  313. }
  314. }
  315. }
  316. </style>