This commit is contained in:
@@ -72,5 +72,35 @@ export default {
|
|||||||
*/
|
*/
|
||||||
getStockAlerts() {
|
getStockAlerts() {
|
||||||
return api.request('/products/alerts', 'GET')
|
return api.request('/products/alerts', 'GET')
|
||||||
|
},
|
||||||
|
|
||||||
|
// ============ 种类属性 ============
|
||||||
|
/**
|
||||||
|
* 获取种类的属性定义
|
||||||
|
*/
|
||||||
|
getCategoryAttributes(categoryId) {
|
||||||
|
return api.request(`/products/categories/${categoryId}/attributes`, 'GET')
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存种类的属性定义
|
||||||
|
*/
|
||||||
|
saveCategoryAttributes(categoryId, attrs) {
|
||||||
|
return api.request(`/products/categories/${categoryId}/attributes`, 'POST', {}, attrs)
|
||||||
|
},
|
||||||
|
|
||||||
|
// ============ 商品属性 ============
|
||||||
|
/**
|
||||||
|
* 获取商品的属性值
|
||||||
|
*/
|
||||||
|
getProductAttributes(productId) {
|
||||||
|
return api.request(`/products/${productId}/attributes`, 'GET')
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存商品的属性值
|
||||||
|
*/
|
||||||
|
saveProductAttributes(productId, attrs) {
|
||||||
|
return api.request(`/products/${productId}/attributes`, 'POST', {}, attrs)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
<text class="category-desc">{{ cat.description || '暂无描述' }}</text>
|
<text class="category-desc">{{ cat.description || '暂无描述' }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="category-actions">
|
<view class="category-actions">
|
||||||
|
<text class="action-btn attr" @click="editAttributes(cat)">属性配置</text>
|
||||||
<text class="action-btn edit" @click="editCategory(cat)">编辑</text>
|
<text class="action-btn edit" @click="editCategory(cat)">编辑</text>
|
||||||
<text class="action-btn delete" @click="deleteCategory(cat)">删除</text>
|
<text class="action-btn delete" @click="deleteCategory(cat)">删除</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -51,6 +52,33 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- 属性配置弹窗 -->
|
||||||
|
<view class="dialog-mask" v-if="showAttrDialog" @click="closeAttrDialog">
|
||||||
|
<view class="dialog dialog-wide" @click.stop>
|
||||||
|
<view class="dialog-header">
|
||||||
|
<text class="dialog-title">{{ currentCategory.name }} - 属性配置</text>
|
||||||
|
</view>
|
||||||
|
<view class="dialog-body">
|
||||||
|
<view v-for="(attr, index) in attributes" :key="index" class="attr-item">
|
||||||
|
<input class="input attr-name" v-model="attr.name" placeholder="属性名称" />
|
||||||
|
<select class="input attr-type" v-model="attr.attrType">
|
||||||
|
<option value="number">数字</option>
|
||||||
|
<option value="text">文本</option>
|
||||||
|
</select>
|
||||||
|
<input class="input attr-unit" v-model="attr.unit" placeholder="单位" />
|
||||||
|
<text class="attr-delete" @click="removeAttr(index)">×</text>
|
||||||
|
</view>
|
||||||
|
<view class="add-attr-btn" @click="addAttr">
|
||||||
|
<text>+ 添加属性</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="dialog-footer">
|
||||||
|
<text class="btn-cancel" @click="closeAttrDialog">取消</text>
|
||||||
|
<text class="btn-confirm" @click="saveAttributes">保存</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -67,7 +95,11 @@ export default {
|
|||||||
categoryId: '',
|
categoryId: '',
|
||||||
name: '',
|
name: '',
|
||||||
description: ''
|
description: ''
|
||||||
}
|
},
|
||||||
|
// 属性配置相关
|
||||||
|
showAttrDialog: false,
|
||||||
|
currentCategory: {},
|
||||||
|
attributes: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
@@ -149,6 +181,48 @@ export default {
|
|||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
uni.showToast({ title: '检查失败', icon: 'none' })
|
uni.showToast({ title: '检查失败', icon: 'none' })
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// ============ 属性配置 ============
|
||||||
|
async editAttributes(cat) {
|
||||||
|
this.currentCategory = cat
|
||||||
|
this.showAttrDialog = true
|
||||||
|
try {
|
||||||
|
const attrs = await productApi.getCategoryAttributes(cat.categoryId)
|
||||||
|
this.attributes = (attrs || []).map(a => ({
|
||||||
|
name: a.name,
|
||||||
|
attrType: a.attrType || 'number',
|
||||||
|
unit: a.unit || '',
|
||||||
|
attrId: a.attrId
|
||||||
|
}))
|
||||||
|
if (this.attributes.length === 0) {
|
||||||
|
this.attributes.push({ name: '', attrType: 'number', unit: '', attrId: '' })
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
this.attributes = [{ name: '', attrType: 'number', unit: '', attrId: '' }]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
addAttr() {
|
||||||
|
this.attributes.push({ name: '', attrType: 'number', unit: '', attrId: '' })
|
||||||
|
},
|
||||||
|
removeAttr(index) {
|
||||||
|
this.attributes.splice(index, 1)
|
||||||
|
},
|
||||||
|
closeAttrDialog() {
|
||||||
|
this.showAttrDialog = false
|
||||||
|
},
|
||||||
|
async saveAttributes() {
|
||||||
|
const validAttrs = this.attributes.filter(a => a.name.trim())
|
||||||
|
if (validAttrs.length === 0) {
|
||||||
|
uni.showToast({ title: '请至少添加一个属性', icon: 'none' })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await productApi.saveCategoryAttributes(this.currentCategory.categoryId, validAttrs)
|
||||||
|
uni.showToast({ title: '保存成功', icon: 'success' })
|
||||||
|
this.closeAttrDialog()
|
||||||
|
} catch (e) {
|
||||||
|
uni.showToast({ title: '保存失败', icon: 'none' })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -220,6 +294,11 @@ export default {
|
|||||||
color: #1890ff;
|
color: #1890ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.action-btn.attr {
|
||||||
|
background: #f6ffed;
|
||||||
|
color: #52c41a;
|
||||||
|
}
|
||||||
|
|
||||||
.action-btn.delete {
|
.action-btn.delete {
|
||||||
background: #fff1f0;
|
background: #fff1f0;
|
||||||
color: #ff4d4f;
|
color: #ff4d4f;
|
||||||
@@ -330,4 +409,60 @@ export default {
|
|||||||
color: #667eea;
|
color: #667eea;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 属性配置弹窗 */
|
||||||
|
.dialog-wide {
|
||||||
|
width: 90%;
|
||||||
|
max-height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-body {
|
||||||
|
max-height: 60vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attr-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10rpx;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attr-name {
|
||||||
|
flex: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attr-type {
|
||||||
|
flex: 1;
|
||||||
|
background: #f5f5f5;
|
||||||
|
border-radius: 12rpx;
|
||||||
|
padding: 0 10rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attr-unit {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attr-delete {
|
||||||
|
width: 60rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #ff4d4f;
|
||||||
|
background: #fff1f0;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.add-attr-btn {
|
||||||
|
padding: 20rpx;
|
||||||
|
text-align: center;
|
||||||
|
color: #667eea;
|
||||||
|
font-size: 28rpx;
|
||||||
|
border: 2rpx dashed #667eea;
|
||||||
|
border-radius: 12rpx;
|
||||||
|
margin-top: 20rpx;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -81,6 +81,13 @@
|
|||||||
</view>
|
</view>
|
||||||
</picker>
|
</picker>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- 动态属性输入 -->
|
||||||
|
<view v-for="(attr, index) in categoryAttributes" :key="index" class="form-item">
|
||||||
|
<text class="label">{{ attr.name }}{{ attr.unit ? '(' + attr.unit + ')' : '' }}</text>
|
||||||
|
<input class="input" v-model="productAttrs[index]" type="digit" placeholder="请输入" />
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="form-item">
|
<view class="form-item">
|
||||||
<text class="label">备注</text>
|
<text class="label">备注</text>
|
||||||
<textarea class="textarea" v-model="form.remark" placeholder="请输入备注" />
|
<textarea class="textarea" v-model="form.remark" placeholder="请输入备注" />
|
||||||
@@ -116,7 +123,9 @@ export default {
|
|||||||
categoryId: '',
|
categoryId: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
status: 1
|
status: 1
|
||||||
}
|
},
|
||||||
|
categoryAttributes: [],
|
||||||
|
productAttrs: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
@@ -164,12 +173,34 @@ export default {
|
|||||||
remark: '',
|
remark: '',
|
||||||
status: 1
|
status: 1
|
||||||
}
|
}
|
||||||
|
this.categoryAttributes = []
|
||||||
|
this.productAttrs = []
|
||||||
this.showModal = true
|
this.showModal = true
|
||||||
},
|
},
|
||||||
editProduct(item) {
|
editProduct(item) {
|
||||||
this.isEdit = true
|
this.isEdit = true
|
||||||
this.form = { ...item }
|
this.form = { ...item }
|
||||||
this.showModal = true
|
this.showModal = true
|
||||||
|
// 加载分类属性和商品属性值
|
||||||
|
this.form.categoryId = item.categoryId
|
||||||
|
this.loadProductAttributes(item.productId)
|
||||||
|
this.loadCategoryAttributes()
|
||||||
|
},
|
||||||
|
async loadProductAttributes(productId) {
|
||||||
|
try {
|
||||||
|
const attrs = await productApi.getProductAttributes(productId)
|
||||||
|
if (attrs && attrs.length > 0) {
|
||||||
|
// 匹配属性值
|
||||||
|
attrs.forEach(a => {
|
||||||
|
const idx = this.categoryAttributes.findIndex(ca => ca.attrId === a.attrId)
|
||||||
|
if (idx >= 0) {
|
||||||
|
this.productAttrs[idx] = a.attrValue
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
closeModal() {
|
closeModal() {
|
||||||
this.showModal = false
|
this.showModal = false
|
||||||
@@ -177,6 +208,20 @@ export default {
|
|||||||
onCategoryChange(e) {
|
onCategoryChange(e) {
|
||||||
const index = e.detail.value
|
const index = e.detail.value
|
||||||
this.form.categoryId = this.categories[index].categoryId
|
this.form.categoryId = this.categories[index].categoryId
|
||||||
|
this.loadCategoryAttributes()
|
||||||
|
},
|
||||||
|
async loadCategoryAttributes() {
|
||||||
|
if (!this.form.categoryId) {
|
||||||
|
this.categoryAttributes = []
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const attrs = await productApi.getCategoryAttributes(this.form.categoryId)
|
||||||
|
this.categoryAttributes = attrs || []
|
||||||
|
this.productAttrs = this.categoryAttributes.map(() => '')
|
||||||
|
} catch (e) {
|
||||||
|
this.categoryAttributes = []
|
||||||
|
}
|
||||||
},
|
},
|
||||||
getCategoryName(categoryId) {
|
getCategoryName(categoryId) {
|
||||||
const cat = this.categories.find(c => c.categoryId === categoryId)
|
const cat = this.categories.find(c => c.categoryId === categoryId)
|
||||||
@@ -197,13 +242,30 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
let productId
|
||||||
if (this.isEdit) {
|
if (this.isEdit) {
|
||||||
await productApi.updateProduct(this.form)
|
const res = await productApi.updateProduct(this.form)
|
||||||
|
productId = this.form.productId
|
||||||
uni.showToast({ title: '更新成功', icon: 'success' })
|
uni.showToast({ title: '更新成功', icon: 'success' })
|
||||||
} else {
|
} else {
|
||||||
await productApi.createProduct(this.form)
|
const res = await productApi.createProduct(this.form)
|
||||||
|
productId = res.productId
|
||||||
uni.showToast({ title: '创建成功', icon: 'success' })
|
uni.showToast({ title: '创建成功', icon: 'success' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 保存商品属性值
|
||||||
|
if (productId && this.categoryAttributes.length > 0) {
|
||||||
|
const attrs = this.categoryAttributes.map((attr, idx) => ({
|
||||||
|
attrId: attr.attrId,
|
||||||
|
attrName: attr.name,
|
||||||
|
attrValue: this.productAttrs[idx] || ''
|
||||||
|
})).filter(a => a.attrValue)
|
||||||
|
|
||||||
|
if (attrs.length > 0) {
|
||||||
|
await productApi.saveProductAttributes(productId, attrs)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.closeModal()
|
this.closeModal()
|
||||||
this.loadProducts()
|
this.loadProducts()
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user