order.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <template>
  2. <zj-page-layout :hasFooter="true">
  3. <view class="all-container">
  4. <view class="common-title">产品信息</view>
  5. <view class="product-container card">
  6. <view class="it" v-for="(item, index) in goodsList" :key="index">
  7. <view class="name"
  8. >({{ { INNER: '保内', OUTSIDE: '保外' }[item.repairFlag] }}){{ item.goodsName
  9. }}<text>×{{ item.num }}{{ item.goodsUnit }}</text></view
  10. >
  11. <view class="price">¥{{ (item.goodsAmount * item.num) | priceFilter }}</view>
  12. </view>
  13. <view class="total">
  14. <view class="text">合计:</view>
  15. <view class="price">¥{{ totalPrice | priceFilter }}</view>
  16. </view>
  17. </view>
  18. <block v-if="type == 'P'">
  19. <view class="common-title">服务费用</view>
  20. <view class="form-container card">
  21. <view class="item">
  22. <view class="label">其他费用</view>
  23. <u--input placeholder="请输入金额" inputAlign="right" v-model="otherPrice"></u--input>
  24. </view>
  25. <view class="item">
  26. <view class="label">服务费用</view>
  27. <u--input placeholder="请输入金额" inputAlign="right" v-model="servicePrice"></u--input>
  28. </view>
  29. <view class="total">
  30. <view class="text">合计:</view>
  31. <view class="price">¥{{ (Number(otherPrice) + Number(servicePrice)) | priceFilter }}</view>
  32. </view>
  33. </view>
  34. </block>
  35. <view class="common-title">备注</view>
  36. <view class="remark-container card">
  37. <u--textarea v-model="remark" placeholder="请输入内容" border="none" autoHeight></u--textarea>
  38. </view>
  39. </view>
  40. <template slot="footer">
  41. <view class="bottom-container">
  42. <view class="left">
  43. <view class="text">共{{ totalNum }}件,合计:</view>
  44. <view class="price"
  45. >¥{{ (Number(otherPrice) + Number(servicePrice) + Number(totalPrice)) | priceFilter }}</view
  46. >
  47. </view>
  48. <view class="btn">
  49. <u-button
  50. type="primary"
  51. text="确认订单"
  52. @click="submitData(1)"
  53. v-if="!wbId || (wbId && wbIsAllFee == 'NO' && wbPayType == 'SITE')"
  54. ></u-button>
  55. <u-button type="primary" text="提交申请" @click="submitData(2)" v-else></u-button>
  56. </view>
  57. </view>
  58. </template>
  59. </zj-page-layout>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {
  65. type: 'M',
  66. userMobile: '',
  67. orderNo: '',
  68. salesType: '',
  69. brandId: '',
  70. brandName: '',
  71. categoryId: '',
  72. categoryName: '',
  73. websitId: '',
  74. websitName: '',
  75. wbId: null, // 维保工单
  76. wbIsAllFee: null, // 维保工单是否包含全部费用
  77. wbPayType: null, // 维保工单费用支付方式
  78. goodsList: [],
  79. remark: '',
  80. otherPrice: '',
  81. servicePrice: ''
  82. }
  83. },
  84. computed: {
  85. totalNum() {
  86. let val = 0
  87. this.goodsList.forEach(item => {
  88. val = val + item.num
  89. })
  90. return val
  91. },
  92. totalPrice() {
  93. let val = 0
  94. this.goodsList
  95. .filter(item => item.repairFlag == 'OUTSIDE')
  96. .forEach(item => {
  97. val = val + (item.num * (item.goodsAmount * 100)) / 100
  98. })
  99. return val
  100. }
  101. },
  102. onLoad() {
  103. let data = this.$getStorage('materialSaleDataZhiFu')
  104. if (data) {
  105. this.type = data.type
  106. this.userMobile = data.userMobile
  107. this.orderNo = data.orderNo
  108. this.categoryId = data.categoryId
  109. this.categoryName = data.categoryName
  110. this.websitId = data.websitId
  111. this.websitName = data.websitName
  112. this.wbId = data.wbId
  113. this.wbIsAllFee = data.wbIsAllFee
  114. this.wbPayType = data.wbPayType
  115. this.goodsList = data.goodsList
  116. }
  117. },
  118. onHide: function () {
  119. this.$removeStorage('materialSaleData')
  120. },
  121. methods: {
  122. submitData(type) {
  123. if (Number(this.otherPrice) + 0 !== Number(this.otherPrice)) return this.$toast(`其他费用需要为数字`)
  124. if (Number(this.servicePrice) + 0 !== Number(this.servicePrice)) return this.$toast(`服务费用需要为数字`)
  125. this.$api
  126. .postJson('/pay/buy', {
  127. settlementType: this.salesType,
  128. goodsType: this.type,
  129. remark: this.remark,
  130. userMobile: this.userMobile,
  131. workerOrderId: this.orderNo,
  132. categoryId: this.categoryId || '123',
  133. categoryName: this.categoryName || '123',
  134. websitId: this.websitId,
  135. websitName: this.websitName,
  136. workerOrderItems: this.goodsList,
  137. otherPrice: this.otherPrice,
  138. servicePrice: this.servicePrice
  139. })
  140. .then(res => {
  141. this.$navToPage(
  142. {
  143. url: `/packageMaterial/pages/newSale/pay?handleOrderId=${res.data}`
  144. },
  145. 'redirectTo'
  146. )
  147. })
  148. }
  149. }
  150. }
  151. </script>
  152. <style lang="scss" scoped>
  153. .all-container {
  154. padding: 0 20rpx;
  155. }
  156. .common-title {
  157. font-size: 32rpx;
  158. font-weight: 600;
  159. margin-top: 30rpx;
  160. }
  161. .card {
  162. @include zj-card;
  163. margin-top: 20rpx;
  164. padding: 30rpx;
  165. }
  166. .product-container {
  167. .it {
  168. display: flex;
  169. align-items: flex-end;
  170. margin-bottom: 20rpx;
  171. .name {
  172. flex: 1;
  173. font-size: 28rpx;
  174. font-weight: 500;
  175. text {
  176. color: $sec-font;
  177. margin-left: 12rpx;
  178. font-weight: normal;
  179. }
  180. }
  181. .price {
  182. margin-left: 30rpx;
  183. font-size: 28rpx;
  184. font-weight: 500;
  185. }
  186. }
  187. .total {
  188. display: flex;
  189. align-items: center;
  190. justify-content: flex-end;
  191. margin-top: 30rpx;
  192. .text {
  193. font-size: 28rpx;
  194. color: $sec-font;
  195. }
  196. .price {
  197. font-size: 28rpx;
  198. color: $minor-color;
  199. font-weight: 500;
  200. }
  201. }
  202. }
  203. .remark-container {
  204. padding: 0;
  205. ::v-deep .u-textarea {
  206. padding: 20rpx 30rpx;
  207. min-height: 200rpx;
  208. }
  209. }
  210. .form-container {
  211. .item {
  212. height: 50rpx;
  213. display: flex;
  214. align-items: center;
  215. justify-content: space-between;
  216. margin-top: 30rpx;
  217. &:first-child {
  218. margin-top: 0;
  219. }
  220. .label {
  221. margin-right: 30rpx;
  222. flex-shrink: 0;
  223. text {
  224. color: $sec-font;
  225. margin-left: 12rpx;
  226. font-weight: normal;
  227. }
  228. }
  229. .picker {
  230. display: flex;
  231. align-items: center;
  232. .placeholder {
  233. color: $sec-font;
  234. }
  235. .iconfont {
  236. margin-left: 12rpx;
  237. color: $sec-font;
  238. }
  239. }
  240. .value {
  241. flex: 1;
  242. text-align: right;
  243. }
  244. }
  245. .total {
  246. display: flex;
  247. align-items: center;
  248. justify-content: flex-end;
  249. margin-top: 30rpx;
  250. .text {
  251. font-size: 28rpx;
  252. color: $sec-font;
  253. }
  254. .price {
  255. font-size: 28rpx;
  256. color: $minor-color;
  257. font-weight: 500;
  258. }
  259. }
  260. }
  261. .bottom-container {
  262. padding: 20rpx;
  263. display: flex;
  264. align-items: center;
  265. justify-content: space-between;
  266. .left {
  267. display: flex;
  268. align-items: center;
  269. .text {
  270. font-size: 28rpx;
  271. color: $sec-font;
  272. }
  273. .price {
  274. font-size: 32rpx;
  275. color: $minor-color;
  276. font-weight: 500;
  277. }
  278. }
  279. .btn {
  280. width: 180rpx;
  281. }
  282. }
  283. </style>