Browse Source

数据解构导致问题

master_hella_20240701
yufei0306 5 months ago
parent
commit
2567636901
  1. 9
      .env.wyf
  2. 6
      src/components/rowDrop/index.vue

9
.env.wyf

@ -3,6 +3,11 @@ NODE_ENV=test
VITE_DEV=false
# # 请求路径
# VITE_BASE_URL='http://192.168.0.108:12080'
# # 上传路径
# VITE_UPLOAD_URL='http://192.168.0.108:12080/api/admin-api/infra/file/upload'
# 请求路径
VITE_BASE_URL='http://dev.ccwin-in.com:25300/api'
@ -31,7 +36,7 @@ VITE_BASE_PATH=/
VITE_OUT_DIR=sfms3.0
# 自定义接口路径
VITE_INTERFACE_URL='http://dev.ccwin-in.com:25310/magic/web/index.html'
VITE_INTERFACE_URL='http://192.168.0.108:12080/magic/web/index.html'
# 积木报表请求路径
VITE_JMREPORT_BASE_URL='http://dev.ccwin-in.com:25310'
VITE_JMREPORT_BASE_URL='http://192.168.0.108:12080'

6
src/components/rowDrop/index.vue

@ -125,7 +125,11 @@ const dragover = (e) => {
//
const initSelectSta = () => {
RedisApi.getRedis(routeName.value).then(res => {
let _myTableColumns = [...props.allSchemas?.tableColumns,...props.detailAllSchemas?.tableMainColumns]
let _myTableColumns = [...props.allSchemas?.tableColumns]
if(props.detailAllSchemas){
_myTableColumns = [...props.allSchemas?.tableColumns,...props.detailAllSchemas?.tableMainColumns]
}
//
if (res) {
checkedDataList.value = []

Loading…
Cancel
Save