@@ -869,6 +877,8 @@
pointDiscountedProportion() { return this.$store.state.config.pointDiscountedProportion },
pointExchangeModel() { return this.$store.state.config.pointExchangeModel },
pointShowName() { return this.$store.state.config.pointShowName },
+ pointGetModel() { return this.$store.state.config.pointGetModel },
+ pointShowPoint() { return this.$store.state.config.pointShowPoint },
},
watch: {
// 监听数据状态(切换收货地址, 是否使用优惠券, 是否使用积分) 重新请求订单数据
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/content/advert/advertisement/getGoods.html b/CoreCms.Net.Web.Admin/wwwroot/views/content/advert/advertisement/getGoods.html
index 03820bf5..18dcf92d 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/content/advert/advertisement/getGoods.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/content/advert/advertisement/getGoods.html
@@ -86,10 +86,10 @@
{ field: 'id', title: '商品ID', width: 80, sort: false },
{ field: 'name', title: '商品名称', sort: false },
{
- field: 'images', title: '图集', width: 100, sort: false,
+ field: 'image', title: '图集', width: 100, sort: false,
templet: function (d) {
- if (d.images) {
- return '';
+ if (d.image) {
+ return '';
} else {
return '';
}
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/create.html b/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/create.html
index 9f4f33d3..a537b5ce 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/create.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/create.html
@@ -99,7 +99,7 @@
@@ -525,7 +525,6 @@
});
form.verify({
-
verifyname: [/^[\S]{0,100}$/, '表单名称最大只允许输入100位字符,且不能出现空格'],
verifydescription: [/^(.|\n){0,500}$/, '表单描述最大只允许输入255位字符,且不能出现空格'],
verifyheadTypeValue: [/^[\S]{0,200}$/, '表单头值最大只允许输入200位字符,且不能出现空格'],
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/edit.html b/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/edit.html
index f9ecdae6..aed1e2a1 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/edit.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/content/customform/form/edit.html
@@ -101,7 +101,7 @@
@@ -543,6 +543,7 @@
form.verify({
+
verifyname: [/^[\S]{0,100}$/, '表单名称最大只允许输入100位字符,且不能出现空格'],
verifydescription: [/^(.|\n){0,500}$/, '表单描述最大只允许输入255位字符,且不能出现空格'],
verifyheadTypeValue: [/^[\S]{0,200}$/, '表单头值最大只允许输入200位字符,且不能出现空格'],
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/create.html b/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/create.html
index 84b2439c..a1795f74 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/create.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/create.html
@@ -306,7 +306,8 @@
| 货号 |
SKU |
重量(克) |
- 低分最大 可抵金额 |
+ 赠送积分 |
+ 积分最大 可抵金额 |
库存 |
*销售价 |
成本价 |
@@ -345,13 +346,16 @@
{{item.spesDesc}}
-
+
+ |
+
+
|
|
-
+
|
@@ -513,6 +517,7 @@
spesDesc: "",
stock: 1000,
pointsDeduction: 0,
+ points: 0,
weight: 0,
price: 0,
costprice: 0,
@@ -1435,6 +1440,7 @@
productModel.levelTwo = field['product[levelTwo][' + i + ']'];
productModel.levelThree = field['product[levelThree][' + i + ']'];
productModel.pointsDeduction = field['product[pointsDeduction][' + i + ']'];
+ productModel.points = field['product[points][' + i + ']'];
products.push(productModel);
}
//会员价格模型
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/edit.html b/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/edit.html
index 573da5b0..63b53bf6 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/edit.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/good/goods/edit.html
@@ -299,7 +299,8 @@
| SKU |
冻结库存 |
重量(克) |
- 低分最大 可抵金额 |
+ 赠送积分 |
+ 积分最大 可抵金额 |
库存 |
*销售价 |
成本价 |
@@ -341,13 +342,16 @@
{{item.freezeStock}}
-
+
+ |
+
+
|
|
-
+
|
@@ -615,6 +619,7 @@
spesDesc: "",
stock: 1000,
pointsDeduction: 0,
+ points: 0,
weight: 0,
price: 0,
costprice: 0,
@@ -1543,6 +1548,7 @@
productModel.levelTwo = field['product[levelTwo][' + i + ']'];
productModel.levelThree = field['product[levelThree][' + i + ']'];
productModel.pointsDeduction = field['product[pointsDeduction][' + i + ']'];
+ productModel.points = field['product[points][' + i + ']'];
products.push(productModel);
}
//会员价格模型
diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/shop/setting/index.html b/CoreCms.Net.Web.Admin/wwwroot/views/shop/setting/index.html
index 69cbe49b..4c419857 100644
--- a/CoreCms.Net.Web.Admin/wwwroot/views/shop/setting/index.html
+++ b/CoreCms.Net.Web.Admin/wwwroot/views/shop/setting/index.html
@@ -448,10 +448,10 @@
@@ -461,6 +461,24 @@
勾选显示,将在商品详情,购物车等界面显示积分加价格的效果。
+
+
+
+
|