|
@@ -0,0 +1,123 @@
|
|
|
+<template>
|
|
|
+ <a-modal
|
|
|
+ centered
|
|
|
+ :footer="null"
|
|
|
+ :maskClosable="false"
|
|
|
+ class="allocateBill-print-type-modal"
|
|
|
+ title="调拨退货打印"
|
|
|
+ v-model="isShow"
|
|
|
+ @cancle="isShow=false"
|
|
|
+ :width="600">
|
|
|
+ <a-spin :spinning="spinning" tip="Loading...">
|
|
|
+ <a-form-model
|
|
|
+ id="allocateBill-print-form"
|
|
|
+ ref="ruleForm"
|
|
|
+ :model="form"
|
|
|
+ :rules="rules"
|
|
|
+ :label-col="formItemLayout.labelCol"
|
|
|
+ :wrapper-col="formItemLayout.wrapperCol"
|
|
|
+ >
|
|
|
+ <a-form-model-item label="调拨退货单号">{{ itemData&&itemData.allocateReturnNo || '--' }}</a-form-model-item>
|
|
|
+ <a-form-model-item label="调拨退货对象">{{ itemData&&itemData.targetName || '--' }}</a-form-model-item>
|
|
|
+ <a-form-model-item label="产品价格" prop="priceType">
|
|
|
+ <a-radio-group v-model="form.priceType">
|
|
|
+ <a-radio value="thj">退货价</a-radio>
|
|
|
+ <a-radio value="cbj">成本价</a-radio>
|
|
|
+ <a-radio value="bdy">不打印</a-radio>
|
|
|
+ </a-radio-group>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-form-model>
|
|
|
+ <div class="btn-cont">
|
|
|
+ <a-button id="allocateBill-print-save" @click="handleSave(0)">取消</a-button>
|
|
|
+ <a-button type="primary" id="allocateBill-print-back" @click="handleSave(1)" 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: {
|
|
|
+ id: 'all',
|
|
|
+ priceType: undefined
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ priceType: [{ required: true, message: '请选择产品价格', trigger: 'change' }]
|
|
|
+ },
|
|
|
+ formItemLayout: {
|
|
|
+ labelCol: { span: 6 },
|
|
|
+ wrapperCol: { span: 18 }
|
|
|
+ },
|
|
|
+ spinning: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 确认
|
|
|
+ handleSave (type) {
|
|
|
+ const _this = this
|
|
|
+ if (type == 0) {
|
|
|
+ _this.$emit('close')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$refs.ruleForm.validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ // 确定
|
|
|
+ if (type == 1) {
|
|
|
+ const obj = {
|
|
|
+ allocateReturnSn: _this.itemData.allocateReturnSn,
|
|
|
+ printType: _this.form.priceType,
|
|
|
+ isPreview: this.nowType
|
|
|
+ }
|
|
|
+ _this.$emit('ok', obj)
|
|
|
+ }
|
|
|
+ _this.isShow = false
|
|
|
+ } else {
|
|
|
+ console.log('error submit!!')
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ // 父页面传过来的弹框状态
|
|
|
+ openModal (newValue, oldValue) {
|
|
|
+ this.isShow = newValue
|
|
|
+ },
|
|
|
+ // 重定义的弹框状态
|
|
|
+ isShow (newValue, oldValue) {
|
|
|
+ if (!newValue) {
|
|
|
+ this.$emit('close')
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+ .allocateBill-print-type-modal{
|
|
|
+ .btn-cont {
|
|
|
+ text-align: center;
|
|
|
+ margin: 35px 0 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|