delivery.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. <template>
  2. <div class="page" :class="{ 'page--iphoneX': iphoneX }">
  3. <div class="form-card">
  4. <section class="form-item">
  5. <div class="label bold">到店自提设置</div>
  6. <div class="box"></div>
  7. </section>
  8. <section class="form-item">
  9. <div class="label">到店自提:</div>
  10. <div class="box">
  11. <switch
  12. :value="true"
  13. :checked="form.deliveryMethod.storePickUp"
  14. @change="switchChange($event, 'storePickUp')"
  15. ></switch>
  16. </div>
  17. </section>
  18. <section class="form-item" v-if="form.deliveryMethod.storePickUp">
  19. <div class="label">最低自提下单金额:</div>
  20. <div class="box">
  21. <input type="number" v-model="form.pickupMinAmount" />
  22. </div>
  23. <div class="tool">元</div>
  24. </section>
  25. <section class="form-item">
  26. <div class="label bold">送货上门设置</div>
  27. <div class="box"></div>
  28. </section>
  29. <section class="form-item">
  30. <div class="label">送货上门:</div>
  31. <div class="box">
  32. <switch
  33. :value="true"
  34. :checked="form.deliveryMethod.homeDelivery"
  35. @change="switchChange($event, 'homeDelivery')"
  36. ></switch>
  37. </div>
  38. </section>
  39. <block v-if="form.deliveryMethod.homeDelivery">
  40. <section class="form-item">
  41. <div class="label">
  42. <!-- <span class="required">*</span> -->
  43. 最低起送金额:
  44. </div>
  45. <div class="box">
  46. <input
  47. type="number"
  48. v-model="form.deliveryMinAmount"
  49. />
  50. </div>
  51. <div class="tool">元</div>
  52. </section>
  53. <section class="form-item">
  54. <div class="label">
  55. <!-- <span class="required">*</span> -->
  56. 最远配送距离:
  57. </div>
  58. <div class="box">
  59. <input
  60. type="number"
  61. v-model="form.deliveryDistance"
  62. placeholder="距离门店步行距离"
  63. />
  64. </div>
  65. <div class="tool">公里</div>
  66. </section>
  67. <section class="form-item">
  68. <div class="label">
  69. <!-- <span class="required">*</span> -->
  70. 配送费:
  71. </div>
  72. <div class="box">
  73. <input
  74. type="digit"
  75. v-model="form.deliveryFee"
  76. placeholder="按单收取配送费"
  77. />
  78. </div>
  79. <div class="tool">元</div>
  80. </section>
  81. <section class="form-item">
  82. <div class="label">
  83. <!-- <span class="required">*</span> -->
  84. 打包费:
  85. </div>
  86. <div class="box">
  87. <input
  88. type="digit"
  89. v-model="form.packageFee"
  90. placeholder="按单收取打包费"
  91. />
  92. </div>
  93. <div class="tool">元</div>
  94. </section>
  95. </block>
  96. </div>
  97. <div class="btns">
  98. <div class="btn" @click="saveOk">保存</div>
  99. </div>
  100. </div>
  101. </template>
  102. <script>
  103. import MyImage from "../../../components/image/index";
  104. export default {
  105. name: "",
  106. components: { MyImage },
  107. // 数据
  108. data() {
  109. return {
  110. form: {
  111. deliveryMethod:{
  112. storePickUp:false, // 自提
  113. homeDelivery:false // 上门
  114. },
  115. pickupMinAmount:0, // 最低自提金额
  116. deliveryMinAmount: 0, // 最低起送金额,
  117. deliveryDistance: 0, // 最远配送距离
  118. deliveryFee: 0, // 配送费
  119. packageFee: 0, // 打包费
  120. },
  121. submitLoading: false,
  122. };
  123. },
  124. onLoad(opts) {
  125. this.getData();
  126. },
  127. onShow() {},
  128. // 函数
  129. methods: {
  130. getData() {
  131. this.api.get("/Shop/GetDeliveryConfig", {}, { pass: true }).then((res) => {
  132. if (res.success && res.data) {
  133. this.form.deliveryMethod = res.data.deliveryMethod;
  134. this.form.pickupMinAmount = res.data.pickupMinAmount/100;
  135. this.form.deliveryMinAmount = res.data.deliveryMinAmount/100;
  136. this.form.deliveryDistance = res.data.deliveryDistance/1000;
  137. this.form.deliveryFee = res.data.deliveryFee/100;
  138. this.form.packageFee = res.data.packageFee/100;
  139. this.form = { ...this.form };
  140. }
  141. });
  142. },
  143. switchChange(e, name) {
  144. let v = e.detail.value;
  145. this.form.deliveryMethod[name] = v ? true : false;
  146. this.form = { ...this.form };
  147. },
  148. saveOk() {
  149. if (this.submitLoading) {
  150. return;
  151. }
  152. if (!this.form.deliveryMethod.storePickUp && !this.form.deliveryMethod.homeDelivery){
  153. return this.fn.showToast("至少选择一种方式");
  154. }
  155. this.submitLoading = true;
  156. uni.showLoading({
  157. title: "提交中...",
  158. });
  159. let data = { ...this.form };
  160. if(data.pickupMinAmount){
  161. data.pickupMinAmount*=100;
  162. data.pickupMinAmount = parseInt(data.pickupMinAmount);
  163. }
  164. if(data.deliveryMinAmount){
  165. data.deliveryMinAmount*=100;
  166. data.deliveryMinAmount = parseInt(data.deliveryMinAmount);
  167. }
  168. if(data.deliveryDistance){
  169. data.deliveryDistance*=1000;
  170. data.deliveryDistance = parseInt(data.deliveryDistance);
  171. }
  172. if(data.deliveryFee){
  173. data.deliveryFee*=100;
  174. data.deliveryFee = parseInt(data.deliveryFee);
  175. }
  176. if(data.packageFee){
  177. data.packageFee*=100;
  178. data.packageFee = parseInt(data.packageFee);
  179. }
  180. this.api
  181. .post("/Shop/SetDeliveryConfig", data, { pass: true })
  182. .then((res) => {
  183. this.submitLoading = false;
  184. uni.hideLoading();
  185. if (res.success) {
  186. this.fn.showToast("设置成功");
  187. this.router.back();
  188. } else {
  189. this.fn.showModal({
  190. title: "设置错误",
  191. content: res.message,
  192. showCancel: false,
  193. });
  194. }
  195. });
  196. },
  197. },
  198. // 数据计算
  199. computed: {
  200. user() {
  201. return this.$store.state.user.user;
  202. },
  203. },
  204. // 数据监听
  205. watch: {},
  206. };
  207. </script>
  208. <style lang="scss" scoped>
  209. .page {
  210. padding-bottom: px(120);
  211. min-height: 100vh;
  212. background-color: #fff;
  213. }
  214. .page--iphoneX {
  215. padding-bottom: px(150);
  216. .btn {
  217. padding-bottom: px(30);
  218. background-color: rgb(0, 188, 38);
  219. }
  220. }
  221. .form-card {
  222. background-color: #fff;
  223. padding: 0 px(30);
  224. & ~ .form-card {
  225. margin-top: px(25);
  226. }
  227. .head {
  228. display: flex;
  229. align-items: center;
  230. justify-content: space-between;
  231. height: px(140);
  232. background-color: #fbfbfb;
  233. border-bottom: 1px solid #f1f1f1;
  234. border-top: 1px solid #f1f1f1;
  235. font-size: px(44);
  236. }
  237. }
  238. .form-item {
  239. display: flex;
  240. min-height: px(140);
  241. padding: px(30) 0;
  242. box-sizing: border-box;
  243. align-items: center;
  244. font-size: px(44);
  245. border-top: 1px solid #f1f1f1;
  246. &.dis-item {
  247. color: #999;
  248. background: #f9f9f9;
  249. }
  250. .label {
  251. // width: px(400);
  252. flex-shrink: 0;
  253. color: #666;
  254. margin-right: px(20);
  255. }
  256. .box {
  257. width: 100%;
  258. position: relative;
  259. input {
  260. width: 100%;
  261. }
  262. }
  263. .tool {
  264. flex-shrink: 0;
  265. color: #999;
  266. margin-left: px(10);
  267. }
  268. textarea,
  269. input {
  270. max-width: 100%;
  271. width: 100%;
  272. }
  273. }
  274. .list {
  275. // min-height: 100vh;
  276. // background-color: #fff;
  277. // border-bottom: 1px solid #f1f1f1;
  278. li {
  279. padding: px(0) px(35);
  280. height: px(140);
  281. line-height: px(140);
  282. font-size: px(44);
  283. border-top: 1px solid #f1f1f1;
  284. display: flex;
  285. justify-content: space-between;
  286. align-items: center;
  287. }
  288. .tools {
  289. display: flex;
  290. align-items: center;
  291. flex-shrink: 0;
  292. span {
  293. display: inline-block;
  294. border: 1px solid #f1f1f1;
  295. font-size: px(36);
  296. height: px(80);
  297. width: px(120);
  298. display: flex;
  299. justify-content: center;
  300. align-items: center;
  301. & ~ span {
  302. margin-left: px(30);
  303. }
  304. }
  305. .remove {
  306. color: #f00;
  307. }
  308. }
  309. }
  310. .btn {
  311. width: 100%;
  312. height: px(120);
  313. background-color: rgb(0, 188, 38);
  314. color: #fff;
  315. display: flex;
  316. align-items: center;
  317. justify-content: center;
  318. }
  319. .btns {
  320. position: fixed;
  321. bottom: 0;
  322. left: 0;
  323. right: 0;
  324. z-index: 100;
  325. }
  326. .layout {
  327. background-color: #eee;
  328. color: #666;
  329. }
  330. .add-btn {
  331. height: px(120);
  332. color: #333;
  333. display: flex;
  334. align-items: center;
  335. justify-content: center;
  336. margin: px(50) px(35) 0;
  337. border: 1px solid #ccc;
  338. border-radius: px(10);
  339. }
  340. .code-tool {
  341. display: flex;
  342. justify-content: flex-start;
  343. align-items: center;
  344. .scan-img {
  345. flex-shrink: 0;
  346. width: px(80);
  347. height: px(80);
  348. /deep/ img {
  349. width: px(80);
  350. height: px(80);
  351. }
  352. }
  353. .generate {
  354. color: #0097d1;
  355. margin-right: px(30);
  356. flex-shrink: 0;
  357. }
  358. }
  359. .required {
  360. color: #f00;
  361. font-size: px(44);
  362. &.hide {
  363. visibility: hidden;
  364. }
  365. }
  366. .inp-dis {
  367. color: #999;
  368. }
  369. .img-card {
  370. padding-top: px(30);
  371. padding-bottom: px(30);
  372. }
  373. .form-img-item {
  374. .tit {
  375. padding: px(30);
  376. font-size: px(44);
  377. }
  378. }
  379. .spec-list {
  380. width: 100%;
  381. display: flex;
  382. justify-content: space-between;
  383. align-items: center;
  384. li {
  385. width: 33.333333%;
  386. font-size: px(40);
  387. height: px(100);
  388. border: 1px solid #f1f1f1;
  389. display: flex;
  390. align-items: center;
  391. justify-content: center;
  392. color: #999;
  393. & ~ li {
  394. // border-left: none;
  395. }
  396. &.on {
  397. color: rgb(0, 188, 38);
  398. border-color: rgb(0, 188, 38);
  399. }
  400. }
  401. }
  402. .mo-date {
  403. margin-top: px(20);
  404. border-bottom: 1px solid #f1f1f1;
  405. background: #fbfbfb;
  406. font-size: px(40);
  407. padding: px(10);
  408. }
  409. .n-date-box {
  410. margin-top: px(20);
  411. font-size: px(40);
  412. }
  413. .n-date {
  414. border-bottom: 1px solid #f1f1f1;
  415. background: #fbfbfb;
  416. padding: 0 px(20);
  417. display: inline-block;
  418. width: px(200);
  419. font-size: px(44);
  420. vertical-align: bottom;
  421. }
  422. .address-icon {
  423. /deep/ img {
  424. width: px(60);
  425. height: px(60);
  426. }
  427. }
  428. .dis {
  429. background-color: #f6f6f6;
  430. }
  431. .tip {
  432. color: #999;
  433. margin-left: px(10);
  434. }
  435. .bold{
  436. font-weight: bold;
  437. }
  438. </style>