Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
杨硕
template_vue
Commits
048af0bb
Commit
048af0bb
authored
Jul 31, 2023
by
CenXinYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化样品库的出入库记录
Signed-off-by:
CenXinYi
<
2810162984@qq.com
>
parent
2d17fcf4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
553 additions
and
150 deletions
+553
-150
inventoryRecord.js
src/api/sample/inventoryRecord.js
+31
-0
index.vue
src/views/sample/inventoryRecord/index.vue
+522
-150
No files found.
src/api/sample/inventoryRecord.js
0 → 100644
View file @
048af0bb
import
request
from
'@/utils/request'
// TODO: 用来进行工序库的出入库记录的 分页+时间+普通字段的查询
export
function
listLog
(
queryParams
)
{
return
request
({
url
:
'/wbchemistrylog/queryWbChemistryLogByPagination'
,
method
:
'get'
,
params
:
queryParams
})
}
/* TODO: 用来查询单项出入库记录的废弃详情信息 */
export
function
findSingleLogDetail
(
singleLogIdAndUser
)
{
return
request
({
url
:
'/wbchemistrylog/detail'
,
method
:
'post'
,
data
:
singleLogIdAndUser
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
/* TODO: 用来导出表单信息 */
export
function
exportInventoryRecord
()
{
return
request
({
url
:
'/wbchemistrylog/export'
,
method
:
'get'
,
responseType
:
'blob'
})
}
src/views/sample/inventoryRecord/index.vue
View file @
048af0bb
<
template
>
<div
class=
"basicInformation-module app-container"
>
<!-- 搜索区 -->
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"pn"
prop=
"pn"
>
<el-input
v-model=
"queryParams.pn"
placeholder=
"请输入pn"
clearable
:maxlength=
"30"
size=
"small"
style=
"width: 150px"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"name"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入名称"
clearable
size=
"small"
style=
"width: 150px"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
style=
"padding: 8px 7px;"
icon=
"el-icon-search"
size=
"small"
@
click=
"handleQuery"
>
查询
</el-button>
<el-button
type=
"primary"
style=
"padding: 8px 7px;"
icon=
"el-icon-refresh"
size=
"small"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
<div
style=
"float: right"
>
<el-form-item>
<el-button
type=
"primary"
<div
class=
"app-container"
>
<div
class=
"ToolBar"
>
<el-form
v-show=
"showSearch"
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"pn"
prop=
"pn"
>
<el-input
v-model=
"queryParams.pn"
placeholder=
"请输入pn"
clearable
:maxlength=
"20"
size=
"small"
icon=
"el-icon-plus"
@
click=
"handleAdd"
>
新增
</el-button>
<el-button
style=
"padding: 8px 7px;"
type=
"success"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"lot"
prop=
"lot"
>
<el-input
v-model=
"queryParams.lot"
placeholder=
"请输入lot"
clearable
:maxlength=
"20"
size=
"small"
icon=
"el-icon-download"
@
click=
"handleExport"
>
导出
</el-button>
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
</div>
</el-form>
<!-- 分割线 -->
<div
class=
"placeholder"
/>
<!-- 表单区 -->
<div
style=
"padding:5px 10px"
>
<div
class=
"mb12 font-small-bold"
>
基础样式列表
</div>
<el-table
v-loading=
"loading"
border
:data=
"basicinfoMationList"
>
<el-table-column
type=
"index"
label=
"序号"
width=
"50"
/>
<el-table-column
label=
"pn"
prop=
"pn"
:show-overflow-tooltip=
"true"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
pn
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"qty"
prop=
"qty"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
qty
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"name"
prop=
"name"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
name
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"max_qty"
prop=
"max_qty"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
max_qty
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"min_qty"
prop=
"min_qty"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
min_qty
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"unit"
prop=
"unit"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
unit
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"操作人"
prop=
"createName"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
createName
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"操作时间"
prop=
"create_date"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
create_date
||
'-'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
style=
"color: #49cec9"
@
click=
"handleUpdate(scope.row)"
>
修改
</el-button>
<!--
<el-button-->
<!-- v-hasPermi="['sys:role:update']"-->
<!-- size="mini"-->
<!-- type="text"-->
<!-- icon="el-icon-circle-check"-->
<!-- @click="handleMenu(scope.row)"-->
<!-- >数据权限
</el-button>
-->
<el-form-item
label=
"plocation"
prop=
"plocation"
>
<el-input
v-model=
"queryParams.plocation"
placeholder=
"请输入plocation"
clearable
:maxlength=
"20"
size=
"small"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"库类型"
prop=
"ptype"
>
<el-select
v-model=
"queryParams.ptype"
placeholder=
"请选择库类型"
filterable
clearable
@
keyup
.
enter
.
native=
"handleQuery"
>
<el-option
v-for=
"option in selectOptionsAboutPtype"
:key=
"option.value"
:label=
"option.label"
:value=
"option.value"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"库状态"
prop=
"poperate"
>
<el-select
v-model=
"queryParams.poperate"
placeholder=
"请选择库状态"
filterable
clearable
@
keyup
.
enter
.
native=
"handleQuery"
>
<el-option
v-for=
"option in selectOptionsAboutPoperate"
:key=
"option.value"
:label=
"option.label"
:value=
"option.value"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"操作时间"
prop=
"date"
>
<div
class=
"block"
>
<el-date-picker
v-model=
"dateRange"
value-format=
"yyyy-MM-dd"
style=
"width: 250px"
type=
"daterange"
range-separator=
"-"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
/>
</div>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
size=
"small"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
查询
</el-button>
<el-button
size=
"small"
icon=
"el-icon-refresh"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
<!--TODO: 导出和盘点按钮所在 -->
<el-row
:gutter=
"10"
class=
"mb8"
justify=
"start"
>
<el-col
:span=
"1.5"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
>
删除
</el-button>
</
template
>
</el-table-column>
</el-table>
type=
"success"
size=
"small"
icon=
"el-icon-download"
@
click=
"handleExport"
>
导出
</el-button>
</el-col>
</el-row>
</el-form>
</div>
<!-- 分页区-->
<!-- TODO: 分隔符-->
<div
class=
"placeholder"
/>
<!--TODO: Table表单-->
<transition
name=
"fade-transform"
mode=
"out-in"
>
<component
:is=
"BaseTable"
:key=
"queryParams.rows"
:n-index=
"nIndex"
:all-table-arguments=
"allTableArguments"
@
handle-detail=
"handleDetail"
/>
</transition>
<!--TODO: 分页组件-->
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.page"
:limit
.
sync=
"queryParams.
page
"
:limit
.
sync=
"queryParams.
rows
"
@
pagination=
"getList"
/>
<!-- 新增修改弹出 -->
<!-- TODO: 单项详情信息表单配置 -->
<el-dialog
class=
"aboutSingleDetails"
:title=
"title"
:visible
.
sync=
"openDetails"
:close-on-click-modal=
"false"
width=
"800px"
append-to-body
@
closed=
"handleClose"
>
<el-form
ref=
"formDetails"
:model=
"singleDetails"
size=
"small"
label-width=
"90px"
>
<el-row
:gutter=
"10"
justify=
"start"
align=
"middle"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"pn:"
prop=
"pn"
>
<el-input
v-model
.
trim=
"singleDetails.pn"
:readonly=
"isReadOnly"
/>
</el-form-item>
<el-form-item
label=
"lot:"
prop=
"lot"
>
<el-input
v-model
.
trim=
"singleDetails.lot"
:readonly=
"isReadOnly"
/>
</el-form-item>
<el-form-item
label=
"plocation:"
prop=
"plocation"
>
<el-input
v-model
.
trim=
"singleDetails.plocation"
:readonly=
"isReadOnly"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"库类型:"
prop=
"ptype"
>
{{
selectedPtype
(
singleDetails
.
ptype
)
}}
</el-form-item>
<el-form-item
label=
"库状态:"
prop=
"poperate"
>
{{
selectedPoperate
(
singleDetails
.
poperate
)
}}
</el-form-item>
</el-col>
</el-row>
<!-- TODO: 这里是 库状态为废弃时才会触发显示的模块 -->
<transition
name=
"fade-transform"
mode=
"out-in"
>
<el-row
v-if=
" activateAbandonedState "
style=
"height: 160px"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"fq_ys:"
prop=
"fq_ys"
>
{{
singleDetails
.
fq_ys
}}
</el-form-item>
<el-form-item
label=
"fq_bz:"
prop=
"fq_bz"
>
{{
singleDetails
.
fq_bz
}}
</el-form-item>
<el-form-item
label=
"fq_dbxi:"
prop=
"fq_dbxi"
>
{{
singleDetails
.
fq_dbxi
}}
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"fq_dd:"
prop=
"fq_dd"
>
{{
singleDetails
.
fq_dd
}}
</el-form-item>
<el-form-item
label=
"fq_mcode:"
:label-width=
"10"
prop=
"fq_mcode"
>
{{
singleDetails
.
fq_mcode
}}
</el-form-item>
<el-form-item
label=
"fq_yy:"
prop=
"fq_yy"
>
{{
singleDetails
.
fq_yy
}}
</el-form-item>
</el-col>
</el-row>
<transition
/>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"操作员:"
prop=
"userName"
>
<el-input
v-model
.
trim=
"singleDetails.userName"
:readonly=
"isReadOnly"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"操作时间:"
prop=
"createDate"
>
<el-input
v-model
.
trim=
"singleDetails.createDate"
:readonly=
"isReadOnly"
/>
</el-form-item>
</el-col>
</el-row>
</transition></el-form>
</el-dialog>
</div>
</
template
>
<
script
>
import
{
queryList
}
from
'@/api/sample/basicInformation'
import
{
listLog
,
findSingleLogDetail
,
exportInventoryRecord
}
from
'@/api/processMangement/InventoryRecord'
import
BaseTable
from
'@/components/Table/BaseTable/index.vue'
export
default
{
name
:
'Index'
,
name
:
'InventoryRecord'
,
components
:
[
BaseTable
],
data
()
{
return
{
textPrimary
:
'text'
,
deleteName
:
'删除'
,
deleteSize
:
'mini'
,
deleteDisabled
:
'multiple'
,
cleanName
:
'清空'
,
cleanSize
:
'small'
,
exportName
:
'导出'
,
exportSize
:
'small'
,
delIcon
:
'el-icon-delete'
,
exportIcon
:
'el-icon-download'
,
// TODO:遮罩层
loading
:
true
,
// 非多个禁用
multiple
:
true
,
// TODO: 显示搜索条件
showSearch
:
true
,
// TODO: 数据总条数
total
:
0
,
loading
:
false
,
// TODO: 关于 Ptype的数据字典
selectOptionsAboutPoperate
:
[
{
value
:
'1'
,
label
:
'入库'
},
{
value
:
'2'
,
label
:
'出库'
},
{
value
:
'3'
,
label
:
'修正'
},
{
value
:
'4'
,
label
:
'废弃'
}
],
// TODO: 关于 Ptype的数据字典
selectOptionsAboutPtype
:
[
{
value
:
'1'
,
label
:
'设备库'
},
{
value
:
'2'
,
label
:
'工序库'
}
],
// TODO: 查询参数
// TODO: 时间日期范围 调用全局方法来输入进去
dateRange
:
[],
queryParams
:
{
page
:
1
,
rows
:
10
,
pn
:
''
,
name
:
''
// TODO: 设备编码
pn
:
undefined
,
// TODO: lot
lot
:
undefined
,
// TODO: 位置
plocation
:
undefined
,
// TODO: 库状态 1 入,2出,3修正,4废弃
poperate
:
undefined
,
// TODO: 库类型 1设备库 2工序库
ptype
:
undefined
},
// TODO: 用来接收数据源
inventoryRecordList
:
[],
// TODO: 用来说明每一列的类型
columObj
:
{
// 选择框
selection
:
false
,
// 选择框根据条件是否可选
selectable
:
(
row
,
index
)
=>
{
if
(
row
.
switchs
)
{
return
true
}
},
// TODO: column列,columType(列类型,可选text(默认为普通文字模式),input(input可编辑框),switch(switch开关),image(图片),operation(操作按钮))
// TODO: :prop(参数),label(列名),width(宽度),align(对齐方式),sortable(是否支持排序)
columnData
:
[
{
text
:
true
,
prop
:
'pn'
,
label
:
'pn'
},
{
text
:
true
,
prop
:
'lot'
,
label
:
'lot'
},
{
ownDefined
:
true
,
prop
:
'ptype'
,
label
:
'库类型'
,
ownDefinedReturn
:
(
row
,
$index
)
=>
{
return
this
.
selectedPtype
(
row
.
ptype
)
}
},
{
ownDefined
:
true
,
prop
:
'poperate'
,
label
:
'库状态'
,
width
:
'180px'
,
ownDefinedReturn
:
(
row
,
$index
)
=>
{
return
this
.
selectedPoperate
(
row
.
poperate
)
}
},
{
text
:
true
,
prop
:
'plocation'
,
label
:
'plocation'
,
sortable
:
false
,
width
:
'150px'
},
{
text
:
true
,
prop
:
'userName'
,
label
:
'操作员'
,
sortable
:
false
,
width
:
'150px'
},
{
time
:
true
,
prop
:
'createDate'
,
label
:
'操作时间'
,
align
:
'center'
},
// TODO: 如果为操作列,则需要填写需要的操作按钮,类型为Object。operation(操作类型,可选edit,delete,see),type(按钮样式,参考el—botton类型),label(按钮文字)icon(参考el-icon),color(字体颜色)
{
isOperation
:
true
,
label
:
'操作'
,
width
:
'80px'
,
align
:
'center'
,
sortable
:
false
,
operation
:
[{
clickType
:
'1'
,
label
:
'详情'
,
icon
:
''
,
color
:
''
,
size
:
this
.
size
}]
}
]
},
statusOptions
:
{},
basicinfoMationList
:
[]
title
:
''
,
openDetails
:
false
,
isReadOnly
:
true
,
// TODO: 表单里的单项详情参数
singleDetails
:
{},
// TODO: 获取表单单项详情的参数
singleLogIdAndFqYs
:
{},
activateAbandonedState
:
false
}
},
computed
:
{
BaseTable
()
{
return
BaseTable
},
/* TODO:自定义分页索引,实现索引继承 */
nIndex
(
index
)
{
// TODO: 当前页数 - 1 * 每页数据条数 + 1
const
page
=
this
.
queryParams
.
page
// TODO: 当前页码
const
rows
=
this
.
queryParams
.
rows
// TODO: 每页条数
return
index
+
1
+
(
page
-
1
)
*
rows
},
// TODO: 用来汇总Table组件所需要的全部数据并一次性传输给子组件
allTableArguments
()
{
return
{
listName
:
'出入库记录列表'
,
loading
:
this
.
loading
,
List
:
this
.
inventoryRecordList
,
queryParams
:
this
.
queryParams
,
columObj
:
this
.
columObj
}
}
},
/** 路由离开前存储筛选条件*/
beforeRouteLeave
(
to
,
from
,
next
)
{
this
.
$store
.
dispatch
(
'searchSave/searchParamsSet'
,
{
path
:
this
.
$route
.
path
,
param
:
{
...
this
.
queryParams
}
})
next
()
},
created
()
{
this
.
getList
()
},
methods
:
{
handleDelete
()
{
},
handleUpdate
()
{
},
// 初始化获取数据
/** TODO:查询工序库的出入库记录列表 */
getList
()
{
this
.
loading
=
true
queryList
(
this
.
queryParams
).
then
(
res
=>
{
console
.
log
(
'res'
,
res
)
this
.
total
=
res
.
total
this
.
basicinfoMationList
=
res
.
rows
listLog
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
this
.
inventoryRecordList
=
response
.
rows
this
.
total
=
response
.
total
// 暂时还没写后端 this.selectOptionsAboutPoperate = selectOptionsAboutPoperate
// this.selectOptionsAboutPtype = selectOptionsAboutPtype
this
.
loading
=
false
})
},
// 查询
/* TODO: ptype 库类型判断的公用方法 */
selectedPtype
(
ptype
)
{
switch
(
ptype
)
{
case
'1'
:
return
'设备库'
case
'2'
:
return
'工序库'
default
:
return
''
}
},
/* TODO: poperate的库状态判断的公用方法 */
selectedPoperate
(
poperate
)
{
switch
(
poperate
)
{
case
'1'
:
return
'入库'
case
'2'
:
return
'出库'
case
'3'
:
return
'修正'
case
'4'
:
return
'废弃'
default
:
return
''
}
},
/** TODO: 查询按钮操作 */
handleQuery
()
{
this
.
queryParams
.
page
=
1
this
.
getList
()
},
/
/ 重置
/
** TODO: 重置按钮操作 */
resetQuery
()
{
this
.
queryParams
=
{
page
:
1
,
rows
:
10
,
pn
:
''
,
name
:
''
}
this
.
getList
()
this
.
resetForm
(
'queryForm'
)
this
.
handleQuery
()
},
handleAdd
()
{
/* TODO: 控制单项表单关闭的详情 */
handleClose
()
{
this
.
activateAbandonedState
=
false
this
.
singleLogIdAndFqYs
=
{}
},
/* TODO: 获取详情信息*/
handleDetail
:
function
(
row
)
{
/* TODO: 如果库状态为‘废弃’,即为‘4’时,则可以进入 */
if
(
row
.
poperate
!==
'4'
)
{
this
.
singleDetails
=
{
...
row
}
}
else
{
/* TODO: 设置单项详情的查询的条件 */
this
.
singleLogIdAndFqYs
[
'businessId'
]
=
row
.
businessId
this
.
singleLogIdAndFqYs
[
'fqYs'
]
=
row
.
fqYs
/* TODO: 进行查询,如果返回的code为200,则表示返回的值成功 */
findSingleLogDetail
(
this
.
singleLogIdAndFqYs
).
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
singleDetails
=
Object
.
assign
({},
response
.
data
,
{
...
row
})
/* TODO: 如果库状态==='4' 并且返回的状态码为200的时候,才会将可变的详情字段设置为true,去激活并打开 */
this
.
activateAbandonedState
=
true
}
else
{
/* TODO: 如果状态码不对则不会激活可变字段,只会对普通字段进行赋值,并且抛出错误信息response.message */
this
.
$message
({
showClose
:
true
,
message
:
response
.
message
,
type
:
'warning'
})
this
.
singleDetails
=
{
...
row
}
}
}
)
}
this
.
title
=
'记录详情'
this
.
openDetails
=
true
},
handleExport
()
{
this
.
$confirm
(
'是否确认导出所有出入库记录信息?'
,
'警告'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(
function
()
{
return
exportInventoryRecord
().
then
(
response
=>
{
const
blob
=
new
Blob
([
response
])
const
downloadElement
=
document
.
createElement
(
'a'
)
// TODO: 创建下载的链接
const
href
=
window
.
URL
.
createObjectURL
(
blob
)
downloadElement
.
href
=
href
// TODO: 下载后文件名
downloadElement
.
download
=
'出入库记录'
+
'.xls'
document
.
body
.
appendChild
(
downloadElement
)
// TODO: 点击下载
downloadElement
.
click
()
// TODO: 下载完成移除元素
document
.
body
.
removeChild
(
downloadElement
)
// TODO: 释放掉blob对象
window
.
URL
.
revokeObjectURL
(
href
)
// this.download(response.msg);
})
})
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.basicInformation-module
{
font-size
:
18px
;
<
style
lang=
"scss"
scoped
>
.app-container
{
padding
:
0
;
font-size
:
18px
;
.placeholder
{
height
:
1
.3vh
;
height
:
1
.3vh
;
background-color
:
#F4F4F4
;
margin-bottom
:
10px
margin-bottom
:
10px
}
/*TODO: 这里是调整ToolBar的样式的噢!*/
.ToolBar
{
.el-form
{
.el-form-item
{
.el-select
{
width
:
160px
}
.el-input
{
width
:
180px
}
}
}
}
}
</
style
>
/* TODO: 专门用来解决el-input边框的问题 */
.aboutSingleDetails
{
.el-form
{
.el-form-item
{
.el-input
>>>
.el-input__inner
{
-webkit-appearance
:
none
;
background-color
:
#FFF
;
background-image
:
none
;
border-radius
:
4px
;
border
:
0
;
width
:
100%
;
}
}
}
}
</
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