Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
d88ba78d
Commit
d88ba78d
authored
Jul 05, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:应用主题添加封面,修复绑定事项和业务时偶尔校验失败的问题
parent
b07298a3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
124 additions
and
22 deletions
+124
-22
base-manager-ui/admin/src/pages/basicset/appmarket/components/AppTheme.vue
...dmin/src/pages/basicset/appmarket/components/AppTheme.vue
+39
-1
base-manager-ui/admin/src/pages/basicset/appmarket/modal/AddApp.vue
...er-ui/admin/src/pages/basicset/appmarket/modal/AddApp.vue
+1
-20
base-manager-ui/admin/src/pages/basicset/appmarket/modal/AddTheme.vue
...-ui/admin/src/pages/basicset/appmarket/modal/AddTheme.vue
+83
-1
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
.../src/pages/basicset/business/components/businessTabs3.vue
+1
-0
No files found.
base-manager-ui/admin/src/pages/basicset/appmarket/components/AppTheme.vue
View file @
d88ba78d
...
@@ -44,6 +44,16 @@
...
@@ -44,6 +44,16 @@
(
current
-
1
)
*
size
+
index
+
1
(
current
-
1
)
*
size
+
index
+
1
}}
</span>
}}
</span>
<!-- 主题封面 -->
<template
slot=
"cover"
slot-scope=
"text"
>
<img
class=
"cover"
v-if=
"text.cover"
:src=
"api2 + text.cover"
@
click=
"handlePreview(api2 + text.cover)"
/>
<span
v-else
>
--
</span>
</
template
>
<!-- 创建时间 -->
<!-- 创建时间 -->
<
template
slot=
"createTime"
slot-scope=
"text"
>
<
template
slot=
"createTime"
slot-scope=
"text"
>
{{
text
.
createTime
|
dateFormat
}}
{{
text
.
createTime
|
dateFormat
}}
...
@@ -65,6 +75,11 @@
...
@@ -65,6 +75,11 @@
:addVisile.sync=
"addVisile"
:addVisile.sync=
"addVisile"
@
addSuccess=
"getCategoryList"
@
addSuccess=
"getCategoryList"
></AddTheme>
></AddTheme>
<!-- 预览 -->
<PrevieModal
:previewData=
"previewData"
:previewVisible.sync=
"previewVisible"
></PrevieModal>
</div>
</div>
</template>
</template>
...
@@ -73,6 +88,7 @@ import { getCategoryList, deleteCategory } from "@/services/market";
...
@@ -73,6 +88,7 @@ import { getCategoryList, deleteCategory } from "@/services/market";
import
AddTheme
from
"
../modal/AddTheme
"
;
import
AddTheme
from
"
../modal/AddTheme
"
;
import
local
from
"
@/utils/local
"
;
import
local
from
"
@/utils/local
"
;
import
{
pageSizeOptions
}
from
"
@/config/pageConfig.js
"
;
import
{
pageSizeOptions
}
from
"
@/config/pageConfig.js
"
;
import
PrevieModal
from
"
@/components/PrevieModal.vue
"
;
const
columns
=
[
const
columns
=
[
{
{
title
:
"
序号
"
,
title
:
"
序号
"
,
...
@@ -94,6 +110,12 @@ const columns = [
...
@@ -94,6 +110,12 @@ const columns = [
title
:
"
主题编码
"
,
title
:
"
主题编码
"
,
dataIndex
:
"
categoryCode
"
,
dataIndex
:
"
categoryCode
"
,
},
},
{
title
:
"
主题封面
"
,
scopedSlots
:
{
customRender
:
"
cover
"
,
},
},
{
{
title
:
"
排序
"
,
title
:
"
排序
"
,
dataIndex
:
"
sort
"
,
dataIndex
:
"
sort
"
,
...
@@ -113,12 +135,15 @@ const columns = [
...
@@ -113,12 +135,15 @@ const columns = [
export
default
{
export
default
{
components
:
{
components
:
{
AddTheme
,
AddTheme
,
PrevieModal
,
},
},
data
()
{
data
()
{
return
{
return
{
api
:
process
.
env
.
VUE_APP_API_BASE_URL
+
"
/
"
,
api
:
process
.
env
.
VUE_APP_API_BASE_URL
+
"
/
"
,
api2
:
process
.
env
.
VUE_APP_API_IMG_URL
,
api2
:
process
.
env
.
VUE_APP_API_IMG_URL
,
columns
,
columns
,
previewData
:
{},
// 预览
previewVisible
:
false
,
siteId
:
local
.
getLocal
(
"
siteId
"
),
siteId
:
local
.
getLocal
(
"
siteId
"
),
tableData
:
[],
// 表格数据
tableData
:
[],
// 表格数据
loading
:
false
,
loading
:
false
,
...
@@ -227,8 +252,21 @@ export default {
...
@@ -227,8 +252,21 @@ export default {
},
},
});
});
},
},
// 预览封面
handlePreview
(
url
)
{
this
.
previewData
=
{
type
:
"
img
"
,
url
:
url
,
};
this
.
previewVisible
=
true
;
},
},
},
};
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
></
style
>
<
style
lang=
"less"
scoped
>
.cover {
width: 50px;
cursor: pointer;
}
</
style
>
base-manager-ui/admin/src/pages/basicset/appmarket/modal/AddApp.vue
View file @
d88ba78d
...
@@ -48,26 +48,6 @@
...
@@ -48,26 +48,6 @@
<div
class=
"ant-upload-text"
>
选择图标
</div>
<div
class=
"ant-upload-text"
>
选择图标
</div>
</div>
</div>
</a-upload>
</a-upload>
<!--
<a-upload
name=
"file"
list-type=
"picture-card"
class=
"avatar-uploader"
:show-upload-list=
"false"
:action=
"api + 'base/file/commonupload'"
:before-upload=
"iconBeforeUpload"
@
change=
"handleChangeIcon"
>
<img
class=
"icon"
v-if=
"form.appIconPath"
:src=
"api2 + form.appIconPath"
/>
<div
v-else
>
<a-icon
:type=
"loading ? 'loading' : 'plus'"
/>
<div
class=
"ant-upload-text"
>
选择图标
</div>
</div>
</a-upload>
-->
</a-form-model-item>
</a-form-model-item>
<a-form-model-item
label=
"应用简介"
prop=
"summary"
>
<a-form-model-item
label=
"应用简介"
prop=
"summary"
>
<a-textarea
<a-textarea
...
@@ -102,6 +82,7 @@
...
@@ -102,6 +82,7 @@
<a-radio
:value=
"1"
>
应用程序
</a-radio>
<a-radio
:value=
"1"
>
应用程序
</a-radio>
<a-radio
:value=
"2"
>
URL
</a-radio>
<a-radio
:value=
"2"
>
URL
</a-radio>
<a-radio
:value=
"3"
v-if=
"form.type != 1"
>
微信小程序
</a-radio>
<a-radio
:value=
"3"
v-if=
"form.type != 1"
>
微信小程序
</a-radio>
<a-radio
:value=
"4"
v-if=
"form.type != 2"
>
天府通办
</a-radio>
</a-radio-group>
</a-radio-group>
</a-form-model-item>
</a-form-model-item>
<a-form-model-item
<a-form-model-item
...
...
base-manager-ui/admin/src/pages/basicset/appmarket/modal/AddTheme.vue
View file @
d88ba78d
...
@@ -25,10 +25,32 @@
...
@@ -25,10 +25,32 @@
<a-form-model-item
label=
"主题编码"
prop=
"categoryCode"
>
<a-form-model-item
label=
"主题编码"
prop=
"categoryCode"
>
<a-input
v-model=
"form.categoryCode"
placeholder=
"请输入主题编码"
/>
<a-input
v-model=
"form.categoryCode"
placeholder=
"请输入主题编码"
/>
</a-form-model-item>
</a-form-model-item>
<a-form-model-item
label=
"主题封面"
prop=
"cover"
>
<a-upload
name=
"file"
list-type=
"picture-card"
:action=
"api + 'base/file/commonupload'"
:file-list=
"fileList"
@
change=
"handleChangeCover"
:accept=
"accept"
:before-upload=
"beforeUpload"
@
preview=
"handlePreview"
>
<div
v-if=
"fileList.length < 1"
>
<a-icon
type=
"plus"
/>
<div
class=
"ant-upload-text"
>
选择封面
</div>
</div>
</a-upload>
</a-form-model-item>
<a-form-model-item
label=
"排序"
prop=
"sort"
>
<a-form-model-item
label=
"排序"
prop=
"sort"
>
<a-input-number
v-model=
"form.sort"
:min=
"1"
/>
<a-input-number
v-model=
"form.sort"
:min=
"1"
/>
</a-form-model-item>
</a-form-model-item>
</a-form-model>
</a-form-model>
<!-- 预览 -->
<PrevieModal
:previewData=
"previewData"
:previewVisible.sync=
"previewVisible"
></PrevieModal>
</a-modal>
</a-modal>
</div>
</div>
</template>
</template>
...
@@ -36,6 +58,7 @@
...
@@ -36,6 +58,7 @@
<
script
>
<
script
>
import
{
saveCategory
}
from
"
@/services/market
"
;
import
{
saveCategory
}
from
"
@/services/market
"
;
import
local
from
"
@/utils/local
"
;
import
local
from
"
@/utils/local
"
;
import
PrevieModal
from
"
@/components/PrevieModal.vue
"
;
export
default
{
export
default
{
props
:
{
props
:
{
addVisile
:
{
addVisile
:
{
...
@@ -48,15 +71,25 @@ export default {
...
@@ -48,15 +71,25 @@ export default {
default
:
"
新增分类
"
,
default
:
"
新增分类
"
,
},
},
},
},
components
:
{},
components
:
{
PrevieModal
,
},
data
()
{
data
()
{
return
{
return
{
accept
:
"
image/jpeg,image/png
"
,
api
:
process
.
env
.
VUE_APP_API_BASE_URL
+
"
/
"
,
api2
:
process
.
env
.
VUE_APP_API_IMG_URL
,
fileList
:
[],
previewData
:
{},
// 预览
previewVisible
:
false
,
form
:
{
form
:
{
siteId
:
local
.
getLocal
(
"
siteId
"
),
// 站点id
siteId
:
local
.
getLocal
(
"
siteId
"
),
// 站点id
siteName
:
local
.
getLocal
(
"
siteName
"
),
// 站点名称
siteName
:
local
.
getLocal
(
"
siteName
"
),
// 站点名称
categoryName
:
""
,
// 分类名称
categoryName
:
""
,
// 分类名称
categoryCode
:
""
,
// 分类编码
categoryCode
:
""
,
// 分类编码
sort
:
99
,
// 排序
sort
:
99
,
// 排序
cover
:
""
,
// 封面
remark
:
""
,
// 备注
},
},
rules
:
{
rules
:
{
categoryName
:
[
categoryName
:
[
...
@@ -88,9 +121,21 @@ export default {
...
@@ -88,9 +121,21 @@ export default {
// 编辑
// 编辑
onEdit
(
data
)
{
onEdit
(
data
)
{
this
.
form
=
{
...
data
};
this
.
form
=
{
...
data
};
if
(
this
.
form
.
cover
)
{
this
.
fileList
=
[
{
uid
:
"
-2
"
,
name
:
this
.
form
.
cover
,
status
:
"
done
"
,
url
:
this
.
api2
+
this
.
form
.
cover
,
url2
:
this
.
form
.
cover
,
},
];
}
},
},
// 关闭弹窗
// 关闭弹窗
handleClose
()
{
handleClose
()
{
this
.
fileList
=
[];
this
.
$refs
.
form
.
resetFields
();
this
.
$refs
.
form
.
resetFields
();
this
.
Visible
=
false
;
this
.
Visible
=
false
;
},
},
...
@@ -108,6 +153,43 @@ export default {
...
@@ -108,6 +153,43 @@ export default {
}
}
});
});
},
},
// 上传之前
beforeUpload
(
file
)
{
const
isJpgOrPng
=
file
.
type
===
"
image/jpeg
"
||
file
.
type
===
"
image/png
"
;
if
(
!
isJpgOrPng
)
{
this
.
$message
.
error
(
"
请上传jpeg、png格式图片!
"
);
}
const
isLt10M
=
file
.
size
/
1024
/
1024
<
10
;
if
(
!
isLt10M
)
{
this
.
$message
.
error
(
"
图片大小不能超过 10MB!
"
);
}
return
isJpgOrPng
&&
isLt10M
;
},
// 上传封面
handleChangeCover
({
fileList
})
{
this
.
fileList
=
[...
fileList
].
slice
(
-
1
);
this
.
fileList
=
this
.
fileList
.
map
((
v
)
=>
{
if
(
v
.
response
)
{
v
.
url2
=
v
.
response
.
url
;
v
.
url
=
this
.
api2
+
v
.
response
.
url
;
}
return
v
;
});
if
(
this
.
fileList
[
0
])
{
this
.
form
.
cover
=
this
.
fileList
[
0
].
url2
;
}
else
{
this
.
form
.
cover
=
""
;
}
},
// 预览
handlePreview
(
info
)
{
this
.
previewData
=
{
type
:
"
img
"
,
url
:
info
.
url
,
};
this
.
previewVisible
=
true
;
},
// 重置
// 重置
handleReset
()
{
handleReset
()
{
this
.
$refs
.
form
.
resetFields
();
this
.
$refs
.
form
.
resetFields
();
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
View file @
d88ba78d
...
@@ -671,6 +671,7 @@ export default {
...
@@ -671,6 +671,7 @@ export default {
// 业务下拉
// 业务下拉
handleChange
(
val
,
node
)
{
handleChange
(
val
,
node
)
{
this
.
$refs
.
formData
.
validateField
(
"
siteBusinessId
"
);
if
(
node
)
{
if
(
node
)
{
let
{
text
}
=
node
.
componentOptions
.
children
[
0
];
let
{
text
}
=
node
.
componentOptions
.
children
[
0
];
this
.
siteBusiness
.
siteBusinessName
=
text
;
this
.
siteBusiness
.
siteBusinessName
=
text
;
...
...
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