Commit e669fc87 authored by 郭铭瑶's avatar 郭铭瑶 🤘

10/14优化

parent f7958952
...@@ -33,7 +33,7 @@ switch (process.env.NODE_ENV) { ...@@ -33,7 +33,7 @@ switch (process.env.NODE_ENV) {
default: default:
// 本地开发环境 // 本地开发环境
BASE_URL = '/api' // 由 vite.config 代理 BASE_URL = '/api' // 由 vite.config 代理
TOKEN = '8d979525-f8ab-4c62-9d6b-a6eeb62c7455' TOKEN = '468b4d99-0ae6-4451-8c0c-b3508e715b22'
MAP_CONFIG = { MAP_CONFIG = {
jsApiUrl: 'http://10.108.3.41/arcgis_js_api/library/4.18/init.js', jsApiUrl: 'http://10.108.3.41/arcgis_js_api/library/4.18/init.js',
cssUrl: 'http://10.108.3.41/arcgis_js_api/library/4.18/esri/css/main.css', cssUrl: 'http://10.108.3.41/arcgis_js_api/library/4.18/esri/css/main.css',
......
...@@ -235,7 +235,7 @@ const columns = [ ...@@ -235,7 +235,7 @@ const columns = [
(tag: string) => (tag: string) =>
activity?.find((e) => e.name === tag)?.type || 'default', activity?.find((e) => e.name === tag)?.type || 'default',
) )
return h(NSpace, [ return h(NSpace, () => [
...types.map((type, i) => ...types.map((type, i) =>
h( h(
NTag, NTag,
...@@ -254,22 +254,6 @@ const columns = [ ...@@ -254,22 +254,6 @@ const columns = [
), ),
), ),
]) ])
// return row['标签类别']
// ? h(
// NTag,
// {
// size: 'small',
// type: type as
// | 'default'
// | 'error'
// | 'primary'
// | 'info'
// | 'success'
// | 'warning',
// },
// { default: () => row['标签类别'] },
// )
// : ''
}, },
}, },
{ title: '活动地址', key: '活动地址' }, { title: '活动地址', key: '活动地址' },
......
...@@ -633,7 +633,7 @@ const submit = () => { ...@@ -633,7 +633,7 @@ const submit = () => {
活动日期: +(date + '').slice(0, 10), // 截掉10位后的0,不然这接口会认为不是时间戳 活动日期: +(date + '').slice(0, 10), // 截掉10位后的0,不然这接口会认为不是时间戳
活动地址: address || defaultAddress.value, 活动地址: address || defaultAddress.value,
实际参与人数: count, 实际参与人数: count,
不计入参与活动党员人数: excludeCount, 不计入参与活动党员人数: excludeCount || 0,
活动照片: photoList?.map((item: any) => item.url) || [], 活动照片: photoList?.map((item: any) => item.url) || [],
上海2000经度: location.value[0], 上海2000经度: location.value[0],
上海2000纬度: location.value[1], 上海2000纬度: location.value[1],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment