mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-05-14 01:17:20 +08:00
### 0.3.3 专业版:
【新增】后台新增支付单查询功能,实现支付单微信反馈支付数据,防止出现极端情况下,导致的支付数据回调失败而影响订单业务。#I4ZRMR 【新增】后台新增发票上传功能,前端小程序新增发票下载功能。#I4ZYT3 【新增】商家中心订单查询,增加发票下载查看功能。 【新增】代码生成器Controller模板的导出excel请求增加decimal类型的处理。 【优化】调整前端帮助文档默认传值问题,未指定具体分类情况下,默认取第一个栏目数据。 【修复】修复页面设计上传图片后不进行预览的问题。
This commit is contained in:
@@ -186,6 +186,7 @@ var allWidget = {
|
||||
"icon": "icon-shangpin",
|
||||
"value": {
|
||||
"title": '商品组名称',
|
||||
"lookTitle": "true",
|
||||
"lookMore": "true",
|
||||
"type": "auto", //auto自动获取 choose 手动选择
|
||||
"classifyId": '', //所选分类id
|
||||
@@ -542,6 +543,18 @@ Vue.component('upload-img', {
|
||||
}
|
||||
}
|
||||
})
|
||||
Vue.component('upload-video', {
|
||||
template: "#upload-video",
|
||||
data: function () {
|
||||
return {}
|
||||
},
|
||||
props: ['index', "item"],
|
||||
methods: {
|
||||
upload: function () {
|
||||
this.$emit('upload-video');
|
||||
}
|
||||
}
|
||||
})
|
||||
Vue.component('upload-topslide-bg-img', {
|
||||
template: "#upload-topslide-bg-img",
|
||||
data: function () {
|
||||
@@ -1054,6 +1067,30 @@ Vue.component('layout-config', {
|
||||
});
|
||||
});
|
||||
},
|
||||
upVideo: function (index, item) {
|
||||
var _that = this;
|
||||
layui.use(['form', 'table'], function () {
|
||||
layui.admin.popup({
|
||||
title: '上传视频',
|
||||
area: ['800px', '300px'],
|
||||
id: 'LAY-app-CoreCmsCommon-GetNoticeIds',
|
||||
success: function (layero, indexChild) {
|
||||
layui.view(this.id).render('common/getUpLoadVideo', null).done(function () {
|
||||
layui.form.on('submit(LAY-app-getUpLoad-submit)',
|
||||
function (data) {
|
||||
console.log(data);
|
||||
_that.$set(_that.selectWg.value.list[index], 'url', data.field.url)
|
||||
layer.close(indexChild);
|
||||
});
|
||||
});
|
||||
}
|
||||
, btn: ['确定', '取消']
|
||||
, yes: function (index, layero) {
|
||||
layero.contents().find("#LAY-app-getUpLoad-submit").click();
|
||||
}
|
||||
});
|
||||
});
|
||||
},
|
||||
upTopSlideBgImage: function (index, item) {
|
||||
var _that = this;
|
||||
layui.use(['admin', 'coreHelper', 'cropperImg'],
|
||||
|
||||
Reference in New Issue
Block a user