Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sensorConsult
Project
Project
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
zhanglw
sensorConsult
Commits
fce2c077
Commit
fce2c077
authored
Jun 16, 2023
by
zhanglw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
内容管理产品列表
parent
5bbc94fc
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
994 additions
and
17 deletions
+994
-17
wxgz.jpg
src/assets/images/wxgz.jpg
+0
-0
add.vue
src/views/backstage/contentMgt/homePage/add.vue
+395
-0
index.vue
src/views/backstage/contentMgt/homePage/index.vue
+17
-12
edit.vue
src/views/backstage/contentMgt/productTabulate/edit.vue
+125
-0
index.vue
src/views/backstage/contentMgt/productTabulate/index.vue
+153
-2
edit.vue
src/views/backstage/contentMgt/supplierTabulate/edit.vue
+135
-0
index.vue
src/views/backstage/contentMgt/supplierTabulate/index.vue
+168
-2
floatBtn.vue
src/views/homepage/floatBtn.vue
+1
-1
No files found.
src/assets/images/wxgz.jpg
0 → 100644
View file @
fce2c077
17.5 KB
src/views/backstage/contentMgt/homePage/add.vue
0 → 100644
View file @
fce2c077
<
template
>
<!-- 表单渲染 -->
<el-dialog
append-to-body
:close-on-click-modal=
"false"
:before-close=
"cancelView"
:visible=
"visible"
:title=
"title"
width=
"860px"
>
<el-form
ref=
"formViewRef"
:model=
"formData"
:rules=
"rules"
:status-icon=
"true"
label-width=
"240px"
>
<el-form-item
label=
"位置:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-select
v-model=
"formData.type"
placeholder=
"无"
class=
"cell-select"
>
<el-option
v-for=
"item in dict.home_setting"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<div
v-if=
"formData.type==='1'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"频道名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"链接:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='2'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"搜索类型:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-select
v-model=
"formData.xx"
placeholder=
"无"
class=
"cell-select"
>
<el-option
v-for=
"item in dict.home_setting_2"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item
label=
"内容:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='3'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"供应商ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"供应商名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"是否设置为钻石供应商:"
class=
"form-cell"
prop=
"supplierLevel"
>
<div
class=
"cell-box"
>
<el-radio-group
v-model=
"formData.xxx"
size=
"mini"
>
<el-radio
label=
"0"
>
否
</el-radio>
<el-radio
label=
"1"
>
是
</el-radio>
</el-radio-group>
</div>
</el-form-item>
<el-form-item
label=
"是否设置为热门供应商:"
class=
"form-cell"
prop=
"supplierLevel"
>
<div
class=
"cell-box"
>
<el-radio-group
v-model=
"formData.xxx"
size=
"mini"
>
<el-radio
label=
"0"
>
否
</el-radio>
<el-radio
label=
"1"
>
是
</el-radio>
</el-radio-group>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='4'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"产品ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"产品分类:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-select
v-model=
"formData.xxx"
placeholder=
"无"
class=
"cell-select"
>
<el-option
v-for=
"item in dict.product_type"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item
label=
"产品运营名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"是否设置为信得过产品:"
class=
"form-cell"
prop=
"supplierLevel"
>
<div
class=
"cell-box"
>
<el-radio-group
v-model=
"formData.xxx"
size=
"mini"
>
<el-radio
label=
"0"
>
否
</el-radio>
<el-radio
label=
"1"
>
是
</el-radio>
</el-radio-group>
</div>
</el-form-item>
<el-form-item
label=
"是否设置为热门产品:"
class=
"form-cell"
prop=
"supplierLevel"
>
<div
class=
"cell-box"
>
<el-radio-group
v-model=
"formData.xxx"
size=
"mini"
>
<el-radio
label=
"0"
>
否
</el-radio>
<el-radio
label=
"1"
>
是
</el-radio>
</el-radio-group>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='5'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"排行榜类型:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-select
v-model=
"formData.xxx"
placeholder=
"无"
class=
"cell-select"
>
<el-option
v-for=
"item in dict.home_setting_5"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item
v-if=
"formData.xxx==='2'"
label=
"供应商ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
v-else
label=
"产品ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
v-if=
"formData.xxx==='2'"
label=
"供应商名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
v-else
label=
"产品运营名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='6'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"合作伙伴名称名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"合作伙伴LOGO:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-upload
ref=
"uploadCom"
action=
"/api/bsw/product/uploadProductPic"
name=
"productPic"
list-type=
"picture-card"
:headers=
"uploadHeaders"
:limit=
"1"
:on-exceed=
"handleExceed"
:on-success=
"handleImported"
:on-preview=
"handlePictureCardPreview"
:on-remove=
"handleRemove"
>
<i
class=
"el-icon-plus"
/>
</el-upload>
<el-dialog
append-to-body
:visible.sync=
"dialogImageVisible"
>
<img
width=
"100%"
:src=
"dialogImageUrl"
>
</el-dialog>
</div>
</el-form-item>
<el-form-item
label=
"链接:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
<div
v-if=
"formData.type==='7'"
>
<el-form-item
label=
"操作名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"链接名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"链接:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
</div>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center"
>
<el-button
@
click=
"cancelView"
>
关闭
</el-button>
<el-button
type=
"danger"
@
click=
"submitForm()"
>
预览
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm()"
>
保存
</el-button>
<el-button
type=
"success"
@
click=
"submitForm()"
>
发布
</el-button>
</div>
</el-dialog>
</
template
>
<
script
>
import
{
getToken
}
from
'
@/utils/auth
'
import
{
HttpReq
}
from
'
@/api/common
'
export
default
{
dicts
:
[
'
home_setting
'
,
'
home_setting_2
'
,
'
home_setting_5
'
,
'
product_type
'
],
data
()
{
return
{
uploadHeaders
:
{
'
Authorization
'
:
getToken
()
},
imgSrcStart
:
process
.
env
.
VUE_APP_BASE_API
,
dialogImageUrl
:
''
,
dialogImageVisible
:
false
,
visible
:
false
,
title
:
'
添加首页内容
'
,
formData
:
{
type
:
'
1
'
,
xxx
:
''
,
index
:
999
,
id
:
null
},
rules
:
{
enterpriseName
:
{
required
:
true
,
message
:
'
请填写企业名称
'
,
trigger
:
'
blur
'
},
businessScopeIntroduction
:
{
required
:
true
,
message
:
'
请填写业务范围介绍
'
,
trigger
:
'
blur
'
}
}
}
},
mounted
()
{
this
.
$nextTick
(()
=>
{
})
},
methods
:
{
showView
()
{
this
.
visible
=
true
},
hideView
()
{
this
.
$refs
.
formViewRef
.
resetFields
()
this
.
visible
=
false
},
cancelView
()
{
this
.
hideView
()
},
submitForm
()
{
console
.
log
(
this
.
formData
)
this
.
$refs
.
formViewRef
.
validate
((
valid
,
obj
)
=>
{
if
(
valid
)
{
// HttpReq.backstageApi.addCustomer(this.formData).then((res) => {
// this.$notify({
// title: res.msg,
// type: 'success',
// duration: 2500
// })
// if (res.code === 200) {
// this.cancelView()
// this.$parent.loadData()
// }
// })
}
else
{
this
.
$message
({
message
:
'
表单信息有误,请核对无误后提交!
'
,
type
:
'
error
'
})
}
})
},
loadData
()
{
},
handleExceed
()
{
this
.
$message
({
message
:
'
超出最大上传数量限制
'
,
type
:
'
info
'
})
},
handleRemove
(
file
,
fileList
)
{
HttpReq
.
backstageApi
.
deleteProductPic
({
productPic
:
file
.
response
.
productPic
}).
then
((
res
)
=>
{
this
.
$notify
({
title
:
res
.
msg
,
type
:
'
success
'
,
duration
:
2500
})
const
arr
=
[]
fileList
.
forEach
(
item
=>
{
arr
.
push
(
item
.
response
.
productPic
)
})
this
.
formData
.
productPic
=
arr
.
join
(
'
;
'
)
})
},
handlePictureCardPreview
(
file
)
{
this
.
dialogImageUrl
=
file
.
url
this
.
dialogImageVisible
=
true
},
handleImported
(
response
,
file
,
fileList
)
{
this
.
$nextTick
(()
=>
{
const
arr
=
this
.
formData
.
productPic
?
this
.
formData
.
productPic
.
split
(
'
;
'
)
:
[]
arr
.
push
(
response
.
productPic
)
this
.
formData
.
productPic
=
arr
.
join
(
'
;
'
)
this
.
$notify
({
title
:
'
上传成功!
'
,
type
:
'
success
'
,
duration
:
2500
})
})
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.cell-box
{
min-width
:
120px
;
.cell-input
{
width
:
420px
;
}
.cell-select
{
width
:
220px
;
}
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.1
);
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.2
);
border-radius
:
5px
;
}
>>>
.el-input.is-disabled
.el-input__inner
{
border-radius
:
0
;
border
:
0
;
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.4
);
background
:
white
;
cursor
:
text
;
}
>>>
.el-input.is-disabled
.el-input__icon
{
cursor
:
text
;
}
>>>
.el-icon-circle-check
{
color
:
#13ce66
;
}
//>>>.el-icon-arrow-up:before {
// content: '';
//}
}
</
style
>
src/views/backstage/contentMgt/homePage/index.vue
View file @
fce2c077
...
...
@@ -7,7 +7,7 @@
</el-select>
<el-input
v-model=
"query.username"
clearable
placeholder=
"请输入操作名称"
style=
"width:280px;"
/>
<el-select
v-model=
"query.status"
clearable
placeholder=
"请选择状态"
style=
"width: 120px"
>
<el-option
v-for=
"item in dict.
consult
_status"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
<el-option
v-for=
"item in dict.
issue
_status"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<date-range-picker
v-model=
"query.createTime"
start-placeholder=
"维护开始日期"
style=
"width: 280px"
/>
<el-button
type=
"success"
icon=
"el-icon-search"
@
click=
"toSearch"
>
搜索
</el-button>
...
...
@@ -19,7 +19,6 @@
</div>
<div
style=
"text-align: right"
>
<el-button
type=
"success"
icon=
"el-icon-finished"
:disabled=
"!multipleSelection.length"
@
click=
"batchOperate(true)"
>
批量发布
</el-button>
<el-button
type=
"danger"
icon=
"el-icon-download"
:disabled=
"!multipleSelection.length"
@
click=
"batchOperate(false)"
>
批量撤销
</el-button>
</div>
</div>
<!-- 表格 -->
...
...
@@ -31,33 +30,36 @@
<el-table-column
prop=
"xxx"
label=
"操作名称"
/>
<el-table-column
label=
"状态"
width=
"100"
>
<template
slot-scope=
"scope"
>
<div
:style=
"'color:'+textColors[scope.row.status]"
>
{{
dict
.
label
.
consult
_status
[
scope
.
row
.
status
]
}}
</div>
<div
:style=
"'color:'+textColors[scope.row.status]"
>
{{
dict
.
label
.
issue
_status
[
scope
.
row
.
status
]
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"xxx"
label=
"最后日期"
align=
"center"
width=
"100"
/>
<el-table-column
prop=
"xxx"
label=
"操作"
align=
"right"
width=
"240"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
content=
"发布"
><el-button
round
plain
type=
"success"
icon=
"el-icon-finished"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"撤销"
><el-button
round
plain
type=
"danger"
icon=
"el-icon-download"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
v-if=
"scope.row.status==='1'"
content=
"发布"
><el-button
round
plain
type=
"success"
icon=
"el-icon-finished"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"编辑"
><el-button
round
plain
type=
"primary"
icon=
"el-icon-edit-outline"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"查看"
><el-button
round
plain
icon=
"el-icon-view"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"删除"
><el-button
round
plain
type=
"danger"
icon=
"el-icon-delete"
@
click=
"toDelete(scope.row)"
/></el-tooltip>
</
template
>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:total=
"total"
:current-page=
"page"
:page-size=
"pageSize"
style=
"margin-top: 8px;"
layout=
"total, prev, pager, next, sizes"
@
size-change=
"sizeChange"
@
current-change=
"pageChange"
/>
</div>
<add-page
ref=
"addPage"
/>
</div>
</template>
<
script
>
import
{
HttpReq
}
from
'
@/api/common
'
import
DateRangePicker
from
'
@/components/DateRangePicker
'
import
addPage
from
'
./add
'
export
default
{
components
:
{
DateRangePicker
},
dicts
:
[
'
consult
_status
'
,
'
product_type
'
,
'
area_province
'
],
components
:
{
DateRangePicker
,
addPage
},
dicts
:
[
'
issue
_status
'
,
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
textColors
:
[
'
#ccc
'
,
'
#
32cd32
'
,
'
#000
'
,
'
#ff4949
'
],
textColors
:
[
'
#ccc
'
,
'
#
bba
'
,
'
#32cd32
'
],
loading
:
false
,
page
:
1
,
pageSize
:
20
,
...
...
@@ -88,9 +90,9 @@ export default {
param
.
pageSize
=
this
.
pageSize
param
.
sort
=
sort
this
.
tableData
=
[
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
1
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
2
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
3
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
}
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
2
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
}
]
this
.
total
=
2
},
...
...
@@ -119,10 +121,13 @@ export default {
})
},
toAdd
()
{
this
.
$refs
.
addPage
.
showView
()
},
toEdit
(
item
)
{
},
toDelete
(
item
)
{
},
toSearch
()
{
this
.
page
=
1
...
...
src/views/backstage/contentMgt/productTabulate/edit.vue
0 → 100644
View file @
fce2c077
<
template
>
<!-- 表单渲染 -->
<el-dialog
append-to-body
:close-on-click-modal=
"false"
:before-close=
"cancelView"
:visible=
"visible"
:title=
"title"
width=
"860px"
>
<el-form
ref=
"formViewRef"
:model=
"formData"
:rules=
"rules"
:status-icon=
"true"
label-width=
"240px"
>
<el-form-item
label=
"产品类型名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
disabled
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"产品ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
v-for=
"(item, index) in formData.dataList"
:key=
"index"
class=
"cell-box"
>
<el-input
v-model=
"item.id"
placeholder=
"产品id"
class=
"cell-input"
style=
"width: 150px"
/>
<el-input
v-model.number=
"item.index"
type=
"number"
placeholder=
"顺序"
class=
"cell-input"
style=
"width: 150px"
/>
<el-button
v-if=
"index+1>=formData.dataList.length"
icon=
"el-icon-plus"
@
click=
"addDataRow"
>
添加行
</el-button>
</div>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center"
>
<el-button
@
click=
"cancelView"
>
关闭
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm()"
>
保存
</el-button>
<el-button
type=
"success"
@
click=
"submitForm()"
>
发布
</el-button>
</div>
</el-dialog>
</
template
>
<
script
>
import
{
getToken
}
from
'
@/utils/auth
'
import
{
HttpReq
}
from
'
@/api/common
'
export
default
{
dicts
:
[
'
supplier_rank
'
],
data
()
{
return
{
visible
:
false
,
title
:
'
内容管理供应商设置
'
,
formData
:
{
xxx
:
''
,
dataList
:
[
{
id
:
'
123
'
,
index
:
'
1
'
},
{
id
:
'
222
'
,
index
:
'
2
'
},
{
id
:
'
333
'
,
index
:
'
3
'
},
{
id
:
'
444
'
,
index
:
'
4
'
},
{
id
:
''
,
index
:
''
}
],
id
:
null
},
rules
:
{}
}
},
mounted
()
{
},
methods
:
{
addDataRow
()
{
this
.
formData
.
dataList
.
push
({
id
:
''
,
index
:
''
})
},
showView
()
{
this
.
visible
=
true
},
hideView
()
{
this
.
$refs
.
formViewRef
.
resetFields
()
this
.
visible
=
false
},
cancelView
()
{
this
.
hideView
()
},
submitForm
()
{
this
.
$refs
.
formViewRef
.
validate
((
valid
,
obj
)
=>
{
if
(
valid
)
{
// HttpReq.backstageApi.updateCustomerDetail(this.formData).then((res) => {
// this.$notify({
// title: res.msg,
// type: 'success',
// duration: 2500
// })
// if (res.code === 200) {
// this.cancelView()
// this.$parent.loadData()
// }
// })
// } else {
// this.$message({
// message: '表单信息有误,请核对无误后提交!',
// type: 'error'
// })
}
})
},
loadData
(
id
)
{
this
.
showView
()
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.cell-box
{
min-width
:
120px
;
.cell-input
{
width
:
420px
;
}
.cell-select
{
width
:
220px
;
}
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.1
);
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.2
);
border-radius
:
5px
;
}
>>>
.el-input.is-disabled
.el-input__inner
{
border-radius
:
0
;
border
:
0
;
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.4
);
background
:
white
;
cursor
:
text
;
}
>>>
.el-input.is-disabled
.el-input__icon
{
cursor
:
text
;
}
>>>
.el-icon-circle-check
{
color
:
#13ce66
;
}
>>>
.el-icon-arrow-up
:before
{
content
:
''
;
}
}
</
style
>
src/views/backstage/contentMgt/productTabulate/index.vue
View file @
fce2c077
<
template
>
<div
style=
"padding:30px;"
>
<el-alert
:closable=
"false"
title=
"预留"
type=
"success"
/>
<div
class=
"app-container"
>
<!--工具栏-->
<div
class=
"head-container"
>
<el-input
v-model=
"query.username"
clearable
placeholder=
"请输入产品类型名称"
style=
"width:280px;"
/>
<el-select
v-model=
"query.status"
clearable
placeholder=
"请选择状态"
style=
"width: 120px"
>
<el-option
v-for=
"item in dict.issue_status"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<date-range-picker
v-model=
"query.createTime"
start-placeholder=
"维护开始日期"
style=
"width: 280px"
/>
<el-button
type=
"success"
icon=
"el-icon-search"
@
click=
"toSearch"
>
搜索
</el-button>
<el-button
type=
"warning"
icon=
"el-icon-refresh"
@
click=
"clearLimit"
>
重置
</el-button>
</div>
<div
class=
"toolbar"
></div>
<!-- 表格 -->
<div
class=
"content"
>
<el-table
id=
"dataTable"
ref=
"dataTable"
v-loading=
"loading"
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width:auto;min-height: 70vh"
>
<el-table-column
type=
"index"
width=
"55"
label=
"序号"
:index=
"indexMethod"
/>
<el-table-column
prop=
"area"
label=
"产品类型名称"
/>
<el-table-column
label=
"状态"
width=
"100"
>
<template
slot-scope=
"scope"
>
<div
:style=
"'color:'+textColors[scope.row.status]"
>
{{
dict
.
label
.
issue_status
[
scope
.
row
.
status
]
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"xxx"
label=
"最后维护日期"
align=
"center"
width=
"200"
/>
<el-table-column
prop=
"xxx"
label=
"操作"
align=
"right"
width=
"240"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
v-if=
"scope.row.status==='1'"
content=
"发布"
><el-button
round
plain
type=
"success"
icon=
"el-icon-finished"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"设置"
><el-button
round
plain
icon=
"el-icon-s-tools"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
</
template
>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:total=
"total"
:current-page=
"page"
:page-size=
"pageSize"
style=
"margin-top: 8px;"
layout=
"total, prev, pager, next, sizes"
@
size-change=
"sizeChange"
@
current-change=
"pageChange"
/>
</div>
<edit-page
ref=
"editPage"
/>
</div>
</template>
<
script
>
import
{
HttpReq
}
from
'
@/api/common
'
import
DateRangePicker
from
'
@/components/DateRangePicker
'
import
editPage
from
'
./edit
'
export
default
{
components
:
{
DateRangePicker
,
editPage
},
dicts
:
[
'
issue_status
'
,
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
textColors
:
[
'
#ccc
'
,
'
#bba
'
,
'
#32cd32
'
],
loading
:
false
,
page
:
1
,
pageSize
:
20
,
total
:
0
,
query
:
{},
tableData
:
[],
currentTime
:
''
,
multipleSelection
:
[]
}
},
mounted
()
{
this
.
currentTimeFn
()
this
.
$nextTick
(()
=>
{
this
.
loadData
()
})
},
methods
:
{
indexMethod
(
index
)
{
return
1
+
index
+
this
.
page
*
this
.
pageSize
-
this
.
pageSize
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
},
loadData
()
{
var
sort
=
'
id,desc
'
var
param
=
{
...
this
.
query
}
param
.
page
=
this
.
page
param
.
pageSize
=
this
.
pageSize
param
.
sort
=
sort
this
.
tableData
=
[
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
2
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
}
]
this
.
total
=
2
},
batchOperate
(
opt
)
{
if
(
!
this
.
multipleSelection
.
length
)
{
return
this
.
$message
({
message
:
'
未选取数据
'
,
type
:
'
info
'
})
}
if
(
opt
)
{
console
.
log
(
'
启用
'
,
this
.
multipleSelection
)
}
else
{
console
.
log
(
'
启用
'
,
this
.
multipleSelection
)
}
},
changeEnabled
(
data
,
val
)
{
this
.
$confirm
(
'
此操作将 "
'
+
this
.
dict
.
label
.
user_status
[
val
]
+
'
"
'
+
data
.
username
+
'
, 是否继续?
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}).
then
(()
=>
{
}).
catch
(()
=>
{
data
.
enabled
=
!
data
.
enabled
})
},
toEdit
(
item
)
{
this
.
$refs
.
editPage
.
loadData
(
item
.
customerId
)
},
toSearch
()
{
this
.
page
=
1
this
.
loadData
()
},
clearLimit
()
{
this
.
query
=
{}
this
.
currentTimeFn
()
this
.
loadData
()
},
pageChange
(
e
)
{
this
.
page
=
e
this
.
loadData
()
},
sizeChange
(
e
)
{
this
.
page
=
1
this
.
pageSize
=
e
this
.
loadData
()
},
currentTimeFn
()
{
var
date
=
new
Date
()
var
year
=
date
.
getFullYear
()
var
month
=
date
.
getMonth
()
+
1
var
day
=
date
.
getDate
()
if
(
month
>=
1
&&
month
<=
9
)
{
month
=
'
0
'
+
month
}
if
(
day
>=
0
&&
day
<=
9
)
{
day
=
'
0
'
+
day
}
this
.
currentTime
=
year
+
'
-
'
+
month
+
'
-
'
+
day
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.toolbar
{
display
:
flex
;
justify-content
:
space-between
;
}
.content
{
margin-top
:
15px
;
overflow
:
auto
;
}
</
style
>
src/views/backstage/contentMgt/supplierTabulate/edit.vue
0 → 100644
View file @
fce2c077
<
template
>
<!-- 表单渲染 -->
<el-dialog
append-to-body
:close-on-click-modal=
"false"
:before-close=
"cancelView"
:visible=
"visible"
:title=
"title"
width=
"860px"
>
<el-form
ref=
"formViewRef"
:model=
"formData"
:rules=
"rules"
:status-icon=
"true"
label-width=
"240px"
>
<el-form-item
label=
"供应商名称:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
disabled
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"供应商ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
disabled
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"标识设置:"
class=
"form-cell"
prop=
"supplierLevel"
>
<div
class=
"cell-box"
>
<el-select
v-model=
"formData.xxx"
disabled
placeholder=
"无"
class=
"cell-select"
>
<el-option
v-for=
"item in dict.supplier_rank"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</div>
</el-form-item>
<el-form-item
label=
"顺序:"
class=
"form-cell"
prop=
"operatingPeriod"
>
<div
class=
"cell-box"
>
<el-input
v-model.number=
"formData.index"
type=
"number"
placeholder=
"请输入数字"
class=
"cell-input"
/>
</div>
</el-form-item>
<el-form-item
label=
"展示产品ID:"
class=
"form-cell"
prop=
"xxx"
>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
<div
class=
"cell-box"
>
<el-input
v-model=
"formData.xxx"
placeholder=
"单行输入"
class=
"cell-input"
/>
</div>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
style=
"text-align: center"
>
<el-button
@
click=
"cancelView"
>
关闭
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm()"
>
保存
</el-button>
<el-button
type=
"success"
@
click=
"submitForm()"
>
发布
</el-button>
</div>
</el-dialog>
</
template
>
<
script
>
import
{
getToken
}
from
'
@/utils/auth
'
import
{
HttpReq
}
from
'
@/api/common
'
export
default
{
dicts
:
[
'
supplier_rank
'
],
data
()
{
return
{
visible
:
false
,
title
:
'
内容管理供应商设置
'
,
formData
:
{
id
:
null
},
rules
:
{}
}
},
mounted
()
{
},
methods
:
{
showView
()
{
this
.
visible
=
true
},
hideView
()
{
this
.
$refs
.
formViewRef
.
resetFields
()
this
.
visible
=
false
},
cancelView
()
{
this
.
hideView
()
},
submitForm
()
{
this
.
$refs
.
formViewRef
.
validate
((
valid
,
obj
)
=>
{
if
(
valid
)
{
// HttpReq.backstageApi.updateCustomerDetail(this.formData).then((res) => {
// this.$notify({
// title: res.msg,
// type: 'success',
// duration: 2500
// })
// if (res.code === 200) {
// this.cancelView()
// this.$parent.loadData()
// }
// })
// } else {
// this.$message({
// message: '表单信息有误,请核对无误后提交!',
// type: 'error'
// })
}
})
},
loadData
(
id
)
{
this
.
showView
()
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.cell-box
{
min-width
:
120px
;
.cell-input
{
width
:
420px
;
}
.cell-select
{
width
:
220px
;
}
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.1
);
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.2
);
border-radius
:
5px
;
}
>>>
.el-input.is-disabled
.el-input__inner
{
border-radius
:
0
;
border
:
0
;
border-bottom
:
1px
solid
rgba
(
100
,
100
,
100
,
0
.4
);
background
:
white
;
cursor
:
text
;
}
>>>
.el-input.is-disabled
.el-input__icon
{
cursor
:
text
;
}
>>>
.el-icon-circle-check
{
color
:
#13ce66
;
}
>>>
.el-icon-arrow-up
:before
{
content
:
''
;
}
}
</
style
>
src/views/backstage/contentMgt/supplierTabulate/index.vue
View file @
fce2c077
<
template
>
<div
style=
"padding:30px;"
>
<el-alert
:closable=
"false"
title=
"预留"
type=
"success"
/>
<div
class=
"app-container"
>
<!--工具栏-->
<div
class=
"head-container"
>
<el-select
v-model=
"query.area"
clearable
placeholder=
"请选择地区"
style=
"width: 150px"
>
<el-option
v-for=
"item in dict.area_province"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<el-select
v-model=
"query.status"
clearable
placeholder=
"请选择标识"
style=
"width: 120px"
>
<el-option
v-for=
"item in dict.issue_status"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<el-input
v-model=
"query.username"
clearable
placeholder=
"请输入供应商名称"
style=
"width:280px;"
/>
<el-select
v-model=
"query.status"
clearable
placeholder=
"请选择状态"
style=
"width: 120px"
>
<el-option
v-for=
"item in dict.issue_status"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<date-range-picker
v-model=
"query.createTime"
start-placeholder=
"维护开始日期"
style=
"width: 280px"
/>
<el-button
type=
"success"
icon=
"el-icon-search"
@
click=
"toSearch"
>
搜索
</el-button>
<el-button
type=
"warning"
icon=
"el-icon-refresh"
@
click=
"clearLimit"
>
重置
</el-button>
</div>
<div
class=
"toolbar"
>
<div>
<el-button
type=
"primary"
icon=
"el-icon-circle-plus-outline"
@
click=
"toAdd"
>
添加
</el-button>
</div>
<div
style=
"text-align: right"
>
<el-button
type=
"success"
icon=
"el-icon-finished"
:disabled=
"!multipleSelection.length"
@
click=
"batchOperate(true)"
>
批量发布
</el-button>
</div>
</div>
<!-- 表格 -->
<div
class=
"content"
>
<el-table
id=
"dataTable"
ref=
"dataTable"
v-loading=
"loading"
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width:auto;min-height: 70vh"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
type=
"index"
width=
"55"
label=
"序号"
:index=
"indexMethod"
/>
<el-table-column
prop=
"area"
label=
"标识"
width=
"200"
/>
<el-table-column
prop=
"xxx"
label=
"供应产品名称"
/>
<el-table-column
label=
"状态"
width=
"100"
>
<template
slot-scope=
"scope"
>
<div
:style=
"'color:'+textColors[scope.row.status]"
>
{{
dict
.
label
.
issue_status
[
scope
.
row
.
status
]
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"xxx"
label=
"最后日期"
align=
"center"
width=
"100"
/>
<el-table-column
prop=
"xxx"
label=
"操作"
align=
"right"
width=
"240"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
v-if=
"scope.row.status==='1'"
content=
"发布"
><el-button
round
plain
type=
"success"
icon=
"el-icon-finished"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
<el-tooltip
content=
"设置"
><el-button
round
plain
icon=
"el-icon-s-tools"
@
click=
"toEdit(scope.row)"
/></el-tooltip>
</
template
>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:total=
"total"
:current-page=
"page"
:page-size=
"pageSize"
style=
"margin-top: 8px;"
layout=
"total, prev, pager, next, sizes"
@
size-change=
"sizeChange"
@
current-change=
"pageChange"
/>
</div>
<edit-page
ref=
"editPage"
/>
</div>
</template>
<
script
>
import
{
HttpReq
}
from
'
@/api/common
'
import
DateRangePicker
from
'
@/components/DateRangePicker
'
import
editPage
from
'
./edit
'
export
default
{
components
:
{
DateRangePicker
,
editPage
},
dicts
:
[
'
issue_status
'
,
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
textColors
:
[
'
#ccc
'
,
'
#bba
'
,
'
#32cd32
'
],
loading
:
false
,
page
:
1
,
pageSize
:
20
,
total
:
0
,
query
:
{},
tableData
:
[],
currentTime
:
''
,
multipleSelection
:
[]
}
},
mounted
()
{
this
.
currentTimeFn
()
this
.
$nextTick
(()
=>
{
this
.
loadData
()
})
},
methods
:
{
indexMethod
(
index
)
{
return
1
+
index
+
this
.
page
*
this
.
pageSize
-
this
.
pageSize
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
},
loadData
()
{
var
sort
=
'
id,desc
'
var
param
=
{
...
this
.
query
}
param
.
page
=
this
.
page
param
.
pageSize
=
this
.
pageSize
param
.
sort
=
sort
this
.
tableData
=
[
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
2
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
},
{
username
:
'
张三
'
,
area
:
'
火星
'
,
status
:
'
1
'
,
enabled
:
false
,
xxx
:
'
2023-05-09
'
}
]
this
.
total
=
2
},
batchOperate
(
opt
)
{
if
(
!
this
.
multipleSelection
.
length
)
{
return
this
.
$message
({
message
:
'
未选取数据
'
,
type
:
'
info
'
})
}
if
(
opt
)
{
console
.
log
(
'
启用
'
,
this
.
multipleSelection
)
}
else
{
console
.
log
(
'
启用
'
,
this
.
multipleSelection
)
}
},
changeEnabled
(
data
,
val
)
{
this
.
$confirm
(
'
此操作将 "
'
+
this
.
dict
.
label
.
user_status
[
val
]
+
'
"
'
+
data
.
username
+
'
, 是否继续?
'
,
'
提示
'
,
{
confirmButtonText
:
'
确定
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}).
then
(()
=>
{
}).
catch
(()
=>
{
data
.
enabled
=
!
data
.
enabled
})
},
toEdit
(
item
)
{
this
.
$refs
.
editPage
.
loadData
(
item
.
customerId
)
},
toSearch
()
{
this
.
page
=
1
this
.
loadData
()
},
clearLimit
()
{
this
.
query
=
{}
this
.
currentTimeFn
()
this
.
loadData
()
},
pageChange
(
e
)
{
this
.
page
=
e
this
.
loadData
()
},
sizeChange
(
e
)
{
this
.
page
=
1
this
.
pageSize
=
e
this
.
loadData
()
},
currentTimeFn
()
{
var
date
=
new
Date
()
var
year
=
date
.
getFullYear
()
var
month
=
date
.
getMonth
()
+
1
var
day
=
date
.
getDate
()
if
(
month
>=
1
&&
month
<=
9
)
{
month
=
'
0
'
+
month
}
if
(
day
>=
0
&&
day
<=
9
)
{
day
=
'
0
'
+
day
}
this
.
currentTime
=
year
+
'
-
'
+
month
+
'
-
'
+
day
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.toolbar
{
display
:
flex
;
justify-content
:
space-between
;
}
.content
{
margin-top
:
15px
;
overflow
:
auto
;
}
</
style
>
src/views/homepage/floatBtn.vue
View file @
fce2c077
...
...
@@ -12,7 +12,7 @@
<div
class=
"line-s"
/>
<div
class=
"fixed-contact-popover"
>
<div
class=
"fixed-contact-popover-img"
>
<img
src=
"
https://xue-static.uiiiuiii.com/4f5cb006388a55ca5033664ba154db1f-1624264713222.pn
g"
alt=
""
>
<img
src=
"
../../assets/images/wxgz.jp
g"
alt=
""
>
</div>
</div>
</li>
...
...
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