|
@@ -6,81 +6,154 @@
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
:close-on-press-escape="false"
|
|
:close-on-press-escape="false"
|
|
:before-close="close"
|
|
:before-close="close"
|
|
- width="550px"
|
|
|
|
|
|
+ width="820px"
|
|
>
|
|
>
|
|
<el-form
|
|
<el-form
|
|
ref="formRef"
|
|
ref="formRef"
|
|
v-loading="loading"
|
|
v-loading="loading"
|
|
- style="width: 500px"
|
|
|
|
|
|
+ style="width: 780px"
|
|
:rules="rules"
|
|
:rules="rules"
|
|
:model="form"
|
|
:model="form"
|
|
label-width="110px"
|
|
label-width="110px"
|
|
>
|
|
>
|
|
- <el-form-item
|
|
|
|
- :label="$t(prefix + 'label_name')"
|
|
|
|
- prop=""
|
|
|
|
- >
|
|
|
|
- <div>{{ form.product_name }}</div>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="中文品名"
|
|
|
|
- prop=""
|
|
|
|
- >
|
|
|
|
- <div>{{ form.product_name_cn }}</div>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- :label="$t(prefix + 'label_audit')"
|
|
|
|
- prop=""
|
|
|
|
- >
|
|
|
|
- <el-radio-group
|
|
|
|
- v-model="form.status"
|
|
|
|
- @change="formRef!.clearValidate('product_sku')"
|
|
|
|
- >
|
|
|
|
- <el-radio :label="1">审核通过</el-radio>
|
|
|
|
- <el-radio :label="2">审核不通过</el-radio>
|
|
|
|
- </el-radio-group>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- :label="$t(prefix + 'label_category')"
|
|
|
|
- prop="category_id"
|
|
|
|
- >
|
|
|
|
- <el-cascader
|
|
|
|
- v-model="form.category_id"
|
|
|
|
- style="width: 410px"
|
|
|
|
- :options="categoryData"
|
|
|
|
- :props="{ label: 'name', value: 'id' }"
|
|
|
|
- ></el-cascader>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- label="SKU"
|
|
|
|
- prop="product_sku"
|
|
|
|
- >
|
|
|
|
- <el-input v-model="form.product_sku" />
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item
|
|
|
|
- :label="$t(prefix + 'label_feedback')"
|
|
|
|
- prop="feedback"
|
|
|
|
- >
|
|
|
|
- <el-input
|
|
|
|
- v-model="form.feedback"
|
|
|
|
- type="textarea"
|
|
|
|
- :rows="5"
|
|
|
|
- ></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
+ <div class="flex justify-between flex-wrap">
|
|
|
|
+ <el-form-item
|
|
|
|
+ :label="$t(prefix + 'label_category')"
|
|
|
|
+ prop="category_id"
|
|
|
|
+ >
|
|
|
|
+ <el-cascader
|
|
|
|
+ v-model="form.category_id"
|
|
|
|
+ style="width: 410px"
|
|
|
|
+ :options="categoryData"
|
|
|
|
+ :props="{ label: 'name', value: 'id' }"
|
|
|
|
+ ></el-cascader>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ :label="$t(prefix + 'label_name_en')"
|
|
|
|
+ prop="product_name"
|
|
|
|
+ >
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.product_name"
|
|
|
|
+ disabled
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ :label="$t(prefix + 'label_name_cn')"
|
|
|
|
+ prop="product_name_cn"
|
|
|
|
+ >
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.product_name_cn"
|
|
|
|
+ disabled
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Primary SKU"
|
|
|
|
+ prop="product_sku"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.product_sku"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Primary Code"
|
|
|
|
+ prop="product_code"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.product_code"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="SKU"
|
|
|
|
+ prop="sku"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.sku"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="entity"
|
|
|
|
+ prop="entity"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.entity"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="product_type"
|
|
|
|
+ prop="product_type"
|
|
|
|
+ >
|
|
|
|
+ <el-select v-model="form.product_type">
|
|
|
|
+ <el-option value="Express"></el-option>
|
|
|
|
+ <el-option value="indent"></el-option>
|
|
|
|
+ <el-option value="Stock"></el-option>
|
|
|
|
+ <el-option value="Other"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="Classification"
|
|
|
|
+ prop="classification"
|
|
|
|
+ >
|
|
|
|
+ <el-select v-model="form.classification">
|
|
|
|
+ <el-option value="Promo Collection"></el-option>
|
|
|
|
+ <el-option value="Primepac"></el-option>
|
|
|
|
+ <el-option value="Phoenixexhibit"></el-option>
|
|
|
|
+ <el-option value="Material"></el-option>
|
|
|
|
+ <el-option value="Test purpose"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="材质"
|
|
|
|
+ prop="material"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.material"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="颜色"
|
|
|
|
+ prop="colour"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.colour"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="尺寸"
|
|
|
|
+ prop="size"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model="form.size"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ style="align-items: flex-start"
|
|
|
|
+ label="关键词"
|
|
|
|
+ prop="keywords"
|
|
|
|
+ >
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.keywords"
|
|
|
|
+ type="textarea"
|
|
|
|
+ :rows="3"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item :label="$t(prefix + 'lable_image_list')">
|
|
|
|
+ <image-upload
|
|
|
|
+ v-model:list="imageList"
|
|
|
|
+ :disable-preview="true"
|
|
|
|
+ ></image-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item
|
|
|
|
+ :label="$t(prefix + 'label_feedback')"
|
|
|
|
+ prop="feedback"
|
|
|
|
+ >
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.feedback"
|
|
|
|
+ type="textarea"
|
|
|
|
+ :rows="5"
|
|
|
|
+ ></el-input>
|
|
|
|
+ <div class="text-red-500 text-base leading-5">
|
|
|
|
+ 驳回填一下反馈详情直接点驳回就行, 不用管标红的必填项
|
|
|
|
+ </div>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </div>
|
|
</el-form>
|
|
</el-form>
|
|
<template #footer>
|
|
<template #footer>
|
|
<div class="flex justify-center items-center">
|
|
<div class="flex justify-center items-center">
|
|
<el-button
|
|
<el-button
|
|
type="danger"
|
|
type="danger"
|
|
- size="small"
|
|
|
|
- @click="checkForm(2)"
|
|
|
|
|
|
+ @click="checkForm2()"
|
|
>
|
|
>
|
|
驳回
|
|
驳回
|
|
</el-button>
|
|
</el-button>
|
|
<el-button
|
|
<el-button
|
|
- size="small"
|
|
|
|
type="primary"
|
|
type="primary"
|
|
- @click="checkForm(1)"
|
|
|
|
|
|
+ @click="checkForm()"
|
|
>
|
|
>
|
|
审核通过
|
|
审核通过
|
|
</el-button>
|
|
</el-button>
|
|
@@ -90,10 +163,12 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
-import { defineComponent, ref, watch } from 'vue'
|
|
|
|
|
|
+import { defineComponent, ref, watch, nextTick, inject } from 'vue'
|
|
import {
|
|
import {
|
|
- ElRadio,
|
|
|
|
- ElRadioGroup,
|
|
|
|
|
|
+ // ElRadio,
|
|
|
|
+ // ElRadioGroup,
|
|
|
|
+ ElSelect,
|
|
|
|
+ ElOption,
|
|
ElDialog,
|
|
ElDialog,
|
|
ElButton,
|
|
ElButton,
|
|
ElForm,
|
|
ElForm,
|
|
@@ -105,7 +180,9 @@ import {
|
|
import type { FormInstance } from 'element-plus'
|
|
import type { FormInstance } from 'element-plus'
|
|
import cloneDeep from 'lodash.clonedeep'
|
|
import cloneDeep from 'lodash.clonedeep'
|
|
import { $t } from '@/i18n/index'
|
|
import { $t } from '@/i18n/index'
|
|
-import { saveExamine } from '@/api/product'
|
|
|
|
|
|
+import { saveExamine, updateProduct } from '@/api/product'
|
|
|
|
+import imageUpload from '@/components/ImageUpload.vue'
|
|
|
|
+
|
|
defineComponent({
|
|
defineComponent({
|
|
name: 'DialogExamineRecord',
|
|
name: 'DialogExamineRecord',
|
|
})
|
|
})
|
|
@@ -120,6 +197,7 @@ const {
|
|
categoryData: any[]
|
|
categoryData: any[]
|
|
}>()
|
|
}>()
|
|
|
|
|
|
|
|
+const $mediaRegExp = inject('mediaRegExp') as RegExp
|
|
const prefix = 'order.product.'
|
|
const prefix = 'order.product.'
|
|
let show = ref(false)
|
|
let show = ref(false)
|
|
let loading = ref(false)
|
|
let loading = ref(false)
|
|
@@ -130,22 +208,31 @@ const form = ref({
|
|
product_sku: '',
|
|
product_sku: '',
|
|
category_id: [],
|
|
category_id: [],
|
|
images: '',
|
|
images: '',
|
|
- status: 1,
|
|
|
|
|
|
+ status: 0,
|
|
} as any)
|
|
} as any)
|
|
-
|
|
|
|
-const checkSKU = (rule: any, value: any, cb: any) => {
|
|
|
|
- if (form.value.status !== 1) {
|
|
|
|
- cb()
|
|
|
|
- } else {
|
|
|
|
- if (!value) {
|
|
|
|
- cb(new Error($t('text_please_input')))
|
|
|
|
- } else {
|
|
|
|
- cb()
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+const imageList = ref([] as any[])
|
|
const rules = {
|
|
const rules = {
|
|
- product_sku: [{ required: true, validator: checkSKU, trigger: 'change' }],
|
|
|
|
|
|
+ product_name: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ product_name_cn: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ product_sku: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
category_id: [
|
|
category_id: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
@@ -153,6 +240,41 @@ const rules = {
|
|
trigger: 'change',
|
|
trigger: 'change',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
|
|
+ product_code: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ colour: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ material: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ size: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ sku: [
|
|
|
|
+ {
|
|
|
|
+ required: true,
|
|
|
|
+ message: $t('text_please_input'),
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
}
|
|
}
|
|
|
|
|
|
watch(
|
|
watch(
|
|
@@ -176,6 +298,17 @@ watch(
|
|
delete form.value.admin_id
|
|
delete form.value.admin_id
|
|
delete form.value.create_time
|
|
delete form.value.create_time
|
|
delete form.value.update_time
|
|
delete form.value.update_time
|
|
|
|
+ nextTick(() => {
|
|
|
|
+ if (!(Array.isArray(form.value.images) && form.value.images.length))
|
|
|
|
+ return
|
|
|
|
+ imageList.value = form.value.images.map((img: string) => {
|
|
|
|
+ return {
|
|
|
|
+ url: $mediaRegExp.test(img)
|
|
|
|
+ ? img
|
|
|
|
+ : import.meta.env.VITE_APP_OSS_PREFIX + img,
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
}
|
|
}
|
|
},
|
|
},
|
|
)
|
|
)
|
|
@@ -210,39 +343,66 @@ const getCategory = (id: number | string) => {
|
|
|
|
|
|
return result
|
|
return result
|
|
}
|
|
}
|
|
-/**
|
|
|
|
- * flag 2 驳回. 其他通过.
|
|
|
|
- */
|
|
|
|
-const checkForm = (flag: number) => {
|
|
|
|
|
|
+
|
|
|
|
+const checkForm = () => {
|
|
if (!formRef.value) return
|
|
if (!formRef.value) return
|
|
formRef.value.validate((valid) => {
|
|
formRef.value.validate((valid) => {
|
|
if (valid) {
|
|
if (valid) {
|
|
const p = cloneDeep(form.value)
|
|
const p = cloneDeep(form.value)
|
|
-
|
|
|
|
|
|
+ p.images = imageList.value
|
|
|
|
+ .map((i) => {
|
|
|
|
+ return i.url.replace($mediaRegExp, '/')
|
|
|
|
+ })
|
|
|
|
+ .join(',')
|
|
p.category_id = p.category_id[p.category_id.length - 1].toString()
|
|
p.category_id = p.category_id[p.category_id.length - 1].toString()
|
|
- p.status = flag
|
|
|
|
|
|
+ p.status = 1
|
|
p.product_id = p.id
|
|
p.product_id = p.id
|
|
- delete p.product_name
|
|
|
|
- delete p.product_name_cn
|
|
|
|
- delete p.images
|
|
|
|
|
|
|
|
saveExamine(p).then((res: any) => {
|
|
saveExamine(p).then((res: any) => {
|
|
if (res.code === 1) {
|
|
if (res.code === 1) {
|
|
- ElNotification({
|
|
|
|
- title: '操作成功',
|
|
|
|
- message: '正在刷新数据',
|
|
|
|
- duration: 3000,
|
|
|
|
|
|
+ delete p.feedback
|
|
|
|
+ delete p.product_id
|
|
|
|
+ updateProduct(p).then(() => {
|
|
|
|
+ ElNotification({
|
|
|
|
+ title: '操作成功',
|
|
|
|
+ message: '正在刷新数据',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ close()
|
|
})
|
|
})
|
|
- close()
|
|
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
+const checkForm2 = () => {
|
|
|
|
+ const temp = cloneDeep(form.value)
|
|
|
|
+ const p = {
|
|
|
|
+ status: 2,
|
|
|
|
+ id: temp.id,
|
|
|
|
+ feedback: temp.feedback || '',
|
|
|
|
+ product_sku: temp.product_sku,
|
|
|
|
+ product_id: temp.id,
|
|
|
|
+ }
|
|
|
|
+ saveExamine(p).then((res: any) => {
|
|
|
|
+ if (res.code === 1) {
|
|
|
|
+ ElNotification({
|
|
|
|
+ title: '操作成功',
|
|
|
|
+ message: '正在刷新数据',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ close()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
let close = (done = {} as any) => {
|
|
let close = (done = {} as any) => {
|
|
- $emit('update:visible', 0)
|
|
|
|
|
|
+ $emit('update:visible', false)
|
|
if (typeof done === 'function') done()
|
|
if (typeof done === 'function') done()
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped></style>
|
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.el-form-item {
|
|
|
|
+ width: 48%;
|
|
|
|
+}
|
|
|
|
+</style>
|