## v1.3.1 更新列表
1. 【修复】申请退款后积分等操作可能出现错误的问题 2. 【修复】拼团支付可能出现支付错误的问题 3. 【修复】退款申请后的订单流程优化和积分赠送的问题 4. 【修复】回收站中的商品无法恢复的问题 5. 【修复】一号通短信查询记录不完整的问题 6. 【修复】用户管理批量加分组,标签的问题 7. 【修复】积分日志搜索显示有误的问题 8. 【修复】手动发送优惠券可能会出错的问题 9. 【修复】核销订单创建在某种条件下会出错的问题 10. 【修复】移动端商品详情,购物车等样式兼容问题 11. 【修复】业务流程性的优化
This commit is contained in:
@@ -82,7 +82,6 @@
|
||||
|
||||
<script>
|
||||
import edit from './combineEdit'
|
||||
import * as constants from '@/utils/constants.js'
|
||||
import * as systemGroupDataApi from '@/api/systemGroupData.js'
|
||||
import * as systemFormConfigApi from '@/api/systemFormConfig.js'
|
||||
export default {
|
||||
@@ -96,13 +95,13 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
constants,
|
||||
constants: this.$constants,
|
||||
listPram: {
|
||||
gid: null,
|
||||
keywords: null,
|
||||
status: null, // 1=开启 2=关闭
|
||||
page: 1,
|
||||
pageSize: constants.page.limit[0]
|
||||
pageSize: this.$constants.page.limit[0]
|
||||
},
|
||||
editDataConfig: {
|
||||
visible: false,
|
||||
|
||||
@@ -57,7 +57,6 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as constants from '@/utils/constants.js'
|
||||
import edit from '@/views/maintain/devconfig/combinedDataEdit'
|
||||
import * as systemGroupApi from '@/api/systemGroup'
|
||||
import cmDataList from './combineDataList'
|
||||
@@ -66,7 +65,7 @@ export default {
|
||||
components: { edit, cmDataList },
|
||||
data() {
|
||||
return {
|
||||
constants,
|
||||
constants: this.$constants,
|
||||
dataList: {
|
||||
list: [],
|
||||
total: 0
|
||||
@@ -74,7 +73,7 @@ export default {
|
||||
listPram: {
|
||||
keywords: null,
|
||||
page: 1,
|
||||
pageSize: constants.page.limit[0]
|
||||
pageSize: this.$constants.page.limit[0]
|
||||
},
|
||||
editDialogConfig: {
|
||||
visible: false,
|
||||
|
||||
@@ -51,7 +51,6 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as constants from '@/utils/constants.js'
|
||||
import * as categoryApi from '@/api/categoryApi.js'
|
||||
import * as selfUtil from '@/utils/ZBKJIutil.js'
|
||||
export default {
|
||||
@@ -74,14 +73,14 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
constants,
|
||||
constants: this.$constants,
|
||||
editPram: {
|
||||
extra: null, // 关联表单id
|
||||
name: null,
|
||||
pid: null,
|
||||
sort: 0,
|
||||
status: true,
|
||||
type: constants.categoryType[5].value,
|
||||
type: this.$constants.categoryType[5].value,
|
||||
url: null,
|
||||
id: 0
|
||||
},
|
||||
|
||||
@@ -87,7 +87,6 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as constants from '@/utils/constants.js'
|
||||
import * as categoryApi from '@/api/categoryApi.js'
|
||||
import edit from '@/views/maintain/devconfig/configCategotyEdit.vue'
|
||||
import * as selfUtil from '@/utils/ZBKJIutil.js'
|
||||
@@ -101,7 +100,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
constants,
|
||||
constants: this.$constants,
|
||||
searchPram: {
|
||||
status: null,
|
||||
type: null
|
||||
@@ -115,11 +114,11 @@ export default {
|
||||
treeList: [],
|
||||
listPram: {
|
||||
pid: 0,
|
||||
type: constants.categoryType[5].value,
|
||||
type: this.$constants.categoryType[5].value,
|
||||
status: null,
|
||||
name: null,
|
||||
page: constants.page.page,
|
||||
limit: constants.page.limit[1]
|
||||
page: this.$constants.page.page,
|
||||
limit: this.$constants.page.limit[1]
|
||||
},
|
||||
configFormSelectedDialog: {
|
||||
visible: false,
|
||||
@@ -172,7 +171,7 @@ export default {
|
||||
},
|
||||
handlerGetTreeList() {
|
||||
// status: this.selectModel?1:-1
|
||||
const _pram = { type: constants.categoryType[5].value, status: -1 }
|
||||
const _pram = { type: this.constants.categoryType[5].value, status: -1 }
|
||||
categoryApi.treeCategroy(_pram).then(data => {
|
||||
this.treeList = this.handleAddArrt(data)
|
||||
})
|
||||
|
||||
@@ -63,7 +63,6 @@
|
||||
|
||||
<script>
|
||||
import * as systemFormConfigApi from '@/api/systemFormConfig.js'
|
||||
import * as constants from '@/utils/constants.js'
|
||||
import edit from './edit'
|
||||
export default {
|
||||
// name: "index"
|
||||
@@ -76,11 +75,11 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
constants,
|
||||
constants: this.$constants,
|
||||
listPram: {
|
||||
keywords: null,
|
||||
page: 1,
|
||||
limit: constants.page.limit[0]
|
||||
limit: this.$constants.page.limit[0]
|
||||
},
|
||||
editDialogConfig: {
|
||||
visible: false,
|
||||
|
||||
Reference in New Issue
Block a user