123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <template>
- <div class="wrapper">
- <div class="title">{{title}}</div>
- <el-form class="form" ref="form" :model="form" label-width="80px" :rules="rules">
- <el-form-item class="single" label="商品名:" label-width="120px" prop="title">
- <el-input class="pr-50" placeholder="请输入" v-model="form.title" maxlength="60" :disabled="isdisable"
- show-word-limit>
- </el-input>
- </el-form-item>
- <el-form-item label="类目:" label-width="120px" prop="third_cat_id">
- <el-select v-model="form.third_cat_id" placeholder="请选择" :disabled="isdisable" clearable filterable>
- <el-option v-for="item in categoryList" :key="item.level3" :label="item.level3_name"
- :value="item.level3">
- </el-option>
- <el-option label="无需审核类目" value="-1"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="商品ID:" label-width="100px" prop="out_product_id">
- <el-input placeholder="请输入" :disabled="isdisable||outproductidDisable" v-model="form.out_product_id" maxlength="9" show-word-limit>
- </el-input>
- </el-form-item>
- <el-form-item label="品牌:" label-width="120px" prop="brand_id">
- <el-select v-model="form.brand_id" :disabled="isdisable" placeholder="请选择" clearable filterable>
- <el-option v-for="item in brandList" :key="item.brand_info_id" :label="item.brand_wording"
- :value="item.brand_info_id">
- </el-option>
- <el-option label="无品牌" value="-1"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="商品库存:" label-width="100px" prop="stock_num">
- <el-input placeholder="请输入" :disabled="isdisable" v-model="form.stock_num" maxlength="6" show-word-limit>
- </el-input>
- </el-form-item>
- <el-form-item label="售卖价格:" label-width="120px" prop="sale_price">
- <el-input placeholder="请输入" :disabled="isdisable" maxlength="9" show-word-limit
- v-model="form.sale_price">
- </el-input>
- </el-form-item>
- <el-form-item label="市场价格:" label-width="120px" prop="market_price">
- <el-input placeholder="请输入" :disabled="isdisable" maxlength="9" show-word-limit
- v-model="form.market_price">
- </el-input>
- </el-form-item>
- <el-form-item class="single" label="小程序链接:" label-width="120px" prop="path">
- <el-input class="pr-50" :disabled="isdisable" placeholder="请输入" v-model="form.path" maxlength="100" show-word-limit>
- </el-input>
- </el-form-item>
- <el-form-item label="三级类目:" v-if="form.third_cat_id=='-1'" label-width="120px"
- :rules="[{ required: form.third_cat_id=='-1', message: '请输入必填项', trigger: 'blur' }]">
- <el-input placeholder="请输入" :disabled="isdisable" type='number' oninput="if(value.length>8)value=value.slice(0,8)" v-model="form.third">
- </el-input>
- </el-form-item>
- <el-form-item class="single" label="商品图片:" label-width="120px" required>
- <upload v-if="updatePic" acceptType='.jpg, .jpeg, .png' :disabled="isdisable" ref="upload_goods" :file="goodsList" limitNum="1">
- </upload>
- </el-form-item>
- <el-form-item class="single" label="商品资质图片:" label-width="120px">
- <upload v-if="updatePic" acceptType='.jpg, .jpeg, .png' :disabled="isdisable" ref="upload_zizhi" :file="goodszizhiList" limitNum="10">
- </upload>
- </el-form-item>
- <el-form-item class="commit" v-if="!isdisable">
- <el-button class="blackbtn" :loading="loading" @click.native.prevent="commit">提交
- </el-button>
- </el-form-item>
- </el-form>
- </div>
- </template>
- <script>
- import store from '@/store/index'
- import upload from '@/components/upload'
- import {
- validnumber,
- validPrice
- } from '@/utils/validate'
- import {
- add,
- editDetail,
- edit,
- authDetail
- } from "@/api/goods";
- import {
- getCategoryList
- } from '@/api/category'
- import {
- getBrandList
- } from '@/api/brand'
- export default {
- name: 'addGoods',
- components: {
- upload
- },
- props: {},
- data() {
- return {
- title:'新增商品',
- outproductidDisable:false,
- categoryList: [],
- brandList: [],
- goodsList: [],
- goodszizhiList: [],
- outProductId: 0,
- updatePic: true,
- commodity_id: 0,
- isdisable: false,
- form: {
- title: '',
- third_cat_audit: '',
- out_product_id: '',
- has_brand: '',
- stock_num: '',
- sale_price: '',
- market_price: '',
- path: '',
- third_cat_id: '',
- third: '',
- brand_id: '',
- },
- loading: false,
- rules: {
- title: [{
- required: true,
- message: '请输入必填项',
- trigger: 'blur'
- }],
- third_cat_id: [{
- required: true,
- message: '请选择必填项',
- trigger: 'blur'
- }],
- out_product_id: [{
- required: true,
- validator: validnumber,
- trigger: 'blur'
- }],
- brand_id: [{
- required: true,
- message: '请选择必填项',
- trigger: 'blur'
- }],
- stock_num: [{
- required: true,
- validator: validnumber,
- trigger: 'blur'
- }],
- sale_price: [{
- required: true,
- validator: validPrice,
- trigger: 'blur'
- }],
- market_price: [{
- required: true,
- validator: validPrice,
- trigger: 'blur'
- }],
- path: [{
- required: true,
- message: '请输入必填项',
- trigger: 'blur'
- }],
- },
- };
- },
- watch: {},
- computed: {},
- methods: {
- commit() {
- this.$refs.form.validate(valid => {
- if (valid) {
- if (this.goodsList.length == 0) {
- this.$message.error('请选择至少一张商品图片');
- return
- }
- let zizhiarray = []
- this.goodszizhiList.forEach(element => {
- zizhiarray.push(element.url)
- });
- let params = {
- brand_id: this.form.brand_id == -1 ? 2100000000 : this.form.brand_id,
- has_brand: this.form.brand_id == -1 ? 0 : 1,
- market_price: this.form.market_price,
- out_product_id: this.form.out_product_id,
- path: this.form.path,
- qualificationImgs: zizhiarray.join(","),
- sale_price: this.form.sale_price,
- stock_num: this.form.stock_num,
- third_cat_audit: this.form.third_cat_id == -1 ? 0 : 1,
- third_cat_id: this.form.third_cat_id == -1 ? this.form.third : this.form
- .third_cat_id,
- thumb_img: this.goodsList[0].url,
- title: this.form.title
- }
- this.loading = true
- if (this.outProductId == 0) { //新增
- add(params).then(() => {
- this.$message.success('添加成功');
- store.commit('REMOVETAB', '商品信息')
- this.$router.push('/goods')
- }).catch(() => {
- this.loading = false
- });
- } else { //修改
- params.commodity_id = this.commodity_id
- edit(params).then(() => {
- this.$message.success('修改成功');
- store.commit('REMOVETAB', '商品信息')
- store.commit('REMOVETAB', '商品详情')
- this.$router.push('/goods')
- }).catch(() => {
- this.loading = false
- });
- }
- }
- })
- },
- getDetail() {
- if (this.outProductId != 0) {
- authDetail({
- outProductId: this.outProductId
- }).then(res => {
- this.form.title = res.data.title
- this.form.out_product_id = res.data.out_product_id
- this.form.stock_num = res.data.stock_num
- this.form.sale_price = res.data.sale_price
- this.form.market_price = res.data.market_price
- this.form.path = res.data.path
- this.form.brand_id=res.data.has_brand==0?'-1':res.data.has_brand
- this.form.third=res.data.third_cat_audit==0?res.data.third_cat_id:''
- this.form.third_cat_id =res.data.third_cat_audit==0?'-1':res.data.third_cat_id
- this.commodity_id = res.data.commodity_id
- this.goodsList = [{
- url: res.data.thumb_img
- }]
- this.goodszizhiList = []
- if (res.data?.qualificationImgs?.length > 0) {
- res.data.qualificationImgs.forEach(element => {
- this.goodszizhiList.push({
- url: element
- })
- });
- }
- //刷新子组件
- this.updatePic = false
- this.$nextTick(() => {
- this.updatePic = true
- })
- })
- }
- },
- getCategoryList() { //获取类目列表
- getCategoryList().then(res => {
- this.categoryList = res.data
- })
- },
- getBrandList() { //获取品牌列表
- getBrandList().then(res => {
- this.brandList = res.data
- })
- },
- initPage() {
- this.loading = false
- this.$refs.form.clearValidate()
- if (this.$route.params.outProductId) { //新增获取详情
- this.outProductId = this.$route.params.outProductId
- this.title='修改商品'
- this.isdisable = false
- this.getDetail()
- if (this.$route.params.isDisable) {
- this.title='商品详情'
- this.isdisable = true
- }
- }
- if (this.$route.params.isNew) { //新增清空
- this.title='新增商品'
- this.isdisable = false
- this.outproductidDisable=false
- if(this.$route.params.data){
- this.title='新的审核内容'
- this.outproductidDisable=true
- let data=JSON.parse(this.$route.params.data)
- this.outProductId=data.out_product_id
- this.form.title=data.title
- this.commodity_id=data.commodity_id
- this.form.out_product_id=data.out_product_id
- this.form.stock_num=data.stock_num
- this.form.sale_price=data.sale_price
- this.form.market_price=data.market_price
- this.form.path=data.path
- this.form.third_cat_id=data.third_cat_id
- this.form.third=data.third
- this.form.brand_id=data.brand_id
- this.goodsList=data.goodsList
- this.goodszizhiList=data.goodszizhiList
- }else{
- this.outProductId = 0
- this.form = {
- title: '',
- third_cat_audit: '',
- out_product_id: '',
- has_brand: '',
- stock_num: '',
- sale_price: '',
- market_price: '',
- path: '',
- third_cat_id: '',
- third: '',
- brand_id: '',
- }
- this.goodsList = []
- this.goodszizhiList = []
- }
- //刷新子组件
- this.updatePic = false
- this.$nextTick(() => {
- this.updatePic = true
- })
- }
- }
- },
- created() {},
- activated() {
- this.initPage()
- this.getCategoryList()
- this.getBrandList()
- },
- mounted() {}
- };
- </script>
- <style lang="less" scoped>
- .wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- .title {
- font-weight: bold;
- width: 90%;
- text-align: left;
- margin-left: 100px;
- }
- .form {
- margin-top: 20px;
- width: 75%;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- .el-form-item {
- color: #232323;
- font-weight: 450;
- }
- .el-select {
- width: 300px;
- }
- .el-input {
- width: 300px;
- }
- .single {
- width: 100%;
- .el-input {
- width: 855px;
- }
- .el-select {
- width: 855px;
- }
- }
- .commit {
- width: 100%;
- text-align: center;
- }
- }
- }
- </style>
|