Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
S
shop-new
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
王天霸
shop-new
Commits
27a30be6
提交
27a30be6
authored
5月 28, 2021
作者:
huaxinzhu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
云仓四期
上级
00e20ed7
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
687 行增加
和
84 行删除
+687
-84
.env.development
.env.development
+3
-3
retreat.js
src/api/module/retreat.js
+8
-0
index.js
src/api/module/settings/index.js
+26
-0
index.vue
src/views/system/goods/offsale/index.vue
+13
-5
document.vue
src/views/system/operation/document.vue
+217
-0
index.vue
src/views/system/retreat/retreat/index.vue
+102
-17
setpsd.vue
src/views/system/settings/setpsd.vue
+318
-59
没有找到文件。
.env.development
浏览文件 @
27a30be6
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
ENV = 'development'
ENV = 'development'
# 正式环境
# 正式环境
VUE_APP_BASE_API = 'http://sjapi.jxhh.com'
#
VUE_APP_BASE_API = 'http://sjapi.jxhh.com'
#
达叔
开发环境
# 开发环境
#VUE_APP_BASE_API = 'http://192.168.111.32
:8200'
VUE_APP_BASE_API = 'http://192.168.111.34
:8200'
# 路由懒加载
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
VUE_CLI_BABEL_TRANSPILE_MODULES = true
src/api/module/retreat.js
浏览文件 @
27a30be6
...
@@ -27,6 +27,14 @@ export function retreatSubmit(data) {
...
@@ -27,6 +27,14 @@ export function retreatSubmit(data) {
})
})
}
}
// 获取售后类型,等
export
function
getSearchParams
(
query
)
{
return
request
({
url
:
'/system/retreat/getSearchParams'
,
method
:
'get'
,
params
:
query
})
}
// // 修改retreat
// // 修改retreat
// export function updateRetreat(data) {
// export function updateRetreat(data) {
// return request({
// return request({
...
...
src/api/module/settings/index.js
0 → 100644
浏览文件 @
27a30be6
import
request
from
'@/utils/request'
;
// 修改手机号
export
function
changeTelphone
(
data
)
{
return
request
({
url
:
'/local/seller/editMobile'
,
method
:
'post'
,
data
:
data
})
}
// 获取手机验证码
export
function
getTelphoneCode
(
query
)
{
return
request
({
url
:
'/local/seller/sendCodeMobile'
,
method
:
'get'
,
params
:
query
})
}
src/views/system/goods/offsale/index.vue
浏览文件 @
27a30be6
...
@@ -210,9 +210,16 @@
...
@@ -210,9 +210,16 @@
this
.
multiple
=
!
selection
.
length
this
.
multiple
=
!
selection
.
length
},
},
/** 上架操作 */
/** 上架操作 */
handleOnsale
()
{
handleOnsale
(
row
)
{
Onsale
({
"ids"
:
this
.
ids
,
"status"
:
1
}).
then
(
response
=>
{
const
rowIds
=
row
.
goodsId
||
this
.
ids
;
this
.
msgSuccess
(
"成功申请"
+
response
.
data
.
length
+
"个商品"
);
let
params
=
{
"ids"
:
rowIds
,
"status"
:
1
};
if
(
!
rowIds
||
rowIds
.
length
===
0
)
{
this
.
$message
({
message
:
'请先选择要上架的商品数据'
,
type
:
'warning'
});
return
;
}
Onsale
(
params
).
then
(
res
=>
{
this
.
msgSuccess
(
"成功申请"
+
res
.
length
+
"个商品"
);
});
});
},
},
/** 新增按钮操作 */
/** 新增按钮操作 */
...
@@ -261,8 +268,9 @@
...
@@ -261,8 +268,9 @@
},
},
/** 删除按钮操作 */
/** 删除按钮操作 */
handleDelete
(
row
)
{
handleDelete
(
row
)
{
const
goods_ids
=
row
.
goodsId
;
this
.
$confirm
(
'是否确认删除goods编号为"'
+
goods_ids
+
'"的数据项?'
,
"警告"
,
{
const
goods_ids
=
row
.
goodsId
||
this
.
ids
;
this
.
$confirm
(
'是否确认删除商品ID为"'
+
goods_ids
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
type
:
"warning"
...
...
src/views/system/operation/document.vue
0 → 100644
浏览文件 @
27a30be6
<
template
>
<div
class=
"app-container"
>
<el-card
class=
"box-card"
>
<div
slot=
"header"
class=
"clearfix"
>
<p>
帮助文档
</p>
</div>
<el-row
class=
"content-menu"
>
<el-col
:span=
"4"
class=
"menu"
>
<el-menu
default-active=
"1"
class=
"el-menu-vertical-demo"
:default-openeds=
"openMenuList"
>
<el-submenu
v-for=
"item in menuList"
:index=
"(item.id).toString()"
v-if=
"item.children && item.children.length > 0"
>
<template
slot=
"title"
>
<span>
{{
item
.
title
}}
</span>
</
template
>
<el-menu-item-group
v-if=
"item.children && item.children.length > 0"
>
<el-menu-item
v-for=
"childItem in item.children"
:index=
"(childItem.id).toString()"
@
click=
"showText(childItem)"
>
{{ childItem.title }}
</el-menu-item>
</el-menu-item-group>
</el-submenu>
</el-menu>
</el-col>
<transition
name=
"fade"
>
<el-col
:span=
"20"
class=
"content-text"
>
<el-row
:span=
"24"
type=
"flex"
align=
"middle"
justify=
"space-bewteen"
class=
"pre-title"
>
<el-col
:span=
"12"
>
<h3>
保证金
</h3>
</el-col>
<el-col
:span=
"12"
>
<p
style=
"float:right;"
>
<span>
2021-05-05
</span>
<el-divider
direction=
"vertical"
></el-divider>
<span>
运营团队
</span>
</p>
</el-col>
</el-row>
<div
class=
"ql-container ql-show"
>
<div
class=
"ql-editor"
>
<div
v-html=
"content"
></div>
</div>
</div>
</el-col>
</transition>
</el-row>
</el-card>
</div>
</template>
<
script
>
export
default
{
name
:
"Document"
,
data
()
{
return
{
show
:
true
,
menuList
:
[
{
id
:
1
,
title
:
'商品规格'
,
children
:
[
{
id
:
11
,
title
:
'商品规格-1'
,
content
:
'"<p>商品规格1111111111</p>"'
,
children
:
null
},
]
},
{
id
:
2
,
title
:
'订单问题'
,
children
:
[
{
id
:
21
,
title
:
'订单问题-1'
,
content
:
'"<p>订单问题1111111111</p>"'
,
children
:
null
},
]},
{
id
:
3
,
title
:
'店铺相关'
,
children
:
[
{
id
:
31
,
title
:
'店铺相关-1'
,
content
:
'"<p>店铺相关1111111111</p>"'
,
children
:
null
},
]},
{
id
:
4
,
title
:
'售后问题'
,
children
:
[
{
id
:
41
,
title
:
'售后问题-1'
,
content
:
'<p>售后问题1111111111</p>'
,
children
:
null
},{
id
:
42
,
title
:
'商品规格-1'
,
content
:
'"<p>商品规格1111111111</p>"'
,
children
:
null
},
]},
{
id
:
5
,
title
:
'设置相关'
,
children
:
[
{
id
:
51
,
title
:
'设置相关-1'
,
content
:
'<p>设置相关1111111111</p>'
,
children
:
null
},{
id
:
52
,
title
:
'商品规格-1'
,
content
:
'"<p>商品规格1111111111</p>"'
,
children
:
null
},
]},
],
editorOption
:
{},
queryParams
:
{
pageNum
:
10
,
pageSize
:
1
},
content
:
'<div class="main-text">
\
n'
+
' <h2>胜天半子供应链商家入驻协议书</h2>
\
n'
+
' <p>
\
n'
+
' 甲方:北京胜天半子科技有限公司(以下简称“甲方或者平台”)<br/>
\
n'
+
' </p>
\
n'
+
' <p>乙方:(以下简称“乙方”)</p>
\
n'
+
' <p>
\
n'
+
' 甲乙双方本着互惠互利的双赢策略,根据甲方商城入驻条件,乙方申请入驻甲方商城,并完全接受甲方的规范,本着自愿、平等、公正原则,甲乙双方在协商一致的基础上达成如下协议:
\
n'
+
' </p>
\
n'
+
' <p>
\
n'
+
' 乙方可在平台上进行商铺发布及管理、推广商品、达成交易意向。
\
n'
+
' </p>
\
n'
+
' <h4>一、入驻商家基本条件</h4>
\
n'
+
' <p>
\
n'
+
' 1、有良好的合作意愿,能提供优质的商品,保证合作的顺利进行,并保证提供良好的售后服务;
\
n'
+
' </p>
\
n'
+
' <p>
\
n'
+
' 2、 乙方申请成为平台入驻商家,应该满足以下条件:
\
n'
+
' (1) 乙方已依照中华人民共和国法律注册并领取合法有效的营业执照及其他经营许可;
\
n'
+
' (2) 乙方申请经营的商品或服务合法,资质齐全;
\
n'
+
' (3)乙方同意本协议及平台相关规则并同意缴纳平台履约保证金1万-5万具体见附件
\
n'
+
' <a target="_blank" class="download-Template-btn" :href="downTemplatehttp">《平台类目费率收取标准》</a>
\
n'
+
' 。 (4) 乙方须保证所提交予乙方的所有材料真实、准确、合法、有效。如相关材料有变更或更新时应及时通知甲方,若导致乙方不符合本协议所规定入驻条件的,甲方有权单方全部或部分限制乙方经营,直至终止本协议。
\
n'
+
' </div>'
,
openMenuList
:
[],
}
},
created
()
{
//menuList
if
(
this
.
menuList
.
length
>
0
)
{
this
.
menuList
.
forEach
((
item
,
index
)
=>
{
let
indexStr
=
(
index
+
1
).
toString
();
this
.
openMenuList
.
push
(
indexStr
);
});
console
.
log
(
121
,
this
.
openMenuList
);
}
},
methods
:
{
onEditorChange
(
a
,
b
,
c
)
{
console
.
log
(
25
,
b
);
console
.
log
(
25
,
b
);
console
.
log
(
25
,
b
);
},
handleOpen
(
key
,
keyPath
)
{
console
.
log
(
key
,
keyPath
);
},
handleClose
(
key
,
keyPath
)
{
console
.
log
(
key
,
keyPath
);
},
showText
(
val
)
{
//this.show = false;
if
(
val
[
'content'
])
{
this
.
content
=
val
[
'content'
];
//this.show = true;
}
console
.
log
(
142
,
val
);
}
}
}
</
script
>
<
style
lang=
"scss"
type=
"text/stylus"
scoped
>
/
deep
/
.el-card__header
p
{
font-size
:
18px
;
}
/
deep
/
.el-card__body
{
padding
:
10px
0
10px
0
;
height
:
calc
(
100%
-
45px
);
overflow
:hidden
;
}
.content-menu
{
height
:
100%
;
overflow
:
hidden
;
}
.menu
{
height
:
100%
;
border-right
:
1px
solid
#DCDFE6
;
.el-menu
{
border
:
none
;
}
}
.pre-title
{
padding-right
:
50px
;
border-bottom
:
1px
solid
#DCDFE6
;
}
.content-text
{
height
:
100%
;
padding
:
0
20px
;
}
.ql-container
{
height
:
calc
(
100%
-
59px
);
overflow
:
hidden
;
.ql-editor
{
height
:
100%
;
padding
:
0
20px
;
}
.ql-editor
>
div
:nth-child
(
0
)
{
height
:
100%
;
.main-text
{
height
:
100%
;
overflow-x
:
hidden
;
overflow-y
:
scroll
;
}
}
}
/*样式重置*/
/
deep
/
.el-submenu__title
{
//padding: 0 30px!important;
}
/
deep
/
.el-submenu__title
>
span
{
font-size
:
16px
;
}
.fade-enter-active
,
.fade-leave-active
{
transition
:
opacity
.5s
;
}
.fade-enter
,
.fade-leave-to
/*
.fade-leave-active
below
version
2
.1.8
*/
{
opacity
:
0
;
}
</
style
>
src/views/system/retreat/retreat/index.vue
浏览文件 @
27a30be6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<el-card
class=
"box-card"
>
<el-card
class=
"box-card"
>
<div
slot=
"header"
class=
"clearfix"
>
<div
slot=
"header"
class=
"clearfix"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"
68
px"
class=
"queryFormInline"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"
82
px"
class=
"queryFormInline"
>
<el-form-item
label=
"申请时间"
prop=
"applyTime"
>
<el-form-item
label=
"申请时间"
prop=
"applyTime"
>
<el-date-picker
<el-date-picker
size=
"small"
size=
"small"
...
@@ -34,6 +34,28 @@
...
@@ -34,6 +34,28 @@
@
keyup
.
enter
.
native=
"handleQuery"
@
keyup
.
enter
.
native=
"handleQuery"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"退换货类型"
prop=
"userNeed"
>
<el-select
v-model=
"queryParams.userNeed"
placeholder=
"全部原因"
size=
"small"
clearable
@
change=
"userNeedChange"
>
<el-option
v-for=
"item in userNeedOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"退换货原因"
prop=
"needMsg"
>
<el-select
v-model=
"queryParams.needMsg"
placeholder=
"全部类型"
size=
"small"
clearable
@
change=
"needMsgChange"
>
<el-option
v-for=
"item in needMsgOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"处理状态"
prop=
"processDes"
>
<el-select
v-model=
"queryParams.processDes"
placeholder=
"全部状态"
size=
"small"
clearable
@
change=
"processDesChange"
>
<el-option
v-for=
"item in processDesOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
...
@@ -280,9 +302,9 @@
...
@@ -280,9 +302,9 @@
<div
class=
"el-table el-table--enable-row-hover el-table--medium"
>
<div
class=
"el-table el-table--enable-row-hover el-table--medium"
>
<el-form
:model=
"submitParam"
ref=
"queryForm"
label-width=
"68px"
>
<el-form
:model=
"submitParam"
ref=
"queryForm"
label-width=
"68px"
>
<el-form-item
label=
"退货地址"
>
<el-form-item
label=
"退货地址"
>
<el-select
v-model=
"submitParam.address"
placeholder=
"退货地址"
>
<el-select
v-model=
"submitParam.address"
placeholder=
"退货地址"
style=
"width:500px;"
>
<el-option
v-for=
"(item,index) in form.address"
:key=
"item.value"
:label=
"item"
v-if=
"item != '' "
<el-option
v-for=
"(item,index) in form.address"
:key=
"item.value"
:label=
"item
.label
"
v-if=
"item != '' "
:value=
"
getIndex(index)
"
></el-option>
:value=
"
item.value
"
></el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
</el-form-item>
</el-form-item>
...
@@ -311,7 +333,7 @@
...
@@ -311,7 +333,7 @@
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
{
listRetreat
,
getRetreat
,
retreatSubmit
}
from
'@/api/module/retreat'
import
{
listRetreat
,
getRetreat
,
retreatSubmit
,
getSearchParams
}
from
'@/api/module/retreat'
export
default
{
export
default
{
name
:
"retreat"
,
name
:
"retreat"
,
...
@@ -348,6 +370,33 @@
...
@@ -348,6 +370,33 @@
{
label
:
"买家退回的商品不全"
,
value
:
13
},
{
label
:
"买家退回的商品不全"
,
value
:
13
},
{
label
:
"其他"
,
value
:
14
},
{
label
:
"其他"
,
value
:
14
},
],
],
// 售后类型/退换货类型
userNeedOptions
:
[
{
value
:
-
1
,
label
:
'全部类型'
},
{
value
:
1
,
label
:
'仅退款'
},
{
value
:
2
,
label
:
'退货退款'
},
{
value
:
3
,
label
:
'客服仲裁'
}
],
// 退换货原因
needMsgOptions
:
[
{
value
:
-
1
,
label
:
'全部原因'
},
{
value
:
1
,
label
:
'协商一致退款'
},
{
value
:
2
,
label
:
'质量问题'
},
{
value
:
3
,
label
:
'物流问题'
},
{
value
:
4
,
label
:
'假冒品牌'
},
{
value
:
5
,
label
:
'少件/漏发/破损/污渍'
},
{
value
:
6
,
label
:
'7天无理由'
},
{
value
:
7
,
label
:
'拍错/多拍/不想要'
},
{
value
:
8
,
label
:
'其他'
},
],
// 处理状态
processDesOptions
:
[
{
value
:
-
1
,
label
:
'全部状态'
},
{
value
:
1
,
label
:
'未处理'
},
{
value
:
2
,
label
:
'处理中'
},
{
value
:
3
,
label
:
'已处理'
},
{
value
:
4
,
label
:
'客服介入'
},
],
//状态
//状态
orderInfo
:
true
,
orderInfo
:
true
,
//拒绝框
//拒绝框
...
@@ -376,11 +425,14 @@
...
@@ -376,11 +425,14 @@
queryParams
:
{
queryParams
:
{
pageNum
:
1
,
pageNum
:
1
,
pageSize
:
10
,
pageSize
:
10
,
goodsId
:
null
,
goodsName
:
null
,
applyTime
:
[],
applyTime
:
[],
beginTime
:
0
,
beginTime
:
0
,
endTime
:
0
,
endTime
:
0
,
goodsId
:
null
,
goodsName
:
null
,
userNeed
:
null
,
needMsg
:
null
,
processDes
:
null
},
},
data
:
{},
data
:
{},
...
@@ -419,6 +471,7 @@
...
@@ -419,6 +471,7 @@
};
};
},
},
created
()
{
created
()
{
this
.
getParams
();
this
.
getList
();
this
.
getList
();
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
fullHeight
=
document
.
getElementsByClassName
(
'box-card'
)[
0
].
clientHeight
this
.
fullHeight
=
document
.
getElementsByClassName
(
'box-card'
)[
0
].
clientHeight
...
@@ -439,6 +492,19 @@
...
@@ -439,6 +492,19 @@
}
}
},
},
methods
:
{
methods
:
{
getParams
()
{
getSearchParams
().
then
(
res
=>
{
if
(
res
.
userNeed
&&
res
.
userNeed
.
length
>
0
)
{
this
.
userNeedOptions
=
res
.
userNeed
;
}
if
(
res
.
needMsg
&&
res
.
needMsg
.
length
>
0
)
{
this
.
needMsgOptions
=
res
.
needMsg
;
}
if
(
res
.
processDes
&&
res
.
processDes
.
length
>
0
)
{
this
.
processDesOptions
=
res
.
processDes
;
}
});
},
//原因 卖家拒绝(1:买家要求退款金额过高2:买家举证无效,商品没问题3:买家未举证,商品没问题4:商品已超售后服务时限5:退回商品后才能退款6:过期未操作,7:其他)
//原因 卖家拒绝(1:买家要求退款金额过高2:买家举证无效,商品没问题3:买家未举证,商品没问题4:商品已超售后服务时限5:退回商品后才能退款6:过期未操作,7:其他)
actCauses
(
actCause
)
{
actCauses
(
actCause
)
{
if
(
actCause
==
1
)
{
if
(
actCause
==
1
)
{
...
@@ -493,11 +559,11 @@
...
@@ -493,11 +559,11 @@
return
"未知"
return
"未知"
}
}
},
},
//获取地址后缀id
//
//
获取地址后缀id
getIndex
(
index
)
{
//
getIndex(index) {
index
=
index
.
slice
(
14
)
// index = index.slice(14);
return
index
//
return index
},
//
},
//商品状态 0:,1:,2:,3
//商品状态 0:,1:,2:,3
goodsStatus
(
status
)
{
goodsStatus
(
status
)
{
if
(
status
==
0
)
{
if
(
status
==
0
)
{
...
@@ -547,8 +613,7 @@
...
@@ -547,8 +613,7 @@
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
listRetreat
(
this
.
queryParams
).
then
(
response
=>
{
listRetreat
(
this
.
queryParams
).
then
(
response
=>
{
console
.
log
(
response
.
data
)
//console.log(response.data)
// for
this
.
retreatList
=
response
.
data
.
list
;
this
.
retreatList
=
response
.
data
.
list
;
this
.
total
=
response
.
data
.
total
;
this
.
total
=
response
.
data
.
total
;
...
@@ -634,7 +699,7 @@
...
@@ -634,7 +699,7 @@
if
(
response
.
code
==
0
)
{
if
(
response
.
code
==
0
)
{
this
.
msgSuccess
(
response
.
msg
);
this
.
msgSuccess
(
response
.
msg
);
}
}
console
.
log
(
"拒绝提交返回"
,
response
)
//
console.log("拒绝提交返回", response)
this
.
loading
=
false
;
this
.
loading
=
false
;
});
});
},
},
...
@@ -661,7 +726,7 @@
...
@@ -661,7 +726,7 @@
const
id
=
row
.
Id
const
id
=
row
.
Id
getRetreat
(
id
).
then
(
response
=>
{
getRetreat
(
id
).
then
(
response
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
console
.
log
(
"000"
,
response
.
data
)
//
console.log("000", response.data)
this
.
form
=
response
.
data
;
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
open
=
true
;
this
.
title
=
"售后申请信息详情"
;
this
.
title
=
"售后申请信息详情"
;
...
@@ -671,10 +736,30 @@
...
@@ -671,10 +736,30 @@
handleCancel
()
{
handleCancel
()
{
this
.
open
=
false
;
this
.
open
=
false
;
},
},
//
userNeedChange
(
val
)
{
if
(
val
===
''
)
{
this
.
queryParams
.
userNeed
=
null
;
}
},
needMsgChange
(
val
)
{
if
(
val
===
''
)
{
this
.
queryParams
.
needMsg
=
null
;
}
},
processDesChange
(
val
)
{
if
(
val
===
''
)
{
this
.
queryParams
.
processDes
=
null
;
}
}
}
//methods结束
}
//methods结束
};
};
</
script
>
</
script
>
<
style
scoped
lang=
"scss"
type=
"text/stylus"
>
<
style
scoped
lang=
"scss"
type=
"text/stylus"
>
/
deep
/
.queryFormInline
{
.el-form-item
{
margin-bottom
:
5px
;
}
}
</
style
>
</
style
>
src/views/system/settings/setpsd.vue
浏览文件 @
27a30be6
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论