123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <template>
- <a-modal
- centered
- class="productCategoryEdit-modal"
- :footer="null"
- :maskClosable="false"
- :title="modalTit"
- v-model="isShow"
- @cancel="isShow=false"
- :width="800">
- <!-- 表单 -->
- <div>
- <a-spin :spinning="spinning" tip="Loading...">
- <a-form-model
- id="productCategoryEdit-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol"
- >
- <a-form-model-item label="所属分类" v-if="parentType">
- {{ parentType }}
- </a-form-model-item>
- <a-form-model-item label="产品分类名称" prop="productTypeName">
- <a-input
- v-model.trim="form.productTypeName"
- @change="filterEmpty"
- id="productCategoryEdit-name"
- :maxLength="30"
- allowClear
- placeholder="请输入产品分类名称(最多30个字符)" />
- </a-form-model-item>
- </a-form-model>
- <div class="btn-cont">
- <a-button type="primary" id="product-category-edit-modal-save" @click="handleSave">保存</a-button>
- <a-button id="product-category-edit-modal-back" @click="isShow = false" style="margin-left: 15px;">返回列表</a-button>
- </div>
- </a-spin>
- </div>
- </a-modal>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable } from '@/components'
- import { productTypeSave } from '@/api/productType'
- export default {
- name: 'ProductCategoryEditModal',
- mixins: [commonMixin],
- components: { STable },
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- itemSn: {
- type: [Number, String],
- default: ''
- },
- nowData: {
- type: Object,
- default: null
- }
- },
- computed: {
- modalTit () {
- return (this.itemSn ? '编辑' : '新增') + '产品分类'
- }
- },
- data () {
- return {
- isShow: this.openModal, // 是否打开弹框
- spinning: false,
- formItemLayout: {
- labelCol: { span: 6 },
- wrapperCol: { span: 16 }
- },
- form: {
- productTypeName: '' // 产品分类名称
- },
- rules: {
- productTypeName: [
- { required: true, message: '请输入产品分类名称', trigger: 'blur' }
- ]
- },
- parentType: '' // 父级分类
- }
- },
- methods: {
- filterEmpty () {
- let str = this.form.productTypeName
- str = str.replace(/\ +/g, '')
- str = str.replace(/[ ]/g, '')
- str = str.replace(/[\r\n]/g, '')
- this.form.productTypeName = str
- },
- // 保存
- handleSave () {
- const _this = this
- _this.$refs.ruleForm.validate(valid => {
- if (valid) {
- const formData = JSON.parse(JSON.stringify(_this.form))
- if (_this.itemSn) { // 编辑
- formData.productTypeSn = _this.nowData && _this.nowData.productTypeSn ? _this.nowData.productTypeSn : undefined
- } else { // 新增子级
- formData.parentSn = _this.nowData && _this.nowData.productTypeSn ? _this.nowData.productTypeSn : undefined
- }
- _this.spinning = true
- productTypeSave(formData).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$emit('ok')
- _this.isShow = false
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- } else {
- return false
- }
- })
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- this.$refs.ruleForm.resetFields()
- } else {
- // 获取父级分类 名称
- if (this.nowData && this.nowData.namePaths) {
- let namePathsArr = []
- namePathsArr = this.nowData.namePaths.split(',')
- if (this.itemSn) { // 编辑 编辑时不显示当前分类
- namePathsArr = namePathsArr.slice(0, namePathsArr.length - 1)
- }
- this.parentType = ''
- namePathsArr.map((item, index) => {
- this.parentType += item + ' > '
- })
- this.parentType = this.parentType ? this.parentType.substr(0, this.parentType.length - 3) : ''
- } else {
- this.parentType = ''
- }
- }
- },
- itemSn (newValue, oldValue) {
- if (this.isShow && newValue) {
- this.form.productTypeName = this.nowData && this.nowData.productTypeName ? this.nowData.productTypeName : ''
- } else {
- this.form.productTypeName = ''
- }
- }
- }
- }
- </script>
- <style lang="less">
- .productCategoryEdit-modal{
- .ant-modal-body {
- padding: 40px 40px 24px;
- }
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- }
- </style>
|