123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <template>
- <a-modal
- centered
- :footer="null"
- :maskClosable="false"
- class="sales-print-type-modal"
- :title="modalTit"
- v-model="isShow"
- @cancel="isShow=false"
- :width="600">
- <a-spin :spinning="spinning" tip="Loading...">
- <a-form-model
- id="sales-print-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol"
- >
- <a-form-model-item label="销售退货单号">{{ itemData&&itemData.salesReturnBillNo || '--' }}</a-form-model-item>
- <a-form-model-item label="销售退货对象">{{ itemData&&itemData.buyerName || '--' }}</a-form-model-item>
- <a-form-model-item label="退货价格" prop="priceType" v-if="nowType=='export'">
- <a-radio-group v-model="form.priceType">
- <a-radio value="SALES_RETURN_AMOUNT">导出</a-radio>
- <a-radio value="SALES_RETURN">不导出</a-radio>
- </a-radio-group>
- </a-form-model-item>
- <a-form-model-item label="退货价格" prop="priceType" v-if="nowType!='export'">
- <a-radio-group v-model="form.priceType">
- <a-radio value="SALES_RETURN_AMOUNT">打印</a-radio>
- <a-radio value="SALES_RETURN">不打印</a-radio>
- </a-radio-group>
- </a-form-model-item>
- <a-form-model-item label="货架编号" prop="orderBy" v-if="nowType!='export'">
- <a-radio-group v-model="form.orderBy">
- <a-radio value="ASC">打印(↑升序)</a-radio>
- <a-radio value="DESC">打印(↓降序)</a-radio>
- <a-radio value="-1">不打印</a-radio>
- </a-radio-group>
- </a-form-model-item>
- </a-form-model>
- <div class="btn-cont">
- <a-button id="sales-print-back" @click="handleCancel">取消</a-button>
- <a-button type="primary" id="sales-print-save" @click="handleSave()" style="margin-left: 15px;">确定</a-button>
- </div>
- </a-spin>
- </a-modal>
- </template>
- <script>
- export default {
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- itemData: {
- type: Object,
- default: () => {
- return null
- }
- },
- nowType: {
- type: String,
- default: ''
- }
- },
- data () {
- return {
- isShow: this.openModal, // 是否打开弹框
- form: {
- priceType: undefined,
- orderBy: undefined
- },
- rules: {
- priceType: [{ required: true, message: '请选择退货价格', trigger: 'change' }],
- orderBy: [{ required: true, message: '请选择货架编号', trigger: 'change' }]
- },
- formItemLayout: {
- labelCol: { span: 6 },
- wrapperCol: { span: 18 }
- },
- spinning: false,
- typeList: []
- }
- },
- computed: {
- modalTit () {
- return this.nowType == 'export' ? '导出Excel' : '销售退货打印'
- }
- },
- methods: {
- // 确认
- handleSave () {
- const _this = this
- this.$refs.ruleForm.validate(valid => {
- if (valid) {
- const obj = {
- priceType: _this.form.priceType
- }
- // 打印货位编号
- if (_this.form.orderBy != '-1' && this.nowType != 'export') {
- obj.orderBy = _this.form.orderBy
- obj.priceType = obj.priceType + '_STACK_PLACE'
- }
- _this.$emit('ok', obj)
- _this.isShow = false
- } else {
- console.log('error submit!!')
- return false
- }
- })
- },
- // 取消选择分类
- handleCancel () {
- this.isShow = false
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- this.$refs.ruleForm.resetFields()
- }
- }
- }
- }
- </script>
- <style lang="less">
- .sales-print-type-modal{
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- }
- </style>
|