Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
ops_2024_vue
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
ops_2024_vue
Commits
aaa1adfc
Commit
aaa1adfc
authored
Apr 02, 2024
by
limengyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(lmy):0402优化
parent
53e45829
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1757 additions
and
1803 deletions
+1757
-1803
src/api/regionalSpotManage/index.ts
src/api/regionalSpotManage/index.ts
+50
-22
src/design/ant/index.less
src/design/ant/index.less
+1
-1
src/main.ts
src/main.ts
+1
-1
src/views/regionalSpotManage/components/addProduct.vue
src/views/regionalSpotManage/components/addProduct.vue
+470
-526
src/views/regionalSpotManage/components/downLoadTask.vue
src/views/regionalSpotManage/components/downLoadTask.vue
+72
-74
src/views/regionalSpotManage/components/list.vue
src/views/regionalSpotManage/components/list.vue
+712
-774
src/views/regionalSpotManage/components/platformProBatch.vue
src/views/regionalSpotManage/components/platformProBatch.vue
+295
-275
src/views/regionalSpotManage/components/upLoadTask.vue
src/views/regionalSpotManage/components/upLoadTask.vue
+119
-119
src/views/regionalSpotManage/index.vue
src/views/regionalSpotManage/index.vue
+37
-11
No files found.
src/api/regionalSpotManage/index.ts
View file @
aaa1adfc
import
{
tmallabHttp
}
from
'
/@/utils/http/axios
'
;
import
{
tmallabHttp
}
from
'
/@/utils/http/axios
'
;
import
{
ContentTypeEnum
}
from
'
/@/enums/httpEnum
'
;
enum
Api
{
enum
Api
{
List
=
'
/system/productNegotiated/getList
'
,
GetStatus
=
'
/system/opsProduct/IsOpsSupplier
'
,
BrandList
=
'
/regionalSpotManage/commit
'
,
List
=
'
/system/opsProduct/getList
'
,
GroupList
=
'
/system/opsProduct/getTypeList
'
,
BrandList
=
'
/system/supplierBrandQualification/getApproveList
'
,
ProductList
=
'
/system/productNegotiated/getProductList
'
,
GetAreaList
=
'
/system/opsProduct/getAreaList
'
,
GetAreaList
=
'
/system/opsProduct/getAreaList
'
,
OpsAddProduct
=
'
/system/opsProduct/opsAddProduct
'
,
OpsAddProduct
=
'
/system/opsProduct/opsAddProduct
'
,
GetGhsAreaList
=
'
/system/opsProduct/getGhsAreaList
'
,
GetGhsAreaList
=
'
/system/opsProduct/getGhsAreaList
'
,
...
@@ -16,71 +20,95 @@ enum Api {
...
@@ -16,71 +20,95 @@ enum Api {
/**
/**
* @description: 区域现货管理列表
* @description: 区域现货管理列表
*/
*/
export
const
regionalSpotManageListApi
=
(
data
)
=>
export
const
regionalSpotManageGetStatusApi
=
()
=>
tmallabHttp
.
post
({
url
:
Api
.
GetStatus
});
tmallabHttp
.
post
({
url
:
Api
.
List
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
* @description: 区域现货管理列表
*/
export
const
regionalSpotManageListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
List
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 获取品牌列表
* @description: 获取品牌列表
*/
*/
export
const
regionalSpotManageBrandListApi
=
(
data
)
=>
export
const
regionalSpotManageBrandListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
BrandList
,
data
},
{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
BrandList
,
data
});
/**
* @description: 获取分组列表
*/
export
const
regionalSpotManageGroupListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
GroupList
,
data
});
/**
* @description: 获取左边穿梭框商品列表
*/
export
const
regionalSpotManageProductListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
ProductList
,
data
});
/**
/**
* @description: 获取现货区域列表
* @description: 获取现货区域列表
*/
*/
export
const
regionalSpotManageGetAreaListApi
=
(
data
)
=>
export
const
regionalSpotManageGetAreaListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
GetAreaList
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
GetAreaList
,
data
});
/**
/**
* @description: 新增商品接口
* @description: 新增商品接口
*/
*/
export
const
regionalSpotManageOpsAddProductApi
=
(
data
)
=>
export
const
regionalSpotManageOpsAddProductApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
OpsAddProduct
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
OpsAddProduct
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 获取已开通区域
* @description: 获取已开通区域
*/
*/
export
const
regionalSpotManageGetGhsAreaListApi
=
(
data
)
=>
export
const
regionalSpotManageGetGhsAreaListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
GetGhsAreaList
,
data
}
,{
errorMessageMode
:
'
message
'
}
);
tmallabHttp
.
post
({
url
:
Api
.
GetGhsAreaList
,
data
});
/**
/**
* @description: 单条/批量删除
* @description: 单条/批量删除
*/
*/
export
const
regionalSpotManageOpsDeleteProductApi
=
(
data
)
=>
export
const
regionalSpotManageOpsDeleteProductApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
OpsDeleteProduct
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
OpsDeleteProduct
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 增加区域
* @description: 增加区域
*/
*/
export
const
regionalSpotManageOpsEditProductApi
=
(
data
)
=>
export
const
regionalSpotManageOpsEditProductApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
OpsEditProduct
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
OpsEditProduct
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 批量上传
* @description: 批量上传
*/
*/
export
const
regionalSpotManageUploadOpsProductApi
=
(
data
)
=>
export
const
regionalSpotManageUploadOpsProductApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
UploadOpsProduct
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
(
{
url
:
Api
.
UploadOpsProduct
,
data
,
headers
:
{
'
Content-Type
'
:
ContentTypeEnum
.
FORM_DATA
},
},
{
errorMessageMode
:
'
message
'
},
);
/**
/**
* @description: 任务中心获取列表
* @description: 任务中心获取列表
*/
*/
export
const
taskCenterQueryListApi
=
(
data
)
=>
export
const
taskCenterQueryListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
RevokeExcelUpload
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
RevokeExcelUpload
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 撤销
* @description: 撤销
*/
*/
export
const
taskCenterRevokeExcelUploadApi
=
(
data
)
=>
export
const
taskCenterRevokeExcelUploadApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
RevokeExcelUpload
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
RevokeExcelUpload
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 任务中心获取列表--平台商品批量页签
* @description: 任务中心获取列表--平台商品批量页签
*/
*/
export
const
platformProBatchGetListApi
=
(
data
)
=>
export
const
platformProBatchGetListApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
PlatformProBatchList
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
PlatformProBatchList
,
data
},
{
errorMessageMode
:
'
message
'
});
/**
/**
* @description: 任务中心获取列表--平台商品批量页签--操作记录详情
* @description: 任务中心获取列表--平台商品批量页签--操作记录详情
*/
*/
export
const
platformProBatchGetDetailApi
=
(
data
)
=>
export
const
platformProBatchGetDetailApi
=
(
data
)
=>
tmallabHttp
.
post
({
url
:
Api
.
PlatformProBatchGetDetail
,
data
},{
errorMessageMode
:
'
message
'
});
tmallabHttp
.
post
({
url
:
Api
.
PlatformProBatchGetDetail
,
data
},
{
errorMessageMode
:
'
message
'
});
src/design/ant/index.less
View file @
aaa1adfc
...
@@ -69,5 +69,5 @@ span.anticon:not(.app-iconify) {
...
@@ -69,5 +69,5 @@ span.anticon:not(.app-iconify) {
margin-left: 24px;
margin-left: 24px;
}
}
.ant-modal-body {
.ant-modal-body {
margin-top: 20px
;
padding: 20px !important
;
}
}
src/main.ts
View file @
aaa1adfc
...
@@ -41,7 +41,7 @@ async function bootstrap() {
...
@@ -41,7 +41,7 @@ async function bootstrap() {
app
.
use
(
Antd
);
app
.
use
(
Antd
);
app
.
mount
(
'
#app
'
);
app
.
mount
(
'
#app
'
);
app
.
use
(
Antd
)
app
.
use
(
Antd
)
;
}
}
bootstrap
();
bootstrap
();
src/views/regionalSpotManage/components/addProduct.vue
View file @
aaa1adfc
This diff is collapsed.
Click to expand it.
src/views/regionalSpotManage/components/downLoadTask.vue
View file @
aaa1adfc
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
ref
,
onMounted
}
from
'
vue
'
;
import
{
ref
,
onMounted
}
from
'
vue
'
;
const
config
=
import
.
meta
.
env
const
config
=
import
.
meta
.
env
;
import
{
import
{
taskCenterQueryListApi
}
from
'
/@/api/regionalSpotManage
'
;
taskCenterQueryListApi
,
onMounted
(
async
()
=>
{
}
from
'
/@/api/regionalSpotManage
'
;
getList
();
onMounted
(
async
()
=>
{
});
getList
()
let
list
=
ref
<
any
[]
>
([]);
});
let
listLoading
=
ref
(
false
);
let
list
=
ref
<
any
[]
>
([])
const
downLoad
=
(
url
)
=>
{
let
listLoading
=
ref
(
false
)
window
.
open
(
config
.
VITE_GLOB_API_URL
+
'
/system/
'
+
url
,
'
_blank
'
);
const
downLoad
=
(
url
)
=>
{
};
window
.
open
(
config
.
VITE_GLOB_API_URL
+
'
/system/
'
+
url
,
'
_blank
'
)
const
getList
=
async
()
=>
{
}
listLoading
.
value
=
true
;
const
getList
=
async
()
=>
{
const
res
=
await
taskCenterQueryListApi
({
type
:
1
});
listLoading
.
value
=
true
if
(
res
.
success
)
{
const
res
=
await
taskCenterQueryListApi
({
type
:
1
})
list
.
value
=
res
.
data
;
if
(
res
.
code
===
20000
)
{
}
else
{
list
.
value
=
res
.
data
list
.
value
=
[];
}
else
{
}
list
.
value
=
[]
listLoading
.
value
=
false
;
}
};
listLoading
.
value
=
false
</
script
>
}
</
script
>
<
template
>
<div>
<
template
>
<a-button
@
click=
"getList"
type=
"primary"
>
刷新数据
</a-button>
<div>
</div>
<a-button
@
click=
"getList"
type=
"primary"
>
刷新数据
</a-button>
<a-table
</div>
:data-source=
"list"
<a-table
:loading=
"listLoading"
:data-source=
"list"
bordered
:loading=
"listLoading"
:rowKey=
"(record) => record.sysid"
bordered
style=
"margin-top: 15px"
:rowKey=
"(record) => record.sysid"
>
style=
"margin-top: 15px"
<a-table-column
title=
"操作时间"
align=
"center"
:width=
"100"
>
>
<template
#default
="
{ record }">
<a-table-column
title=
"操作时间"
align=
"center"
:width=
"100"
>
{{
record
.
createTime
}}
<template
v-slot=
"
{record}">
</
template
>
{{
record
.
createTime
}}
</a-table-column>
</
template
>
<a-table-column
title=
"类型"
align=
"center"
:width=
"100"
>
</a-table-column>
<
template
#default
="{
record
}"
>
<a-table-column
title=
"类型"
align=
"center"
:width=
"100"
>
{{
record
.
type
}}
<
template
v-slot=
"{record}"
>
</
template
>
{{
record
.
type
}}
</a-table-column>
</
template
>
<a-table-column
title=
"导出状态"
align=
"center"
:width=
"100"
>
</a-table-column>
<
template
#default
="{
record
}"
>
<a-table-column
title=
"导出状态"
align=
"center"
:width=
"100"
>
<p>
{{
record
.
status
==
0
?
'
待进行
'
:
record
.
status
==
1
?
'
进行中
'
:
'
已完成
'
}}
</p>
<
template
v-slot=
"{record}"
>
</
template
>
<p>
{{
record
.
status
==
0
?
'
待进行
'
:
(
record
.
status
==
1
?
'
进行中
'
:
'
已完成
'
)
}}
</p>
</a-table-column>
</
template
>
<a-table-column
title=
"数据量"
align=
"center"
:width=
"100"
>
</a-table-column>
<
template
#default
="{
record
}"
>
<a-table-column
title=
"数据量"
align=
"center"
:width=
"100"
>
{{
record
.
successNum
}}
<
template
v-slot=
"{record}"
>
</
template
>
{{
record
.
successNum
}}
</a-table-column>
</
template
>
<a-table-column
title=
"操作人"
align=
"center"
:width=
"100"
>
</a-table-column>
<
template
#default
="{
record
}"
>
<a-table-column
title=
"操作人"
align=
"center"
:width=
"100"
>
{{
record
.
createName
}}
<
template
v-slot=
"{record}"
>
</
template
>
{{
record
.
createName
}}
</a-table-column>
</
template
>
<a-table-column
title=
"操作"
align=
"center"
:width=
"200"
>
</a-table-column>
<
template
#default
="{
record
}"
>
<a-table-column
title=
"操作"
align=
"center"
:width=
"200"
>
<Button
v-if=
"record.fileUrl"
type=
"link"
@
click=
"downLoad(record.fileUrl)"
<
template
v-slot=
"{record}"
>
>
下载文件
</Button
<Button
v-if=
"record.fileUrl"
type=
"link"
@
click=
"downLoad(record.fileUrl)"
>
下载文件
</Button>
>
<span
v-else
>
——
</span>
<span
v-else
>
——
</span>
</
template
>
</
template
>
</a-table-column>
</a-table-column>
</a-table>
</a-table>
</template>
</template>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
></
style
>
</
style
>
src/views/regionalSpotManage/components/list.vue
View file @
aaa1adfc
This diff is collapsed.
Click to expand it.
src/views/regionalSpotManage/components/platformProBatch.vue
View file @
aaa1adfc
This diff is collapsed.
Click to expand it.
src/views/regionalSpotManage/components/upLoadTask.vue
View file @
aaa1adfc
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
ref
,
onMounted
}
from
'
vue
'
;
import
{
ref
,
onMounted
}
from
'
vue
'
;
import
{
message
}
from
'
ant-design-vue
'
;
import
{
message
}
from
'
ant-design-vue
'
;
const
config
=
import
.
meta
.
env
;
const
config
=
import
.
meta
.
env
;
import
{
import
{
taskCenterQueryListApi
,
taskCenterQueryListApi
,
taskCenterRevokeExcelUploadApi
,
taskCenterRevokeExcelUploadApi
,
}
from
'
/@/api/regionalSpotManage
'
;
}
from
'
/@/api/regionalSpotManage
'
;
onMounted
(
async
()
=>
{
onMounted
(
async
()
=>
{
getList
();
getList
();
});
});
let
list
=
ref
<
any
[]
>
([]);
let
list
=
ref
<
any
[]
>
([]);
let
listLoading
=
ref
(
false
);
let
listLoading
=
ref
(
false
);
const
downLoad
=
(
url
)
=>
{
const
downLoad
=
(
url
)
=>
{
window
.
open
(
config
.
VITE_GLOB_API_URL
+
'
/system/excelFile/
'
+
url
,
'
_blank
'
);
window
.
open
(
config
.
VITE_GLOB_API_URL
+
'
/system/excelFile/
'
+
url
,
'
_blank
'
);
};
};
const
downloadFail
=
(
record
)
=>
{
const
downloadFail
=
(
record
)
=>
{
if
(
record
.
failNum
===
0
)
return
;
if
(
record
.
failNum
===
0
)
return
;
let
href
=
let
href
=
config
.
VITE_GLOB_API_URL
+
config
.
VITE_GLOB_API_URL
+
'
/excel/excelNew/fail/download?sysid=
'
+
'
/excel/excelNew/fail/download?sysid=
'
+
record
.
sysid
+
record
.
sysid
+
'
&type=
'
+
'
&type=
'
+
record
.
type
.
slice
(
2
,
6
);
record
.
type
.
slice
(
2
,
6
);
window
.
open
(
href
,
'
blank
'
);
window
.
open
(
href
,
'
blank
'
);
};
};
const
cancel
=
async
(
record
)
=>
{
const
cancel
=
async
(
record
)
=>
{
const
param
=
ref
<
{
[
key
:
string
]:
any
}
>
({
const
param
=
ref
<
{
[
key
:
string
]:
any
}
>
({
sysid
:
record
.
sysid
,
sysid
:
record
.
sysid
,
});
});
const
res
=
await
taskCenterRevokeExcelUploadApi
(
param
.
value
);
const
res
=
await
taskCenterRevokeExcelUploadApi
(
param
.
value
);
if
(
res
.
code
===
20000
)
{
if
(
res
.
success
)
{
message
.
success
(
'
操作成功
'
);
message
.
success
(
'
操作成功
'
);
getList
();
getList
();
}
else
{
}
else
{
message
.
error
(
res
.
message
);
message
.
error
(
res
.
message
);
}
}
};
};
const
getList
=
async
()
=>
{
const
getList
=
async
()
=>
{
listLoading
.
value
=
true
;
listLoading
.
value
=
true
;
const
res
=
await
taskCenterQueryListApi
({
type
:
0
});
const
res
=
await
taskCenterQueryListApi
({
type
:
0
});
if
(
res
.
code
===
20000
)
{
if
(
res
.
success
)
{
list
.
value
=
res
.
data
;
list
.
value
=
res
.
data
;
}
else
{
}
else
{
list
.
value
=
[];
list
.
value
=
[];
}
}
listLoading
.
value
=
false
;
listLoading
.
value
=
false
;
};
};
</
script
>
</
script
>
<
template
>
<
template
>
<div>
<div>
<a-button
@
click=
"getList"
type=
"primary"
>
刷新数据
</a-button>
<a-button
@
click=
"getList"
type=
"primary"
>
刷新数据
</a-button>
</div>
</div>
<a-table
<a-table
:data-source=
"list"
:data-source=
"list"
:loading=
"listLoading"
:loading=
"listLoading"
bordered
bordered
:rowKey=
"(record) => record.sysid"
:rowKey=
"(record) => record.sysid"
style=
"margin-top: 15px"
style=
"margin-top: 15px"
>
>
<a-table-column
title=
"操作时间"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"操作时间"
align=
"center"
:width=
"100"
>
<template
#default
="
{ record }">
<template
#default
="
{ record }">
{{
record
.
createTime
}}
{{
record
.
createTime
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"类型"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"类型"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
{{
record
.
type
}}
{{
record
.
type
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"状态"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"状态"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
<p>
{{
<p>
{{
record
.
isRevoke
record
.
isRevoke
?
'
已撤销
'
?
'
已撤销
'
:
record
.
status
==
0
:
record
.
status
==
0
?
'
待进行
'
?
'
待进行
'
:
record
.
status
==
1
:
record
.
status
==
1
?
'
进行中
'
?
'
进行中
'
:
'
已完成
'
:
'
已完成
'
}}
</p>
}}
</p>
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"操作数据"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"操作数据"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
{{
record
.
sproductNumpec
}}
{{
record
.
sproductNumpec
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"成功数据"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"成功数据"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
{{
record
.
successNum
}}
{{
record
.
successNum
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"错误数据"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"错误数据"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
{{
record
.
failNum
}}
{{
record
.
failNum
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"操作人"
align=
"center"
:width=
"100"
>
<a-table-column
title=
"操作人"
align=
"center"
:width=
"100"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
{{
record
.
createName
}}
{{
record
.
createName
}}
</
template
>
</
template
>
</a-table-column>
</a-table-column>
<a-table-column
title=
"操作"
align=
"center"
:width=
"200"
>
<a-table-column
title=
"操作"
align=
"center"
:width=
"200"
>
<
template
#default
="{
record
}"
>
<
template
#default
="{
record
}"
>
<Button
type=
"link"
@
click=
"downLoad(record.fileUrl)"
>
下载源文件
</Button>
<Button
type=
"link"
@
click=
"downLoad(record.fileUrl)"
>
下载源文件
</Button>
<Button
type=
"link"
v-if=
"record.failNum"
@
click=
"downloadFail(record)"
<Button
type=
"link"
v-if=
"record.failNum"
@
click=
"downloadFail(record)"
>
下载错误数据
</Button
>
下载错误数据
</Button
>
>
<Button
type=
"link"
v-if=
"record.status == 0 && !record.isRevoke"
@
click=
"cancel(record)"
<Button
type=
"link"
v-if=
"record.status == 0 && !record.isRevoke"
@
click=
"cancel(record)"
>
撤销
</Button
>
撤销
</Button
>
>
</
template
>
</
template
>
</a-table-column>
</a-table-column>
</a-table>
</a-table>
</template>
</template>
<
style
lang=
"less"
scoped
></
style
>
<
style
lang=
"less"
scoped
></
style
>
src/views/regionalSpotManage/index.vue
View file @
aaa1adfc
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
ManageList
from
'
./components/list.vue
'
;
import
{
ref
,
onMounted
}
from
'
vue
'
;
</
script
>
import
{
regionalSpotManageGetStatusApi
}
from
'
/@/api/regionalSpotManage
'
;
import
ManageList
from
'
./components/list.vue
'
;
<
template
>
const
show
=
ref
(
false
);
<ManageList
/>
const
loading
=
ref
(
false
);
</
template
>
onMounted
(
async
()
=>
{
loading
.
value
=
true
;
<
style
lang=
"less"
scoped
>
const
res
=
await
regionalSpotManageGetStatusApi
().
catch
(()
=>
(
loading
.
value
=
false
));
if
(
res
.
success
)
{
</
style
>
show
.
value
=
true
;
}
loading
.
value
=
false
;
});
</
script
>
<
template
>
<div>
<ManageList
/>
<!--
<a-spin
v-if=
"loading"
style=
"height: 150px; width: 100%; line-height: 150px"
/>
<ManageList
v-if=
"show && !loading"
/>
<div
v-if=
"!show && !loading"
class=
"status"
>
<img
src=
"../../assets/images/logo.png"
alt=
""
srcset=
""
/>
</div>
-->
</div>
</
template
>
<
style
lang=
"less"
scoped
>
.status {
height: 100vh;
img {
width: 100%;
height: 100vh;
object-fit: contain;
}
}
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment