修复各类bug
This commit is contained in:
@@ -9,6 +9,9 @@ export default class Area {
|
|||||||
* @param express
|
* @param express
|
||||||
*/
|
*/
|
||||||
constructor(pcaa) {
|
constructor(pcaa) {
|
||||||
|
if(!pcaa){
|
||||||
|
pcaa = Vue.prototype.$Jpcaa;
|
||||||
|
}
|
||||||
let arr = []
|
let arr = []
|
||||||
const province = pcaa['86']
|
const province = pcaa['86']
|
||||||
Object.keys(province).map(key=>{
|
Object.keys(province).map(key=>{
|
||||||
|
|||||||
@@ -98,6 +98,8 @@ export default {
|
|||||||
// 是否一直显示组件,如果为false则只有点击的时候才出现组件
|
// 是否一直显示组件,如果为false则只有点击的时候才出现组件
|
||||||
// 注:该参数不能动态修改;如果行、列字段多的情况下,会根据机器性能造成不同程度的卡顿。
|
// 注:该参数不能动态修改;如果行、列字段多的情况下,会根据机器性能造成不同程度的卡顿。
|
||||||
alwaysEdit: PropTypes.bool.def(false),
|
alwaysEdit: PropTypes.bool.def(false),
|
||||||
|
// 联动配置,数组,详情配置见文档
|
||||||
|
linkageConfig: PropTypes.array.def(() => []),
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -151,7 +153,10 @@ export default {
|
|||||||
// 允许执行刷新特效的行ID
|
// 允许执行刷新特效的行ID
|
||||||
reloadEffectRowKeysMap: {},
|
reloadEffectRowKeysMap: {},
|
||||||
//配置了但是没有授权的按钮和列 集合
|
//配置了但是没有授权的按钮和列 集合
|
||||||
excludeCode:[]
|
excludeCode:[],
|
||||||
|
// 联动下拉选项(用于隔离不同的下拉选项)
|
||||||
|
// 内部联动配置,map
|
||||||
|
_innerLinkageConfig: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -178,6 +183,18 @@ export default {
|
|||||||
renderOptions.target = this
|
renderOptions.target = this
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 处理联动列,联动列只能作用于 select 组件
|
||||||
|
if (column.$type === JVXETypes.select && this._innerLinkageConfig != null) {
|
||||||
|
// 判断当前列是否是联动列
|
||||||
|
if (this._innerLinkageConfig.has(column.key)) {
|
||||||
|
renderOptions.linkage = {
|
||||||
|
config: this._innerLinkageConfig.get(column.key),
|
||||||
|
getLinkageOptionsSibling: this.getLinkageOptionsSibling,
|
||||||
|
getLinkageOptionsAsync: this.getLinkageOptionsAsync,
|
||||||
|
linkageSelectChange: this.linkageSelectChange,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if (column.editRender) {
|
if (column.editRender) {
|
||||||
Object.assign(column.editRender, renderOptions)
|
Object.assign(column.editRender, renderOptions)
|
||||||
}
|
}
|
||||||
@@ -278,15 +295,21 @@ export default {
|
|||||||
immediate: true,
|
immediate: true,
|
||||||
async handler() {
|
async handler() {
|
||||||
let vxe = await getRefPromise(this, 'vxe')
|
let vxe = await getRefPromise(this, 'vxe')
|
||||||
// 阻断vue监听大数据,提高性能
|
|
||||||
|
|
||||||
// 开启了排序就自动计算排序值
|
this.dataSource.forEach((data, idx) => {
|
||||||
if (this.dragSort) {
|
// 开启了排序就自动计算排序值
|
||||||
this.dataSource.forEach((data, idx) => {
|
if (this.dragSort) {
|
||||||
this.$set(data, this.dragSortKey, idx + 1)
|
this.$set(data, this.dragSortKey, idx + 1)
|
||||||
})
|
}
|
||||||
}
|
// 处理联动回显数据
|
||||||
|
if (this._innerLinkageConfig != null) {
|
||||||
|
for (let configItem of this._innerLinkageConfig.values()) {
|
||||||
|
this.autoSetLinkageOptionsByData(data, '', configItem, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// 阻断vue监听大数据,提高性能
|
||||||
vxe.loadData(this.dataSource)
|
vxe.loadData(this.dataSource)
|
||||||
|
|
||||||
// TODO 解析disabledRows
|
// TODO 解析disabledRows
|
||||||
@@ -469,7 +492,40 @@ export default {
|
|||||||
this._innerColumns = _innerColumns
|
this._innerColumns = _innerColumns
|
||||||
this._innerEditRules = _innerEditRules
|
this._innerEditRules = _innerEditRules
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
// watch linkageConfig
|
||||||
|
// 整理多级联动配置
|
||||||
|
linkageConfig: {
|
||||||
|
immediate: true,
|
||||||
|
handler() {
|
||||||
|
if (Array.isArray(this.linkageConfig) && this.linkageConfig.length > 0) {
|
||||||
|
// 获取联动的key顺序
|
||||||
|
let getLcKeys = (key, arr) => {
|
||||||
|
let col = this._innerColumns.find(col => col.key === key)
|
||||||
|
if (col) {
|
||||||
|
arr.push(col.key)
|
||||||
|
if (col.linkageKey) {
|
||||||
|
return getLcKeys(col.linkageKey, arr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return arr
|
||||||
|
}
|
||||||
|
let configMap = new Map()
|
||||||
|
this.linkageConfig.forEach(lc => {
|
||||||
|
let keys = getLcKeys(lc.key, [])
|
||||||
|
// 多个key共享一个,引用地址
|
||||||
|
let configItem = {
|
||||||
|
...lc, keys,
|
||||||
|
optionsMap: new Map()
|
||||||
|
}
|
||||||
|
keys.forEach(k => configMap.set(k, configItem))
|
||||||
|
})
|
||||||
|
this._innerLinkageConfig = configMap
|
||||||
|
} else {
|
||||||
|
this._innerLinkageConfig = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
},
|
},
|
||||||
@@ -671,6 +727,19 @@ export default {
|
|||||||
// issues/2784
|
// issues/2784
|
||||||
// 先清空所有数据
|
// 先清空所有数据
|
||||||
xTable.loadData([])
|
xTable.loadData([])
|
||||||
|
|
||||||
|
dataSource.forEach((data, idx) => {
|
||||||
|
// 开启了排序就自动计算排序值
|
||||||
|
if (this.dragSort) {
|
||||||
|
this.$set(data, this.dragSortKey, idx + 1)
|
||||||
|
}
|
||||||
|
// 处理联动回显数据
|
||||||
|
if (this._innerLinkageConfig != null) {
|
||||||
|
for (let configItem of this._innerLinkageConfig.values()) {
|
||||||
|
this.autoSetLinkageOptionsByData(data, '', configItem, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
// 再新增
|
// 再新增
|
||||||
return xTable.insertAt(dataSource)
|
return xTable.insertAt(dataSource)
|
||||||
}
|
}
|
||||||
@@ -797,6 +866,7 @@ export default {
|
|||||||
* 添加一行或多行
|
* 添加一行或多行
|
||||||
*
|
*
|
||||||
* @param rows
|
* @param rows
|
||||||
|
* @param isOnlJs 是否是onlineJS增强触发的
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
async addRows(rows = {}, isOnlJs) {
|
async addRows(rows = {}, isOnlJs) {
|
||||||
@@ -896,6 +966,89 @@ export default {
|
|||||||
this.$emit(name, event)
|
this.$emit(name, event)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/** 【多级联动】获取同级联动下拉选项 */
|
||||||
|
getLinkageOptionsSibling(row, col, config, request) {
|
||||||
|
// 如果当前列不是顶级列
|
||||||
|
let key = ''
|
||||||
|
if (col.key !== config.key) {
|
||||||
|
// 就找出联动上级列
|
||||||
|
let idx = config.keys.findIndex(k => col.key === k)
|
||||||
|
let parentKey = config.keys[idx - 1]
|
||||||
|
key = row[parentKey]
|
||||||
|
// 如果联动上级列没有选择数据,就直接返回空数组
|
||||||
|
if (key === '' || key == null) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
key = 'root'
|
||||||
|
}
|
||||||
|
let options = config.optionsMap.get(key)
|
||||||
|
if (!Array.isArray(options)) {
|
||||||
|
if (request) {
|
||||||
|
let parent = key === 'root' ? '' : key
|
||||||
|
return this.getLinkageOptionsAsync(config, parent)
|
||||||
|
} else {
|
||||||
|
options = []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return options
|
||||||
|
},
|
||||||
|
/** 【多级联动】获取联动下拉选项(异步) */
|
||||||
|
getLinkageOptionsAsync(config, parent) {
|
||||||
|
return new Promise(resolve => {
|
||||||
|
let key = parent ? parent : 'root'
|
||||||
|
let options
|
||||||
|
if (config.optionsMap.has(key)) {
|
||||||
|
options = config.optionsMap.get(key)
|
||||||
|
if (options instanceof Promise) {
|
||||||
|
options.then(opt => {
|
||||||
|
config.optionsMap.set(key, opt)
|
||||||
|
resolve(opt)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
resolve(options)
|
||||||
|
}
|
||||||
|
} else if (typeof config.requestData === 'function') {
|
||||||
|
// 调用requestData方法,通过传入parent来获取子级
|
||||||
|
let promise = config.requestData(parent)
|
||||||
|
config.optionsMap.set(key, promise)
|
||||||
|
promise.then(opt => {
|
||||||
|
config.optionsMap.set(key, opt)
|
||||||
|
resolve(opt)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
resolve([])
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 【多级联动】 用于回显数据,自动填充 optionsMap
|
||||||
|
autoSetLinkageOptionsByData(data, parent, config, level) {
|
||||||
|
if (level === 0) {
|
||||||
|
this.getLinkageOptionsAsync(config, '')
|
||||||
|
} else {
|
||||||
|
this.getLinkageOptionsAsync(config, parent)
|
||||||
|
}
|
||||||
|
if (config.keys.length - 1 > level) {
|
||||||
|
let value = data[config.keys[level]]
|
||||||
|
if (value) {
|
||||||
|
this.autoSetLinkageOptionsByData(data, value, config, level + 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 【多级联动】联动组件change时,清空下级组件
|
||||||
|
linkageSelectChange(row, col, config, value) {
|
||||||
|
if (col.linkageKey) {
|
||||||
|
this.getLinkageOptionsAsync(config, value)
|
||||||
|
let idx = config.keys.findIndex(k => k === col.key)
|
||||||
|
let values = {}
|
||||||
|
for (let i = idx; i < config.keys.length; i++) {
|
||||||
|
values[config.keys[i]] = ''
|
||||||
|
}
|
||||||
|
// 清空后几列的数据
|
||||||
|
this.setValues([{rowKey: row.id, values}])
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
/** 加载数据字典并合并到 options */
|
/** 加载数据字典并合并到 options */
|
||||||
_loadDictConcatToOptions(column) {
|
_loadDictConcatToOptions(column) {
|
||||||
initDictOptions(column.dictCode).then((res) => {
|
initDictOptions(column.dictCode).then((res) => {
|
||||||
@@ -1088,6 +1241,15 @@ export default {
|
|||||||
let createValue = getEnhancedMixins(col.$type || col.type, 'createValue')
|
let createValue = getEnhancedMixins(col.$type || col.type, 'createValue')
|
||||||
record[col.key] = createValue({row: record, column, $table: xTable})
|
record[col.key] = createValue({row: record, column, $table: xTable})
|
||||||
}
|
}
|
||||||
|
// update-begin--author:sunjianlei---date:20210819------for: 处理联动列,联动列只能作用于 select 组件
|
||||||
|
if (col.$type === JVXETypes.select && this._innerLinkageConfig != null) {
|
||||||
|
// 判断当前列是否是联动列
|
||||||
|
if (this._innerLinkageConfig.has(col.key)) {
|
||||||
|
let configItem = this._innerLinkageConfig.get(col.key)
|
||||||
|
this.getLinkageOptionsAsync(configItem, '')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// update-end--author:sunjianlei---date:20210819------for: 处理联动列,联动列只能作用于 select 组件
|
||||||
})
|
})
|
||||||
return record
|
return record
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,11 +7,16 @@
|
|||||||
v-bind="selectProps"
|
v-bind="selectProps"
|
||||||
style="width: 100%;"
|
style="width: 100%;"
|
||||||
@blur="handleBlur"
|
@blur="handleBlur"
|
||||||
@change="handleChangeCommon"
|
@change="handleChange"
|
||||||
@search="handleSearchSelect"
|
@search="handleSearchSelect"
|
||||||
>
|
>
|
||||||
|
|
||||||
<template v-for="option of originColumn.options">
|
<div v-if="loading" slot="notFoundContent">
|
||||||
|
<a-icon type="loading" />
|
||||||
|
<span> 加载中…</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<template v-for="option of selectOptions">
|
||||||
<a-select-option :key="option.value" :value="option.value" :disabled="option.disabled">
|
<a-select-option :key="option.value" :value="option.value" :disabled="option.disabled">
|
||||||
<span>{{option.text || option.label || option.title|| option.value}}</span>
|
<span>{{option.text || option.label || option.title|| option.value}}</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
@@ -23,10 +28,18 @@
|
|||||||
<script>
|
<script>
|
||||||
import JVxeCellMixins, { dispatchEvent } from '@/components/jero/JVxeTable/mixins/JVxeCellMixins'
|
import JVxeCellMixins, { dispatchEvent } from '@/components/jero/JVxeTable/mixins/JVxeCellMixins'
|
||||||
import { JVXETypes } from '@comp/jero/JVxeTable/index'
|
import { JVXETypes } from '@comp/jero/JVxeTable/index'
|
||||||
|
import { filterDictText } from '@comp/dict/JDictSelectUtil'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'JVxeSelectCell',
|
name: 'JVxeSelectCell',
|
||||||
mixins: [JVxeCellMixins],
|
mixins: [JVxeCellMixins],
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
// 异步加载的options(用于多级联动)
|
||||||
|
asyncOptions: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
selectProps() {
|
selectProps() {
|
||||||
let props = {...this.cellProps}
|
let props = {...this.cellProps}
|
||||||
@@ -37,6 +50,32 @@
|
|||||||
}
|
}
|
||||||
return props
|
return props
|
||||||
},
|
},
|
||||||
|
// 下拉选项
|
||||||
|
selectOptions() {
|
||||||
|
if (this.asyncOptions) {
|
||||||
|
return this.asyncOptions
|
||||||
|
}
|
||||||
|
let {linkage} = this.renderOptions
|
||||||
|
if (linkage) {
|
||||||
|
let {getLinkageOptionsSibling, config} = linkage
|
||||||
|
let res = getLinkageOptionsSibling(this.row, this.originColumn, config, true)
|
||||||
|
// 当返回Promise时,说明是多级联动
|
||||||
|
if (res instanceof Promise) {
|
||||||
|
this.loading = true
|
||||||
|
res.then(opt => {
|
||||||
|
this.asyncOptions = opt
|
||||||
|
this.loading = false
|
||||||
|
}).catch(e => {
|
||||||
|
console.error(e)
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.asyncOptions = null
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return this.originColumn.options
|
||||||
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
let multiple = [JVXETypes.selectMultiple, JVXETypes.list_multi]
|
let multiple = [JVXETypes.selectMultiple, JVXETypes.list_multi]
|
||||||
@@ -53,7 +92,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleChange(value) {
|
||||||
|
debugger
|
||||||
|
// 处理下级联动
|
||||||
|
let linkage = this.renderOptions.linkage
|
||||||
|
if (linkage) {
|
||||||
|
linkage.linkageSelectChange(this.row, this.originColumn, linkage.config, value)
|
||||||
|
}
|
||||||
|
this.handleChangeCommon(value)
|
||||||
|
},
|
||||||
/** 处理blur失去焦点事件 */
|
/** 处理blur失去焦点事件 */
|
||||||
handleBlur(value) {
|
handleBlur(value) {
|
||||||
let {allowInput, options} = this.originColumn
|
let {allowInput, options} = this.originColumn
|
||||||
@@ -120,7 +167,28 @@
|
|||||||
dispatchEvent.call(this, event, 'ant-select')
|
dispatchEvent.call(this, event, 'ant-select')
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
translate: {enabled: true},
|
translate: {
|
||||||
|
enabled: true,
|
||||||
|
async handler(value,) {
|
||||||
|
let options
|
||||||
|
let {linkage} = this.renderOptions
|
||||||
|
// 判断是否是多级联动,如果是就通过接口异步翻译
|
||||||
|
if (linkage) {
|
||||||
|
let {getLinkageOptionsSibling, config} = linkage
|
||||||
|
options = getLinkageOptionsSibling(this.row, this.originColumn, config, true)
|
||||||
|
if (options instanceof Promise) {
|
||||||
|
return new Promise(resolve => {
|
||||||
|
options.then(opt => {
|
||||||
|
resolve(filterDictText(opt, value))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
options = this.column.own.options
|
||||||
|
}
|
||||||
|
return filterDictText(options, value)
|
||||||
|
},
|
||||||
|
},
|
||||||
getValue(value) {
|
getValue(value) {
|
||||||
if (Array.isArray(value)) {
|
if (Array.isArray(value)) {
|
||||||
return value.join(',')
|
return value.join(',')
|
||||||
|
|||||||
@@ -102,7 +102,13 @@ export default {
|
|||||||
|
|
||||||
// 判断是否启用翻译
|
// 判断是否启用翻译
|
||||||
if (this.renderType === JVXERenderType.spaner && this.enhanced.translate.enabled) {
|
if (this.renderType === JVXERenderType.spaner && this.enhanced.translate.enabled) {
|
||||||
this.innerValue = this.enhanced.translate.handler.call(this, value)
|
let res = this.enhanced.translate.handler.call(this, value)
|
||||||
|
// 异步翻译,目前仅【多级联动】使用
|
||||||
|
if (res instanceof Promise) {
|
||||||
|
res.then(value => this.innerValue = value)
|
||||||
|
} else {
|
||||||
|
this.innerValue = res
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -53,6 +53,9 @@ export const JEditableTableMixin = {
|
|||||||
this.tableReset();
|
this.tableReset();
|
||||||
resolve();
|
resolve();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
|
if (typeof this.addBefore === 'function') {
|
||||||
|
this.addBefore()
|
||||||
|
}
|
||||||
// 默认新增空数据
|
// 默认新增空数据
|
||||||
let rowNum = this.addDefaultRowNum
|
let rowNum = this.addDefaultRowNum
|
||||||
if (typeof rowNum !== 'number') {
|
if (typeof rowNum !== 'number') {
|
||||||
|
|||||||
@@ -51,7 +51,9 @@ export const JEditableTableModelMixin = {
|
|||||||
this.tableReset();
|
this.tableReset();
|
||||||
resolve();
|
resolve();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
if (typeof this.addBefore === 'function') this.addBefore()
|
if (typeof this.addBefore === 'function'){
|
||||||
|
this.addBefore()
|
||||||
|
}
|
||||||
// 默认新增空数据
|
// 默认新增空数据
|
||||||
let rowNum = this.addDefaultRowNum
|
let rowNum = this.addDefaultRowNum
|
||||||
if (typeof rowNum !== 'number') {
|
if (typeof rowNum !== 'number') {
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ import Vuex from 'vuex'
|
|||||||
|
|
||||||
import app from './modules/app'
|
import app from './modules/app'
|
||||||
import user from './modules/user'
|
import user from './modules/user'
|
||||||
|
import enhance from './modules/enhance'
|
||||||
|
import online from './modules/online'
|
||||||
import permission from './modules/permission'
|
import permission from './modules/permission'
|
||||||
import getters from './getters'
|
import getters from './getters'
|
||||||
|
|
||||||
@@ -13,6 +15,8 @@ export default new Vuex.Store({
|
|||||||
app,
|
app,
|
||||||
user,
|
user,
|
||||||
permission,
|
permission,
|
||||||
|
enhance,
|
||||||
|
online,
|
||||||
},
|
},
|
||||||
state: {
|
state: {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user