detail.vue 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  1. <template>
  2. <view class="app-container">
  3. <no-data v-if="isLoading" :showText="'加载中'"></no-data>
  4. <no-data v-if="!isLoading && noData" :showText="'加载失败'"></no-data>
  5. <block v-if="!isLoading && !noData">
  6. <view class="status-container" v-if="detail.orderStatus == 'NOPAY'">待付款,30分钟内未付款将会关闭订单</view>
  7. <view class="status-container" v-if="detail.orderStatus == 'DFH'">买家已付款,待卖家发货</view>
  8. <view class="status-container" v-if="detail.orderStatus == 'YFH'">卖家已发货,已签收状态将在签收7日后自动确认</view>
  9. <view class="status-container" v-if="detail.orderStatus == 'OVER'">已确定收货,7日后将关闭退款通道</view>
  10. <view class="status-container" v-if="detail.orderStatus == 'CLOSE'">订单已关闭</view>
  11. <view class="status-container" v-if="detail.orderStatus == 'REFUND'">订单售后中</view>
  12. <view class="status-container" v-if="detail.orderStatus == 'TIMEOUT'">订单超时未支付</view>
  13. <view class="main-container">
  14. <view class="logistics-container card" v-if="detail.orderStatus == 'YFH' || detail.orderStatus == 'OVER'" @tap="toLogistics">
  15. <view class="icon"><image src="@/static/icon/logistics.png"></image></view>
  16. <view class="main" v-if="hasLogistics">
  17. <view>{{logisticsData[0].context}}</view>
  18. <view>{{logisticsData[0].time}}</view>
  19. </view>
  20. <view class="main" v-else>
  21. <view class="noData">暂无物流信息</view>
  22. </view>
  23. <view class="right"><image src="@/static/icon/right.png"></image></view>
  24. </view>
  25. <view class="address-container card">
  26. <view class="icon"><image src="@/static/icon/address.png"></image></view>
  27. <view class="right">
  28. <view class="name">{{detail.receUserName}}<text>{{detail.recePhone}}</text></view>
  29. <view class="address ellipsis-2">{{detail.province}}{{detail.city}}{{detail.area}}{{detail.street}}{{detail.receAddress}}{{detail.houseNo ? detail.houseNo : ''}}</view>
  30. </view>
  31. </view>
  32. <view class="goods-container card">
  33. <view class="title">商品信息</view>
  34. <block v-for="(item, index) in detail.orderDetails" :key='index'>
  35. <view class="item" @tap="toGoodsDetail(item.goodsId)">
  36. <image :src="item.imgUrl" mode="aspectFill"></image>
  37. <view class="right">
  38. <view class="top">
  39. <view class="name ellipsis-2">{{item.goodsName}}</view>
  40. <view class="des">{{item.goodsSpecValue}}</view>
  41. </view>
  42. <view class="bottom">
  43. <view class="price">¥{{item.price | numToFixed}}</view>
  44. <view class="num">x{{item.num}}</view>
  45. </view>
  46. </view>
  47. </view>
  48. </block>
  49. </view>
  50. <view class="peisong-container card">
  51. <view class="top">
  52. <view class="left">配送方式</view>
  53. <view class="right" v-if="detail.freight == 0">快递包邮</view>
  54. <view class="right" v-if="detail.freight != 0">快递自费</view>
  55. </view>
  56. <view class="bottom">
  57. <view class="left">买家留言</view>
  58. <view class="right">{{detail.buyerMsg}}</view>
  59. </view>
  60. </view>
  61. <view class="total-container card">
  62. <view class="top">
  63. <view class="item">
  64. <view>商品金额</view>
  65. <view>¥{{detail.totalProductAmount | numToFixed}}</view>
  66. </view>
  67. <view class="item">
  68. <view>运费</view>
  69. <view>¥{{detail.freight | numToFixed}}</view>
  70. </view>
  71. <view class="item">
  72. <view>优惠券</view>
  73. <view>-¥{{detail.couponValue | numToFixed}}</view>
  74. </view>
  75. <view class="item" v-if="detail.promotionDiscountRate">
  76. <view>折扣优惠</view>
  77. <view>-¥{{detail.promotionDiscountAmount | numToFixed}}({{detail.promotionDiscountRate*10}}折)</view>
  78. </view>
  79. </view>
  80. <view class="total">订单总额:<text>¥{{detail.payAmount | numToFixed}}</text></view>
  81. </view>
  82. <view class="order-container card">
  83. <view class="title">订单信息</view>
  84. <view class="item1">
  85. <view class="left">
  86. <view class="label">订单编号</view>
  87. <view class="value">{{detail.orderId}}</view>
  88. </view>
  89. <view class="copy" @tap="copy(detail.orderId)">复制</view>
  90. </view>
  91. <view class="item2">
  92. <view class="label">创建时间</view>
  93. <view class="value">{{detail.createTime}}</view>
  94. </view>
  95. <view class="item2" v-if="detail.payTime">
  96. <view class="label">支付时间</view>
  97. <view class="value">{{detail.payTime}}</view>
  98. </view>
  99. <view class="item2" v-if="detail.payTime">
  100. <view class="label">支付方式</view>
  101. <view class="value">{{detail.payType}}</view>
  102. </view>
  103. <view class="item2" v-if="detail.deliverTime">
  104. <view class="label">发货时间</view>
  105. <view class="value">{{detail.deliverTime}}</view>
  106. </view>
  107. <view class="item2" v-if="detail.overTime">
  108. <view class="label">完成时间</view>
  109. <view class="value">{{detail.overTime}}</view>
  110. </view>
  111. <view class="item2" v-if="detail.exchangeCode">
  112. <view class="label">优惠金额</view>
  113. <view class="value">{{detail.exchangeSubAmount | numToFixed}}</view>
  114. </view>
  115. <view class="item2" v-if="detail.exchangeCode">
  116. <view class="label">优惠码</view>
  117. <view class="value">{{detail.exchangeCode}}</view>
  118. </view>
  119. </view>
  120. <!-- 底部按钮:待付款 -->
  121. <view class="bottom-container" v-if="detail.orderStatus == 'NOPAY'">
  122. <view class="button gray" @tap="isCancelDialog = true">取消订单</view>
  123. <view class="button red" @tap="payOrder">立即付款</view>
  124. </view>
  125. <!-- 底部按钮:待发货 -->
  126. <view class="bottom-container" v-if="detail.orderStatus == 'DFH'">
  127. <view class="button white" @tap="remindShipment">提醒发货</view>
  128. <view class="button white" v-if="checkCanReturn(detail.orderShareStatus)" @tap="toApplyReturn">申请售后</view>
  129. </view>
  130. <!-- 底部按钮:待收货 -->
  131. <view class="bottom-container" v-if="detail.orderStatus == 'YFH'">
  132. <view class="button gray" @tap="toLogistics">查看物流</view>
  133. <view class="button red" @tap="isConfirmDialog = true">确认收货</view>
  134. <view class="button white" v-if="checkCanReturn(detail.orderShareStatus)" @tap="toApplyReturn">申请售后</view>
  135. </view>
  136. <!-- 底部按钮:已完成 -->
  137. <view class="bottom-container" v-if="detail.orderStatus == 'OVER'">
  138. <view class="button gray" @tap="toLogistics">查看物流</view>
  139. <view class="button gray" v-if="detail.tax && detail.orderTaxId" @tap="toInvoiceDetail">查看发票</view>
  140. <view class="button white" v-else @tap="isInvoiceDialog = true">申请发票</view>
  141. <view class="button white" v-if="checkCanReturn(detail.orderShareStatus)" @tap="toApplyReturn">申请售后</view>
  142. <view class="button red" v-if="!detail.commentService" @tap="toEvaluate">评价</view>
  143. </view>
  144. <!-- 底部按钮:售后中 -->
  145. <view class="bottom-container" v-if="isReturnOrder">
  146. <view class="button gray" @tap="toReturnDetail">售后详情</view>
  147. </view>
  148. <!-- 取消订单 -->
  149. <modal-dialog showText="确定要取消订单吗?" :isShowDialog="isCancelDialog" @cancel="isCancelDialog = false" @confirm="confirmCancelOrder"></modal-dialog>
  150. <!-- 确认收货 -->
  151. <modal-dialog showText="确定要确认收货吗?" :isShowDialog="isConfirmDialog" @cancel="isConfirmDialog = false" @confirm="confirmReceipt"></modal-dialog>
  152. <!-- 申请发票 -->
  153. <view class="global-mask" v-show="isInvoiceDialog"></view>
  154. <view class="invoice-dialog" v-show="isInvoiceDialog" @tap="isShowCompanyList = false">
  155. <view class="type-c">
  156. <view class="top">
  157. <view class="title">发票类型</view>
  158. <image src="@/static/icon/close.png" @tap="isInvoiceDialog = false"></image>
  159. </view>
  160. <view class="list">
  161. <view class="item" :class="taxType === false ? 'current' : ''" @tap="taxType = false">增值税普通发票</view>
  162. <view class="item" :class="taxType === true ? 'current' : ''" @tap="taxType = true; invoiceHeader = 2;">增值税专用发票</view>
  163. </view>
  164. </view>
  165. <view class="header-c">
  166. <view class="title">
  167. <view>发票抬头</view>
  168. <view class="button" @tap="getWxInvoice()">获取微信发票</view>
  169. </view>
  170. <view class="list">
  171. <view class="item" :class="invoiceHeader == 1 ? 'current' : ''" @tap="invoiceHeader = 1" v-if="taxType === false">个人</view>
  172. <view class="item" :class="invoiceHeader == 2 ? 'current' : ''" @tap="invoiceHeader = 2">公司</view>
  173. </view>
  174. <view class="form" v-show="invoiceHeader == 1">
  175. <view class="row">
  176. <view class="label">个人名称</view>
  177. <view class="input"><input type="text" placeholder="请填写“个人”或您的姓名" v-model="invoiceForm.personName"></view>
  178. </view>
  179. </view>
  180. <view class="form" v-show="invoiceHeader == 2">
  181. <view class="row">
  182. <view class="label">单位名称</view>
  183. <view class="input">
  184. <input type="text" placeholder="请填写单位名称" v-model="invoiceForm.companyName" @focus="companyFocus">
  185. <div class="companyList" v-show="isShowCompanyList">
  186. <block v-for="(item, index) in companyList" :key="index">
  187. <div class="item" @tap="chooseCompany(item)">{{item.name}}</div>
  188. </block>
  189. </div>
  190. </view>
  191. </view>
  192. <view class="row">
  193. <view class="label">纳税人识别号</view>
  194. <view class="input"><input type="text" placeholder="请填写纳税人识别号" v-model="invoiceForm.payerNum"></view>
  195. </view>
  196. <view class="more" v-if="taxType === false">
  197. <view>更多选填项</view>
  198. <view class="right" v-if="isOpen" @tap="isOpen = !isOpen">收起<image src="../../../static/icon/arrow_2.png"></image></view>
  199. <view class="right" v-else @tap="isOpen = !isOpen">展开<image src="../../../static/icon/arrow_1.png"></image></view>
  200. </view>
  201. <block v-if="isOpen">
  202. <view class="row">
  203. <view class="label">注册地址</view>
  204. <view class="input"><input type="text" placeholder="请填写注册地址" v-model="invoiceForm.regAddress"></view>
  205. </view>
  206. <view class="row">
  207. <view class="label">注册电话</view>
  208. <view class="input"><input type="text" placeholder="请填写注册电话" v-model="invoiceForm.regPhone"></view>
  209. </view>
  210. <view class="row">
  211. <view class="label">开户银行</view>
  212. <view class="input"><input type="text" placeholder="请填写开户银行" v-model="invoiceForm.bank"></view>
  213. </view>
  214. <view class="row">
  215. <view class="label">银行帐号</view>
  216. <view class="input"><input type="text" placeholder="请填写银行帐号" v-model="invoiceForm.account"></view>
  217. </view>
  218. </block>
  219. </view>
  220. </view>
  221. <view class="header-c">
  222. <view class="title">收票人信息</view>
  223. <view class="form">
  224. <view class="row" v-if="taxType === true">
  225. <view class="label">收票人姓名</view>
  226. <view class="input"><input type="text" placeholder="请填写联系姓名" v-model="invoiceForm.name"></view>
  227. </view>
  228. <view class="row" v-if="taxType === true">
  229. <view class="label">收票人手机</view>
  230. <view class="input"><input type="text" placeholder="请填写联系手机" v-model="invoiceForm.phone"></view>
  231. </view>
  232. <view class="row">
  233. <view class="label">收票人邮箱</view>
  234. <view class="input"><input type="text" placeholder="请填写收票邮箱" v-model="invoiceForm.email"></view>
  235. </view>
  236. <view class="row" v-if="taxType === true">
  237. <view class="label">收票人地址</view>
  238. <view class="input"><input type="text" placeholder="请填写收票地址" v-model="invoiceForm.address"></view>
  239. </view>
  240. </view>
  241. </view>
  242. <view class="content-c">
  243. <view class="title">发票内容<text>发票内容选项已根据税法调整,具体请以实际展示为准</text></view>
  244. <view class="list">
  245. <view class="item">商品内容</view>
  246. </view>
  247. <view class="tips">发票内容将显示详情商品名称与价格信息,发票金额为实际支付金额</view>
  248. <view class="button" @tap="submitInvoice">确定</view>
  249. </view>
  250. </view>
  251. </view>
  252. </block>
  253. </view>
  254. </template>
  255. <script>
  256. import {mapState} from 'vuex';
  257. import modalDialog from '@/components/modalDialog.vue';
  258. export default {
  259. components:{
  260. modalDialog
  261. },
  262. data() {
  263. return {
  264. isLoading: true,
  265. noData: true,
  266. orderId: null, // 订单id
  267. orderRefundId: null, // 售后订单id
  268. isReturnOrder: false, // 是否售后订单
  269. detail: {}, // 订单详情
  270. isCancelDialog: false, // 是否显示取消订单弹窗
  271. isConfirmDialog: false, // 是否显示确认收货弹窗
  272. isInvoiceDialog: false, // 是否显示申请发票弹窗
  273. taxType: false,
  274. invoiceHeader: 1, // 发票类型:1个人,2公司
  275. isOpen: false, // 是否展开
  276. invoiceForm: { // 发票表单数据
  277. // 发票抬头
  278. personName: '', // 个人 - 名称
  279. companyName: '', // 公司 - 名称
  280. payerNum: '', // 公司 - 识别号
  281. regAddress: '', // 公司 - 注册地址
  282. regPhone: '', // 公司 - 注册电话
  283. bank: '', // 公司 - 开户银行
  284. account: '', // 公司 - 银行账号
  285. // 收票人信息
  286. name: '', // 姓名
  287. phone: '', // 手机
  288. email: '', // 邮箱
  289. address: '', // 地址
  290. },
  291. canClickSave: true, // 能否点击提交
  292. logisticsData: [], // 物流信息
  293. hasLogistics: true, // 是否有物流信息
  294. canRemindShipment: true, // 能否点击提醒发货
  295. companyList: [],
  296. isShowCompanyList: false,
  297. isChooseCompany: false,
  298. }
  299. },
  300. computed:{
  301. ...mapState(['userInfo', 'isLogin', 'userId'])
  302. },
  303. watch: {
  304. 'invoiceForm.companyName'() {
  305. if(this.isChooseCompany) {
  306. this.isChooseCompany = false;
  307. return false;
  308. }
  309. this.getCompanyList();
  310. },
  311. taxType() {
  312. if(this.taxType === true) {
  313. this.isOpen = true;
  314. }else {
  315. this.isOpen = false;
  316. }
  317. }
  318. },
  319. onLoad({orderId, orderRefundId}) {
  320. this.orderId = orderId;
  321. if(orderRefundId != 'undefined') {
  322. this.isReturnOrder = true;
  323. this.orderRefundId = orderRefundId;
  324. }
  325. this.getOrderDetail();
  326. uni.$on('refreshOrderDetail',(data) => {
  327. if(data) {
  328. this.isReturnOrder = true;
  329. this.orderRefundId = data;
  330. }else {
  331. this.isReturnOrder = false;
  332. this.orderRefundId = null;
  333. }
  334. this.getOrderDetail();
  335. })
  336. },
  337. methods: {
  338. getOrderDetail() {
  339. let url = '', params = {};
  340. if(this.isReturnOrder) {
  341. url = '/order/refund/detail';
  342. params = {
  343. orderRefundId: this.orderRefundId
  344. }
  345. }else {
  346. url = '/order/detail';
  347. params = {
  348. orderId: this.orderId
  349. }
  350. }
  351. this.$axios({
  352. url,
  353. method: 'get',
  354. params
  355. }).then(res => {
  356. this.noData = false;
  357. this.isLoading = false;
  358. this.detail = res.data;
  359. this.getLogisticsData();
  360. }).catch(res => {
  361. this.noData = true;
  362. this.isLoading = false;
  363. })
  364. },
  365. // 检查是否可以申请售后(根据orderShareStatus)
  366. checkCanReturn(status) {
  367. if(!status || status === 'OVER' || status === 'CANCEL') {
  368. return false;
  369. }else {
  370. return true;
  371. }
  372. },
  373. // 获取物流信息
  374. getLogisticsData() {
  375. this.$axios({
  376. url: '/common/express',
  377. method: 'get',
  378. params: {
  379. companyCode: this.detail.companyCode ? this.detail.companyCode : 'shunfeng',
  380. logisticsNo: this.detail.logisticsNo,
  381. }
  382. }).then(res => {
  383. if(res.code == 200 && res.data.length >= 1) {
  384. this.logisticsData = res.data;
  385. }else if(res.code == 1100 || res.data.length < 1) {
  386. this.hasLogistics = false;
  387. }
  388. })
  389. },
  390. // 去商品详情
  391. toGoodsDetail(id) {
  392. uni.navigateTo({
  393. url: '/packageGoods/pages/detail?id=' + id
  394. })
  395. },
  396. // 确认取消订单
  397. confirmCancelOrder() {
  398. this.$axios({
  399. url: '/order/cancel',
  400. method: 'get',
  401. params: {
  402. orderId: this.orderId
  403. }
  404. }).then(res => {
  405. this.getOrderDetail();
  406. this.isCancelDialog = false;
  407. this.$successToast('取消订单成功');
  408. uni.$emit('refreshOrderList');
  409. })
  410. },
  411. // 确认收货
  412. confirmReceipt() {
  413. this.$axios({
  414. url: '/order/ack',
  415. params: {
  416. orderId: this.orderId
  417. }
  418. }).then(res => {
  419. this.getOrderDetail();
  420. this.isConfirmDialog = false;
  421. this.$successToast('确认收货成功');
  422. uni.$emit('refreshOrderList');
  423. })
  424. },
  425. // 立即付款
  426. payOrder() {
  427. let that = this;
  428. this.$axios({
  429. url: '/order/wait/pay',
  430. params: {
  431. userId: this.userId,
  432. orderId: this.orderId,
  433. },
  434. isLoading: 1,
  435. }).then(res => {
  436. uni.getProvider({
  437. service: 'payment',
  438. success: (e) => {
  439. uni.requestPayment({
  440. provider: e.provider[0],
  441. orderInfo: res.data,
  442. timeStamp: res.data.timeStamp,
  443. nonceStr: res.data.nonceStr,
  444. package: res.data.payPackage,
  445. signType: 'MD5',
  446. paySign: res.data.paySign,
  447. success: (res) => {
  448. that.getOrderDetail();
  449. that.$successToast('支付成功');
  450. uni.$emit('refreshOrderList');
  451. },
  452. fail: (err) => {
  453. that.$toast('支付失败');
  454. }
  455. })
  456. }
  457. })
  458. })
  459. },
  460. // 复制
  461. copy(val) {
  462. let that = this;
  463. uni.setClipboardData({
  464. data: val,
  465. success: function () {
  466. that.$successToast('复制成功');
  467. }
  468. });
  469. },
  470. // 验证数据
  471. vailateData() {
  472. // 全状态必填
  473. if(this.invoiceHeader == 1 && !this.invoiceForm.personName) {
  474. this.$toast('请填写您的姓名');
  475. return false;
  476. }
  477. if(this.invoiceHeader == 2 && !this.invoiceForm.companyName) {
  478. this.$toast('请填写单位名称');
  479. return false;
  480. }
  481. if(this.invoiceHeader == 2 && !this.invoiceForm.payerNum) {
  482. this.$toast('请填写纳税人识别号');
  483. return false;
  484. }
  485. // 普票
  486. if(this.taxType === false) {
  487. if(!this.invoiceForm.email) {
  488. this.$toast('请填写收票人邮箱');
  489. return false;
  490. }
  491. }
  492. // 专票
  493. else if(this.taxType === true) {
  494. if(!this.invoiceForm.regAddress) {
  495. this.$toast('请填写注册地址');
  496. return false;
  497. }
  498. if(!this.invoiceForm.regPhone) {
  499. this.$toast('请填写注册电话');
  500. return false;
  501. }
  502. if(!this.invoiceForm.bank) {
  503. this.$toast('请填写开户银行');
  504. return false;
  505. }
  506. if(!this.invoiceForm.account) {
  507. this.$toast('请填写银行账号');
  508. return false;
  509. }
  510. if(!this.invoiceForm.name) {
  511. this.$toast('请填写收票人姓名');
  512. return false;
  513. }
  514. if(!this.invoiceForm.phone) {
  515. this.$toast('请填写收票人手机');
  516. return false;
  517. }
  518. if(!this.invoiceForm.email) {
  519. this.$toast('请填写收票人邮箱');
  520. return false;
  521. }
  522. if(!this.invoiceForm.address) {
  523. this.$toast('请填写收票人地址');
  524. return false;
  525. }
  526. }
  527. return true;
  528. },
  529. // 提交发票
  530. submitInvoice() {
  531. if (!this.canClickSave) return false;
  532. this.canClickSave = false;
  533. setTimeout(() => { this.canClickSave = true }, 3000)
  534. if(!this.vailateData())return;
  535. let params = {};
  536. if(this.invoiceHeader == 1) {
  537. params = {
  538. type: false,
  539. name: this.invoiceForm.personName,
  540. }
  541. }else {
  542. params = {
  543. type: true,
  544. name: this.invoiceForm.companyName,
  545. taxNo: this.invoiceForm.payerNum,
  546. registerAddress: this.invoiceForm.regAddress,
  547. registerPhone: this.invoiceForm.regPhone,
  548. bank: this.invoiceForm.bank,
  549. account: this.invoiceForm.account,
  550. }
  551. }
  552. params.taxType = this.taxType;
  553. params.content = '商品明细';
  554. params.receiverName = this.invoiceForm.name;
  555. params.receiverPhone = this.invoiceForm.phone;
  556. params.receiverEmail = this.invoiceForm.email;
  557. params.receiverAddress = this.invoiceForm.address;
  558. params.userId = this.userId;
  559. params.orderId = this.orderId;
  560. this.$axios({
  561. url: '/user/order/tax/save',
  562. type: 'application/json',
  563. params,
  564. isLoading: 1,
  565. }).then(res => {
  566. this.getOrderDetail();
  567. this.$successToast('提交成功');
  568. this.isInvoiceDialog = false;
  569. })
  570. },
  571. // 发票详情
  572. toInvoiceDetail() {
  573. uni.navigateTo({
  574. url:'/pages/mine/order/invoice?id=' + this.detail.orderTaxId
  575. })
  576. },
  577. // 申请退款
  578. toApplyReturn() {
  579. uni.navigateTo({
  580. url:'/pages/mine/order/return/apply?orderId=' + this.orderId
  581. })
  582. },
  583. // 去售后详情
  584. toReturnDetail() {
  585. uni.navigateTo({
  586. url:'/pages/mine/order/return/detail?orderRefundId=' + this.orderRefundId
  587. })
  588. },
  589. // 去查看物流
  590. toLogistics() {
  591. uni.navigateTo({
  592. url:'/pages/mine/order/logistics?companyCode=' + this.detail.companyCode + '&logisticsNo=' + this.detail.logisticsNo
  593. })
  594. },
  595. // 提醒发货
  596. remindShipment() {
  597. if (!this.canRemindShipment) {
  598. return this.$toast('请勿频繁操作');
  599. };
  600. this.canRemindShipment = false;
  601. setTimeout(() => { this.canRemindShipment = true }, 3000)
  602. this.$axios({
  603. url: '/order/notice',
  604. params: {
  605. orderId: this.orderId,
  606. userId: this.userId
  607. }
  608. }).then(res => {
  609. this.$successToast('提醒发货成功');
  610. })
  611. },
  612. companyFocus() {
  613. this.getCompanyList();
  614. },
  615. getCompanyList() {
  616. this.$axios({
  617. url: '/user/order/tax/title/list',
  618. method: 'get',
  619. params: {
  620. companyName: this.invoiceForm.companyName,
  621. }
  622. }).then(res => {
  623. this.companyList = res.data || [];
  624. if(this.companyList.length > 0) {
  625. this.isShowCompanyList = true;
  626. }else {
  627. this.isShowCompanyList = false;
  628. }
  629. })
  630. },
  631. chooseCompany(item) {
  632. this.invoiceForm.companyName = item.name;
  633. this.invoiceForm.payerNum = item.taxId;
  634. this.isChooseCompany = true;
  635. this.isShowCompanyList = false;
  636. },
  637. // 去评价
  638. toEvaluate() {
  639. uni.navigateTo({
  640. url:'/pages/mine/order/evaluate?orderId=' + this.orderId
  641. })
  642. },
  643. // 获取微信发票
  644. getWxInvoice() {
  645. let that = this;
  646. uni.chooseInvoiceTitle({
  647. success(res) {
  648. if(that.taxType == true && res.type == 1) {
  649. return this.$toast('专票只能选择公司类型');
  650. }
  651. // 个人
  652. if(res.type == 1) {
  653. that.invoiceHeader = 1;
  654. that.invoiceForm.personName = res.title;
  655. }
  656. // 公司
  657. if(res.type == 0) {
  658. that.invoiceHeader = 2;
  659. that.invoiceForm.companyName = res.title;
  660. that.invoiceForm.payerNum = res.taxNumber;
  661. that.invoiceForm.regAddress = res.companyAddress;
  662. that.invoiceForm.regPhone = res.telephone;
  663. that.invoiceForm.bank = res.bankName;
  664. that.invoiceForm.account = res.bankAccount;
  665. }
  666. }
  667. })
  668. }
  669. }
  670. }
  671. </script>
  672. <style lang="scss">
  673. .app-container {
  674. background: #F4F2F2;
  675. box-sizing: border-box;
  676. }
  677. .status-container {
  678. background: #FE781F;
  679. line-height: 80rpx;
  680. text-align: center;
  681. font-size: 32rpx;
  682. color: #FFFFFF;
  683. }
  684. .card {
  685. background: #FFFFFF;
  686. border-radius: 20rpx;
  687. margin-bottom: 20rpx;
  688. }
  689. .main-container {
  690. padding: 20rpx 20rpx 120rpx;
  691. }
  692. .logistics-container {
  693. display: flex;
  694. justify-content: space-between;
  695. align-items: center;
  696. padding: 20rpx;
  697. .icon {
  698. width: 52rpx;
  699. height: 52rpx;
  700. border-radius: 50%;
  701. background: linear-gradient(-90deg,#ff4042 0%, #fe781f 100%);
  702. display: flex;
  703. flex-shrink: 0;
  704. justify-content: center;
  705. align-items: center;
  706. margin-right: 20rpx;
  707. image {
  708. width: 28rpx;
  709. height: 28rpx;
  710. }
  711. }
  712. .main {
  713. width: 560rpx;
  714. font-size: 24rpx;
  715. line-height: 32rpx;
  716. }
  717. .noData {
  718. font-size: 28rpx;
  719. color: #666666;
  720. }
  721. .right {
  722. margin-left: 20rpx;
  723. flex-shrink: 0;
  724. image {
  725. width: 16rpx;
  726. height: 28rpx;
  727. }
  728. }
  729. }
  730. .address-container {
  731. display: flex;
  732. justify-content: space-between;
  733. align-items: center;
  734. height: 150rpx;
  735. padding: 0 20rpx;
  736. .icon {
  737. width: 52rpx;
  738. height: 52rpx;
  739. border-radius: 50%;
  740. background: linear-gradient(-90deg,#ff4042 0%, #fe781f 100%);
  741. display: flex;
  742. flex-shrink: 0;
  743. justify-content: center;
  744. align-items: center;
  745. margin-right: 20rpx;
  746. image {
  747. width: 28rpx;
  748. height: 36rpx;
  749. }
  750. }
  751. .right {
  752. width: 600rpx;
  753. .name {
  754. font-size: 32rpx;
  755. color: #333333;
  756. text {
  757. font-size: 28rpx;
  758. color: #999999;
  759. margin-left: 16rpx;
  760. }
  761. }
  762. .address {
  763. font-size: 28rpx;
  764. color: #666666;
  765. line-height: 34rpx;
  766. margin-top: 10rpx;
  767. }
  768. }
  769. }
  770. .goods-container {
  771. padding: 0 20rpx;
  772. .title {
  773. font-size: 32rpx;
  774. color: #333333;
  775. line-height: 32rpx;
  776. padding-top: 20rpx;
  777. }
  778. .item {
  779. padding: 20rpx 0;
  780. border-bottom: 1px solid #eaeaea;
  781. display: flex;
  782. justify-content: space-between;
  783. align-items: center;
  784. &:last-child {
  785. border: none;
  786. }
  787. image {
  788. width: 180rpx;
  789. height: 180rpx;
  790. flex-shrink: 0;
  791. margin-right: 20rpx;
  792. }
  793. .right {
  794. width: 470rpx;
  795. height: 180rpx;
  796. display: flex;
  797. flex-direction: column;
  798. justify-content: space-between;
  799. .top {
  800. .name {
  801. font-size: 28rpx;
  802. color: #333333;
  803. line-height: 36rpx;
  804. }
  805. .des {
  806. font-size: 28rpx;
  807. color: #999999;
  808. margin-top: 10rpx;
  809. }
  810. }
  811. .bottom {
  812. display: flex;
  813. justify-content: space-between;
  814. align-items: center;
  815. .price {
  816. font-size: 28rpx;
  817. color: #FF3F42;
  818. line-height: 28rpx;
  819. }
  820. .num {
  821. font-size: 28rpx;
  822. color: #333333;
  823. line-height: 28rpx;
  824. }
  825. }
  826. }
  827. }
  828. }
  829. .peisong-container {
  830. padding: 0 20rpx;
  831. font-size: 28rpx;
  832. color: #333333;
  833. .top {
  834. display: flex;
  835. justify-content: space-between;
  836. align-items: center;
  837. height: 88rpx;
  838. border-bottom: 1px solid #eaeaea;
  839. }
  840. .bottom {
  841. display: flex;
  842. align-items: center;
  843. min-height: 88rpx;
  844. .left {
  845. margin-right: 40rpx;
  846. flex-shrink: 0;
  847. }
  848. .right {
  849. padding: 10rpx 0;
  850. line-height: 32rpx;
  851. }
  852. }
  853. }
  854. .total-container {
  855. padding: 0 20rpx;
  856. font-size: 28rpx;
  857. color: #333333;
  858. .top {
  859. padding: 10rpx 0;
  860. }
  861. .item {
  862. display: flex;
  863. justify-content: space-between;
  864. align-items: center;
  865. height: 64rpx;
  866. }
  867. .total {
  868. display: flex;
  869. justify-content: flex-end;
  870. height: 80rpx;
  871. align-items: center;
  872. border-top: 1px solid #eaeaea;
  873. text {
  874. color: #FF3F42;
  875. }
  876. }
  877. }
  878. .order-container {
  879. padding: 20rpx;
  880. .title {
  881. font-size: 32rpx;
  882. color: #333333;
  883. line-height: 32rpx;
  884. padding-bottom: 20rpx;
  885. }
  886. .item1 {
  887. display: flex;
  888. justify-content: space-between;
  889. align-items: center;
  890. height: 60rpx;
  891. .left {
  892. display: flex;
  893. .label {
  894. margin-right: 40rpx;
  895. flex-shrink: 0;
  896. }
  897. }
  898. .copy {
  899. color: #FE781F;
  900. }
  901. }
  902. .item2 {
  903. display: flex;
  904. align-items: center;
  905. height: 60rpx;
  906. .label {
  907. margin-right: 40rpx;
  908. flex-shrink: 0;
  909. }
  910. }
  911. }
  912. .bottom-container {
  913. position: fixed;
  914. bottom: 0;
  915. left: 0;
  916. width: 100%;
  917. padding: 0 20rpx;
  918. box-sizing: border-box;
  919. height: 100rpx;
  920. display: flex;
  921. justify-content: flex-end;
  922. align-items: center;
  923. background: #FFFFFF;
  924. border-top: 1px solid #F4F2F2;
  925. .button {
  926. width: 150rpx;
  927. height: 56rpx;
  928. border-radius: 56rpx;
  929. text-align: center;
  930. line-height: 56rpx;
  931. font-size: 28rpx;
  932. margin-left: 15rpx;
  933. &:first-child {
  934. margin-left: 0;
  935. }
  936. &.gray {
  937. color: #999999;
  938. border: 1px solid #999999;
  939. }
  940. &.white {
  941. color: #FF3F42;
  942. border: 1px solid #FF3F42;
  943. }
  944. &.red {
  945. color: #FFFFFF;
  946. border: 1px solid #FF3F42;
  947. background: #FF3F42;
  948. }
  949. }
  950. }
  951. .invoice-dialog {
  952. position: fixed;
  953. bottom: 0;
  954. left: 0;
  955. width: 100%;
  956. box-sizing: border-box;
  957. z-index: 999;
  958. background: #FFFFFF;
  959. border-radius: 20rpx 20rpx 0 0;
  960. padding: 0 20rpx;
  961. max-height: 100vh;
  962. overflow-y: scroll;
  963. .type-c {
  964. border-bottom: 1px solid #eaeaea;
  965. padding-bottom: 20rpx;
  966. .top {
  967. display: flex;
  968. justify-content: space-between;
  969. align-items: center;
  970. height: 84rpx;
  971. .title {
  972. font-size: 32rpx;
  973. color: #333333;
  974. font-weight: 600;
  975. }
  976. image {
  977. width: 31rpx;
  978. height: 31rpx;
  979. }
  980. }
  981. .list {
  982. display: flex;
  983. .item {
  984. padding: 0 16rpx;
  985. border: 1px solid #C0C0C0;
  986. font-size: 24rpx;
  987. color: #666666;
  988. border-radius: 6rpx;
  989. line-height: 48rpx;
  990. margin-right: 20rpx;
  991. &.current {
  992. border: 1px solid #FE781F;
  993. background: rgba($color: #FE781F, $alpha: 0.3);
  994. color: #FE781F;
  995. }
  996. }
  997. }
  998. }
  999. .header-c {
  1000. border-bottom: 1px solid #eaeaea;
  1001. padding-bottom: 20rpx;
  1002. .title {
  1003. font-size: 32rpx;
  1004. color: #333333;
  1005. font-weight: 600;
  1006. line-height: 84rpx;
  1007. display: flex;
  1008. justify-content: space-between;
  1009. align-items: center;
  1010. .button {
  1011. font-size: 24rpx;
  1012. color: #FE781F;
  1013. border: 1px solid #FE781F;
  1014. border-radius: 6rpx;
  1015. line-height: 48rpx;
  1016. height: 48rpx;
  1017. padding: 0 16rpx;
  1018. font-weight: normal;
  1019. }
  1020. }
  1021. .list {
  1022. display: flex;
  1023. padding-bottom: 20rpx;
  1024. .item {
  1025. width: 120rpx;
  1026. height: 48rpx;
  1027. line-height: 48rpx;
  1028. border-radius: 6rpx;
  1029. text-align: center;
  1030. border: 1px solid #C0C0C0;
  1031. font-size: 24rpx;
  1032. color: #666666;
  1033. margin-right: 20rpx;
  1034. &.current {
  1035. border: 1px solid #FF3F42;
  1036. background: #FF3F42;
  1037. color: #FFFFFF;
  1038. }
  1039. }
  1040. }
  1041. .form {
  1042. .row {
  1043. display: flex;
  1044. height: 60rpx;
  1045. align-items: center;
  1046. .label {
  1047. width: 200rpx;
  1048. }
  1049. .input {
  1050. width: 510rpx;
  1051. position: relative;
  1052. input {
  1053. width: 100%;
  1054. }
  1055. .companyList {
  1056. position: absolute;
  1057. top: 60rpx;
  1058. left: -20rpx;
  1059. background: #FFFFFF;
  1060. width: 530rpx;
  1061. z-index: 11;
  1062. border: 1px solid #eaeaea;
  1063. max-height: 400rpx;
  1064. overflow-y: scroll;
  1065. box-shadow: 0 0 12rpx 0 rgba(0, 0, 0, 0.2);;
  1066. .item {
  1067. color: #666666;
  1068. padding: 16rpx 20rpx;
  1069. }
  1070. }
  1071. }
  1072. }
  1073. .more {
  1074. display: flex;
  1075. justify-content: space-between;
  1076. align-items: center;
  1077. height: 60rpx;
  1078. .right {
  1079. display: flex;
  1080. align-items: center;
  1081. image {
  1082. width: 20rpx;
  1083. height: 20rpx;
  1084. display: block;
  1085. margin-left: 10rpx;
  1086. }
  1087. }
  1088. }
  1089. }
  1090. }
  1091. .content-c {
  1092. padding-bottom: 40rpx;
  1093. .title {
  1094. font-size: 32rpx;
  1095. color: #333333;
  1096. font-weight: 600;
  1097. line-height: 84rpx;
  1098. text {
  1099. font-size: 22rpx;
  1100. color: #999999;
  1101. margin-left: 10rpx;
  1102. font-weight: normal;
  1103. }
  1104. }
  1105. .list {
  1106. display: flex;
  1107. .item {
  1108. padding: 0 16rpx;
  1109. background: rgba($color: #FE781F, $alpha: 0.3);
  1110. font-size: 24rpx;
  1111. color: #FE781F;
  1112. border-radius: 6rpx;
  1113. line-height: 48rpx;
  1114. }
  1115. }
  1116. .tips {
  1117. font-size: 22rpx;
  1118. color: #999999;
  1119. margin-top: 20rpx;
  1120. }
  1121. .button {
  1122. height: 70rpx;
  1123. line-height: 70rpx;
  1124. border-radius: 70rpx;
  1125. background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
  1126. text-align: center;
  1127. font-size: 28rpx;
  1128. color: #FFFFFF;
  1129. margin-top: 20rpx;
  1130. }
  1131. }
  1132. }
  1133. </style>