123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <a-modal
- v-model="opened"
- :title="title"
- centered
- :maskClosable="false"
- :confirmLoading="confirmLoading"
- :width="800"
- :footer="null"
- @cancel="cancel"
- >
- <a-spin :spinning="spinning" tip="Loading...">
- <a-form-model
- id="chooseCustom-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol">
- <a-form-model-item label="收款事由" prop="buyerSn">
- <a-input maxLength="100" placeholder="请输入收款事由(最多100个字符)"></a-input>
- </a-form-model-item>
- <a-form-model-item label="备注">
- <a-textarea :rows="4" maxLength="500" placeholder="请输入备注(最多500个字符)"></a-textarea>
- </a-form-model-item>
- <a-form-model-item label="附件" help="(支持图片、word、excel、PDF等格式,最多10个附件)">
- <Upload
- style="height: 100%;"
- v-model="form.attachList"
- ref="attachList"
- :fileSize="10"
- :maxNums="10"
- fileType="*"
- uploadType="attach"
- :action="attachAction"
- @change="changeAttach"
- upText="上传附件"></Upload>
- </a-form-model-item>
- <a-form-model-item :wrapper-col="{ span: 12, offset: 6 }" style="text-align: center;margin-top: 50px;">
- <a-button type="primary" :loading="confirmLoading" @click="handleSubmit" id="chooseCustom-btn-submit">保存</a-button>
- <a-button @click="cancel" style="margin-left: 15px" id="chooseCustom-btn-back">取消</a-button>
- </a-form-model-item>
- </a-form-model>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { VSelect, Upload } from '@/components'
- import { salesSave } from '@/api/sales'
- export default {
- name: 'SalesChooseCustomModal',
- mixins: [commonMixin],
- components: { VSelect, Upload },
- props: {
- show: [Boolean]
- },
- data () {
- return {
- opened: this.show,
- spinning: false,
- title: '新增财务收款单',
- confirmLoading: false,
- formItemLayout: {
- labelCol: { span: 4 },
- wrapperCol: { span: 18 }
- },
- form: {
- buyerSn: undefined, // 客户sn
- buyerName: '',
- settleStyleSn: undefined
- },
- rules: {
- buyerSn: [ { required: true, message: '请选择客户', trigger: ['change', 'blur'] } ]
- }
- }
- },
- methods: {
- // 保存
- handleSubmit (e) {
- e.preventDefault()
- const _this = this
- this.$refs.ruleForm.validate(valid => {
- if (valid) {
- _this.salesSaveFun()
- } else {
- return false
- }
- })
- },
- // 新建或编辑销售单
- salesSaveFun () {
- const _this = this
- const form = this.form
- _this.spinning = true
- salesSave(form).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$emit('ok', res.data)
- if (_this.form.id) {
- _this.$emit('updateData')
- }
- _this.cancel()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- },
- cancel () {
- this.opened = false
- this.$emit('cancel')
- this.$refs.ruleForm.resetFields()
- }
- },
- watch: {
- show (newValue, oldValue) {
- this.opened = newValue
- if (!newValue) {
- this.$refs.ruleForm.resetFields()
- }
- }
- }
- }
- </script>
|