| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <template>
- <el-card>
- <div
- slot="header"
- class="card-title">
- <span>订单明细</span>
- <el-link
- type="primary"
- @click="$emit('clear')">
- 清空订单
- </el-link>
- </div>
- <div>
- <div class="pay-channel-wrap">
- <label class="text">支付方式:</label>
- <el-radio-group
- fill="#379143"
- class="tags-btn"
- @change="$localStore.set('group_payment',$event)"
- v-model="payChannel"
- border>
- <el-radio
- border
- v-for="val in payChannelOptions"
- :key="val"
- :value="val"
- :label="val"></el-radio>
- </el-radio-group>
- </div>
- <div class="btn-wrap">
- <div>
- <span class="item">实付金额:
- <el-input-number
- :min="0"
- :precision="2"
- :controls="false"
- v-model.number="actualMoney"></el-input-number>
- </span>
- <span class="item">备注:
- <el-input
- clearable
- v-model="remark"
- style="width:200px"></el-input>
- </span>
- <span class="item">图片备注:
- <el-button
- type="primary"
- size="small"
- icon="el-icon-edit"
- @click="showUploadImgDialog"
- >
- 编辑查看
- </el-button>
- </span>
- </div>
- <el-button
- type="primary"
- class="warn-btn item"
- :disabled="value.length===0"
- @click="handleConfirm">
- 确认出票
- </el-button>
- </div>
- <div class="btn-wrap">
- <span class="item price">总数:<b>{{ totalCount }}</b> 张</span>
- <span class="item price">总价:<b>{{ orderPrice }}</b> 元</span>
- <span class="item price">折扣:<b>{{ discount }}</b> 折</span>
- <span class="item price">折后总价:<b>{{ finalPrice }}</b> 元</span>
- <span class="item price">{{ payBack>0?'找零':'还需支付' }}:<b>{{ Math.abs(payBack) }}</b> 元</span>
- <span class="item">
- <PrintSmallTicketCheckbox v-model="autoPrintSmallTicket"></PrintSmallTicketCheckbox>
- <el-checkbox
- v-model="autoPrint"
- style="margin:10px"
- @change="handleAutoPrintChange"
- >
- 自动打印
- </el-checkbox>
- </span>
- </div>
- </div>
- <el-table
- border
- :data="value">
- <el-table-column
- prop="ticketName"
- label="票种名称"
- width="180">
- </el-table-column>
- <el-table-column label="游玩日期">
- <template slot-scope="scope">
- {{ scope.row.payDateBegin | formatDate }}
- </template>
- </el-table-column>
- <el-table-column
- prop="count"
- label="数量">
- </el-table-column>
- <el-table-column
- prop="price"
- label="单价">
- </el-table-column>
- <!-- <el-table-column
- prop="total"
- label="小计">
- </el-table-column> -->
- <el-table-column
- label="操作"
- width="140">
- <template slot-scope="scope">
- <el-button
- @click="handleDelete(scope.row)"
- type="text">
- 删除
- </el-button>
- <el-button
- @click="showTouristList(scope.row)"
- type="text">
- 门票列表
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <ConfirmMingtou
- :discount="discount"
- :remark="remark"
- :tickets="tickets"
- :order-items="value"
- :form-data="formData"
- :order-price="orderPrice"
- :final-price="finalPrice"
- :total-count="totalCount"
- :pay-channel="payChannel"
- @complete="handleComplete"
- ref="confirm"></ConfirmMingtou>
- <!-- 图片备注 -->
- <UploadImgList
- :picture-remarks="pictureRemarks"
- :update-remarks="updateRemarks"
- ref="uploadImgDialog">
- </UploadImgList>
- <!-- 游客列表 -->
- <TouristList
- :check-face="formData.checkWay === 4"
- :check-id="formData.checkWay === 3"
- :check-ticket-no="formData.checkWay === 5"
- :tourist-list="touristList"
- :update-tourist="updateTourist"
- ref="touristList"></TouristList>
- </el-card>
- </template>
- <script>
- import mixin from './mixin'
- import { randomString } from '@/utils'
- import ConfirmMingtou from './ConfirmMingtou'
- import PrintSmallTicketCheckbox from '../common/PrintSmallTicketCheckbox'
- import UploadImgList from '../common/uploadImgList'
- import orderItemMixin from '../common/orderItemMixin'
- export default {
- mixins: [mixin, orderItemMixin],
- props: {
- value: {
- type: Array,
- default: () => []
- }
- },
- components: {
- ConfirmMingtou,
- PrintSmallTicketCheckbox,
- UploadImgList
- },
- computed: {
- payBack () {
- if (this.actualMoney === undefined) {
- return -this.finalPrice
- } else {
- return (this.actualMoney - this.finalPrice).toFixed(2)
- }
- },
- totalCount () {
- return this.value.reduce((init, item) => {
- return init + item.count
- }, 0)
- },
- orderPrice () {
- return this.value.reduce((init, item) => {
- let price = this.$NP.times(item.count, item.originalPrice)
- return this.$NP.plus(init, price)
- }, 0)
- },
- finalPrice () {
- let price = this.tickets.reduce((init, item) => {
- return this.$NP.plus(init, item.discountPrice)
- }, 0)
- return this.$NP.round(price, 2)
- },
- tickets () {
- return this.value.reduce((init, item) => {
- item.tickets.forEach(t => {
- t.discountPrice = this.$NP.times(item.price, this.$NP.divide(this.discount, 10))
- })
- return init.concat(item.tickets)
- }, [])
- }
- },
- data () {
- return {
- payChannel: '',
- remark: '',
- actualMoney: 0,
- formData: {},
- pictureRemarks: [{
- idKey: randomString(),
- url: '',
- remark: ''
- }],
- discount: 0,
- autoPrint: this.$localStore.get('autoPrint') || false,
- autoPrintSmallTicket: this.$localStore.get('autoPrintSmallTicket')
- }
- },
- methods: {
- // 更新图片备注列表
- updateRemarks (data) {
- this.pictureRemarks = data
- },
- // 显示图片备注弹窗
- showUploadImgDialog () {
- this.$refs.uploadImgDialog.show()
- },
- changePayChannel (n) {
- if (this.confirmVisible) return
- let i = this.payChannelOptions.findIndex(channel => channel === this.payChannel)
- let l = this.payChannelOptions.length
- let j = (i - n + l) % l
- this.payChannel = this.payChannelOptions[j]
- },
- PageUp () {
- this.changePayChannel(1)
- },
- PageDown () {
- this.changePayChannel(-1)
- },
- handleDelete (item) {
- this.$confirm('确定删除吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$message({
- type: 'success',
- message: '删除成功!'
- })
- const idx = this.value.findIndex(i => i.keyId === item.keyId)
- this.value.splice(idx, 1)
- })
- },
- handleAutoPrintChange (val) {
- this.$localStore.set('autoPrint', val)
- },
- handleComplete () {
- this.$emit('clear')
- this.remark = ''
- this.$localStore.get('defaultPayWay') && this.setPayWay()
- this.$parent.$parent.$refs.orderRecord.getOrderList()
- },
- setPayWay () {
- const payment = this.$localStore.get('defaultPayWay') || this.payChannelOptions[0]
- this.payChannel = this.payChannelOptions.indexOf(payment) < 0 ? this.payChannelOptions[0] : payment
- }
- },
- watch: {
- finalPrice (val) {
- this.actualMoney = val
- },
- payChannelOptions: {
- handler (val) {
- if (val.length) {
- this.setPayWay()
- }
- },
- immediate: true
- }
- },
- mounted () {
- this.payChannel = this.$localStore.get('defaultPayWay') || this.$localStore.get('group_payment') || this.payChannelOptions[0]
- }
- }
- </script>
- <style lang="scss" scoped>
- .item {
- margin-left: 20px;
- }
- .price-info {
- padding: 10px 0; text-align: right; background: #fff;
- }
- .btn-wrap {
- display: flex; width: 100%; margin-bottom: 10px; font-size: 14px; justify-content: space-between; align-items: center;
- .el-input {
- display: inline-block; width: 100px;
- }
- }
- </style>
|