|
@@ -113,30 +113,42 @@
|
|
<el-table-column label="条码">
|
|
<el-table-column label="条码">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span v-if="id">{{ scope.row.product_vo.bar_code }}</span>
|
|
<span v-if="id">{{ scope.row.product_vo.bar_code }}</span>
|
|
- <span v-else>{{ scope.row.bar_code }}</span>
|
|
|
|
|
|
+ <span v-else>{{ scope.row.product_vo.bar_code }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="序列号" >
|
|
|
|
|
|
+ <el-table-column label="序列号">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span >{{scope.row}}</span>
|
|
|
|
|
|
+ <div class="sn-code-container">
|
|
|
|
+ <span v-for="item in scope.row.sn_code_list" :key="item.id">
|
|
|
|
+ {{ item.sn_code }},
|
|
|
|
+ </span>
|
|
|
|
+ </div>
|
|
<!-- <span v-if="id">{{ scope.row.product_vo.sn_code }}</span>
|
|
<!-- <span v-if="id">{{ scope.row.product_vo.sn_code }}</span>
|
|
<span v-else>{{ scope.row.sn_code }}</span> -->
|
|
<span v-else>{{ scope.row.sn_code }}</span> -->
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="product_vo.spec_name" label="规格型号" v-if="id">
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="product_vo.spec_name"
|
|
|
|
+ label="规格型号"
|
|
|
|
+ v-if="id"
|
|
|
|
+ >
|
|
<!-- <template slot-scope="scope">
|
|
<!-- <template slot-scope="scope">
|
|
{{ scope.row.product_vo.spec_name }}
|
|
{{ scope.row.product_vo.spec_name }}
|
|
</template> -->
|
|
</template> -->
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="spec_name" label="规格型号" v-else>
|
|
|
|
- <!-- <template slot-scope="scope">
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="product_vo.spec_name"
|
|
|
|
+ label="规格型号"
|
|
|
|
+ v-else
|
|
|
|
+ >
|
|
|
|
+ <!-- <template slot-scope="scope">
|
|
{{ scope.row.spec_name }}
|
|
{{ scope.row.spec_name }}
|
|
</template> -->
|
|
</template> -->
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="单位">
|
|
<el-table-column label="单位">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span v-if="id">{{ scope.row.product_vo.unit }}</span>
|
|
<span v-if="id">{{ scope.row.product_vo.unit }}</span>
|
|
- <span v-else>{{ scope.row.unit }}</span>
|
|
|
|
|
|
+ <span v-else>{{ scope.row.product_vo.unit }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<!-- <el-table-column label="订单数量">
|
|
<!-- <el-table-column label="订单数量">
|
|
@@ -153,25 +165,27 @@
|
|
></el-input-number>
|
|
></el-input-number>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <!-- <el-table-column label="库存数量">
|
|
|
|
|
|
+ <!-- <el-table-column label="库存数量">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.usable_stock }}
|
|
{{ scope.row.usable_stock }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>-->
|
|
</el-table-column>-->
|
|
<el-table-column label="差异">
|
|
<el-table-column label="差异">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{ scope.row.num - sn_code_list.length || 0 }}
|
|
|
|
|
|
+ <span v-if="scope.row.sn_code_list">{{
|
|
|
|
+ scope.row.num - scope.row.sn_code_list.length || 0
|
|
|
|
+ }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
- width="200"
|
|
|
|
|
|
+ width="200"
|
|
label="操作"
|
|
label="操作"
|
|
v-if="type !== 'detail' && type !== 'audit'"
|
|
v-if="type !== 'detail' && type !== 'audit'"
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|
|
- @click="addSnCode(scope.row,scope.$index)"
|
|
|
|
|
|
+ @click="addSnCode(scope.row, scope.$index)"
|
|
>添加序列号</el-button
|
|
>添加序列号</el-button
|
|
>
|
|
>
|
|
<el-button
|
|
<el-button
|
|
@@ -182,7 +196,6 @@
|
|
"
|
|
"
|
|
>删除</el-button
|
|
>删除</el-button
|
|
>
|
|
>
|
|
-
|
|
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -207,7 +220,7 @@
|
|
>入库
|
|
>入库
|
|
</el-button>
|
|
</el-button>
|
|
<el-button @click="printIng" v-if="type == 'audit'">打印</el-button>
|
|
<el-button @click="printIng" v-if="type == 'audit'">打印</el-button>
|
|
- <el-button @click="$router.back()">返回</el-button>
|
|
|
|
|
|
+ <el-button @click="toBack()">返回</el-button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<el-dialog title="提示" :visible.sync="dialogVisible" width="30%">
|
|
<el-dialog title="提示" :visible.sync="dialogVisible" width="30%">
|
|
@@ -234,7 +247,13 @@
|
|
>
|
|
>
|
|
</span>
|
|
</span>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
- <el-dialog title="扫码入库" :visible.sync="scanDialogVisible" width="30%" :close-on-press-escape="false" :close-on-click-modal="false">
|
|
|
|
|
|
+ <el-dialog
|
|
|
|
+ title="扫码入库"
|
|
|
|
+ :visible.sync="scanDialogVisible"
|
|
|
|
+ width="30%"
|
|
|
|
+ :close-on-press-escape="false"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ >
|
|
<el-form
|
|
<el-form
|
|
ref="scanGoodsForm"
|
|
ref="scanGoodsForm"
|
|
:model="scanGoodsForm"
|
|
:model="scanGoodsForm"
|
|
@@ -278,19 +297,20 @@
|
|
{{ scope.row.goods_vo.sn }}
|
|
{{ scope.row.goods_vo.sn }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="bar_code" label="商品条码"> </el-table-column>
|
|
|
|
- <el-table-column prop="bar_code" label="序列号"></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="product_vo.bar_code" label="商品条码">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <!-- <el-table-column prop="" label="序列号"></el-table-column> -->
|
|
<el-table-column prop="" label="商品名称">
|
|
<el-table-column prop="" label="商品名称">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.goods_vo.name }}
|
|
{{ scope.row.goods_vo.name }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="spec_name" label="规格型号">
|
|
|
|
- <!-- <template slot-scope="scope">
|
|
|
|
|
|
+ <el-table-column prop="product_vo.spec_name" label="规格型号">
|
|
|
|
+ <!-- <template slot-scope="scope">
|
|
{{ scope.row.spec_name }}
|
|
{{ scope.row.spec_name }}
|
|
</template> -->
|
|
</template> -->
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="unit" label="单位"> </el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="product_vo.unit" label="单位"> </el-table-column>
|
|
<!-- <el-table-column prop="product_list.stock_num" label="库存数量"> </el-table-column> -->
|
|
<!-- <el-table-column prop="product_list.stock_num" label="库存数量"> </el-table-column> -->
|
|
</el-table>
|
|
</el-table>
|
|
<!-- <el-pagination
|
|
<!-- <el-pagination
|
|
@@ -327,12 +347,13 @@
|
|
{{ scope.row.sn }}
|
|
{{ scope.row.sn }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
-<!-- <el-table-column prop="member_id" label="客户">
|
|
|
|
|
|
+ <!-- <el-table-column prop="member_id" label="客户">
|
|
<template slot-scope="scope">{{
|
|
<template slot-scope="scope">{{
|
|
memberType(scope.row.member_id)
|
|
memberType(scope.row.member_id)
|
|
}}</template>
|
|
}}</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- --> <el-table-column prop="order_time" label="下单时间">
|
|
|
|
|
|
+ -->
|
|
|
|
+ <el-table-column prop="order_time" label="下单时间">
|
|
<template slot-scope="scope">{{
|
|
<template slot-scope="scope">{{
|
|
scope.row.order_time | unixToDate
|
|
scope.row.order_time | unixToDate
|
|
}}</template>
|
|
}}</template>
|
|
@@ -364,7 +385,6 @@
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
</el-table>
|
|
</el-table>
|
|
<el-pagination
|
|
<el-pagination
|
|
-
|
|
|
|
@size-change="handlePageSizeChange"
|
|
@size-change="handlePageSizeChange"
|
|
@current-change="handlePageCurrentChange"
|
|
@current-change="handlePageCurrentChange"
|
|
:current-page="orderList.page_no"
|
|
:current-page="orderList.page_no"
|
|
@@ -375,11 +395,18 @@
|
|
>
|
|
>
|
|
</el-pagination>
|
|
</el-pagination>
|
|
<span slot="footer" class="dialog-footer">
|
|
<span slot="footer" class="dialog-footer">
|
|
- <el-button @click="closeOrder">取 消</el-button>
|
|
|
|
|
|
+ <el-button @click="closeOrder">取 消</el-button>
|
|
<el-button type="primary">确 定</el-button>
|
|
<el-button type="primary">确 定</el-button>
|
|
</span>
|
|
</span>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
- <el-dialog title="序列号" :visible.sync="snCodeVisible" width="30%" :close-on-press-escape="false" :close-on-click-modal="false">
|
|
|
|
|
|
+ <el-dialog
|
|
|
|
+ title="序列号"
|
|
|
|
+ @close="closeSncode"
|
|
|
|
+ :visible.sync="snCodeVisible"
|
|
|
|
+ width="30%"
|
|
|
|
+ :close-on-press-escape="false"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ >
|
|
<el-form
|
|
<el-form
|
|
ref="scanGoodsForm"
|
|
ref="scanGoodsForm"
|
|
:model="scanGoodsForm"
|
|
:model="scanGoodsForm"
|
|
@@ -548,11 +575,11 @@ export default {
|
|
name: "门店自提",
|
|
name: "门店自提",
|
|
},
|
|
},
|
|
],
|
|
],
|
|
- snCodeVisible:false,
|
|
|
|
- sn_code:'',
|
|
|
|
- sku:'',
|
|
|
|
- sn_code_list:[],
|
|
|
|
- index:''
|
|
|
|
|
|
+ snCodeVisible: false,
|
|
|
|
+ sn_code: "",
|
|
|
|
+ sku: "",
|
|
|
|
+ sn_code_list: [],
|
|
|
|
+ index: "",
|
|
};
|
|
};
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -607,19 +634,33 @@ export default {
|
|
...mapGetters(["user"]),
|
|
...mapGetters(["user"]),
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ /* 返回出入明细 */
|
|
|
|
+ toBack() {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ name: "goodsExchange",
|
|
|
|
+ params: { type: "second" },
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ closeSncode() {
|
|
|
|
+ this.sn_code = "";
|
|
|
|
+ this.snCodeVisible = false;
|
|
|
|
+ },
|
|
//扫序列号goodsExchangeAddForm.product_list[this.index].sn_code_list
|
|
//扫序列号goodsExchangeAddForm.product_list[this.index].sn_code_list
|
|
- toSnCode(){
|
|
|
|
- API_GoodsExchange.getSnCode('in',this.sku,this.sn_code).then(res=>{
|
|
|
|
- this.sn_code_list.push(res)
|
|
|
|
- this.sn_code=''
|
|
|
|
- this.snCodeVisible=false
|
|
|
|
- })
|
|
|
|
- this.goodsExchangeAddForm.product_list[this.index].sn_code_list=this.sn_code_list
|
|
|
|
|
|
+ toSnCode() {
|
|
|
|
+ API_GoodsExchange.getSnCode("in", this.sku, this.sn_code).then((res) => {
|
|
|
|
+ /* this.sn_code_list.push(res); */
|
|
|
|
+ this.sn_code = "";
|
|
|
|
+ this.snCodeVisible = false;
|
|
|
|
+ this.goodsExchangeAddForm.product_list[this.index].sn_code_list.push(
|
|
|
|
+ res
|
|
|
|
+ );
|
|
|
|
+ });
|
|
},
|
|
},
|
|
- addSnCode(row,index){
|
|
|
|
- this.sku=row.product_vo.sku
|
|
|
|
- this.index=index
|
|
|
|
- this.snCodeVisible=true
|
|
|
|
|
|
+ addSnCode(row, index) {
|
|
|
|
+ /* this.goodsExchangeAddForm.product_list[index].sn_code_list =[] */
|
|
|
|
+ this.sku = row.product_vo.sku;
|
|
|
|
+ this.index = index;
|
|
|
|
+ this.snCodeVisible = true;
|
|
},
|
|
},
|
|
orderBtn() {
|
|
orderBtn() {
|
|
API_order.getOrderList(this.params).then((res) => {
|
|
API_order.getOrderList(this.params).then((res) => {
|
|
@@ -627,20 +668,20 @@ export default {
|
|
this.orderVisible = true;
|
|
this.orderVisible = true;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- closeOrder(){
|
|
|
|
|
|
+ closeOrder() {
|
|
this.orderVisible = false;
|
|
this.orderVisible = false;
|
|
},
|
|
},
|
|
- /** 分页大小发生改变 */
|
|
|
|
- handlePageSizeChange(size) {
|
|
|
|
|
|
+ /** 分页大小发生改变 */
|
|
|
|
+ handlePageSizeChange(size) {
|
|
this.params.page_size = size;
|
|
this.params.page_size = size;
|
|
- API_order.getOrderList(this.params).then((res) => {
|
|
|
|
|
|
+ API_order.getOrderList(this.params).then((res) => {
|
|
this.orderList = res;
|
|
this.orderList = res;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
/** 分页页数发生改变 */
|
|
/** 分页页数发生改变 */
|
|
handlePageCurrentChange(page) {
|
|
handlePageCurrentChange(page) {
|
|
this.params.page_no = page;
|
|
this.params.page_no = page;
|
|
- API_order.getOrderList(this.params).then((res) => {
|
|
|
|
|
|
+ API_order.getOrderList(this.params).then((res) => {
|
|
this.orderList = res;
|
|
this.orderList = res;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -705,7 +746,6 @@ export default {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|
|
-
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
// 根据条码 序列号查询商品
|
|
// 根据条码 序列号查询商品
|
|
@@ -748,6 +788,7 @@ export default {
|
|
this.goodsList = val.map((el) => {
|
|
this.goodsList = val.map((el) => {
|
|
el.product_id = el.id;
|
|
el.product_id = el.id;
|
|
el.goods_id = el.id;
|
|
el.goods_id = el.id;
|
|
|
|
+ el.sn_code_list = [];
|
|
return el;
|
|
return el;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -772,8 +813,8 @@ export default {
|
|
console.log(res);
|
|
console.log(res);
|
|
|
|
|
|
}) */
|
|
}) */
|
|
- this.goodsExchangeAddForm.product_list = this.goodsList;
|
|
|
|
- console.log(this.goodsExchangeAddForm.product_list);
|
|
|
|
|
|
+ this.goodsExchangeAddForm.product_list = this.goodsList; //.map(el=>{el.sn_code_list=[]})
|
|
|
|
+ console.log(this.goodsList);
|
|
this.goodsVisible = false;
|
|
this.goodsVisible = false;
|
|
} else {
|
|
} else {
|
|
this.$message.error("请选择商品信息");
|
|
this.$message.error("请选择商品信息");
|
|
@@ -787,9 +828,13 @@ export default {
|
|
printIng() {},
|
|
printIng() {},
|
|
/* 扫条码 */
|
|
/* 扫条码 */
|
|
toSearch() {
|
|
toSearch() {
|
|
- API_GoodsExchange.getProduct(this.goodsExchangeAddForm.warehouse_id,this.scanGoodsForm.bar_code).then((res) => {
|
|
|
|
- this.goodsExchangeAddForm.product_list.push(res)
|
|
|
|
- this.scanGoodsForm.bar_code=''
|
|
|
|
|
|
+ API_GoodsExchange.getProduct(
|
|
|
|
+ this.goodsExchangeAddForm.warehouse_id,
|
|
|
|
+ this.scanGoodsForm.bar_code
|
|
|
|
+ ).then((res) => {
|
|
|
|
+ res.sn_code_list = [];
|
|
|
|
+ this.goodsExchangeAddForm.product_list.push(res);
|
|
|
|
+ this.scanGoodsForm.bar_code = "";
|
|
this.scanDialogVisible = false;
|
|
this.scanDialogVisible = false;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -929,6 +974,11 @@ export default {
|
|
this.$message.error("请选择商品!");
|
|
this.$message.error("请选择商品!");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+ params.product_list.map((el) => {
|
|
|
|
+ el.product_stock_id = el.id;
|
|
|
|
+ el.product_id = el.product_vo.id;
|
|
|
|
+ el.id = "";
|
|
|
|
+ });
|
|
if (this.$route.name === "editInventory") {
|
|
if (this.$route.name === "editInventory") {
|
|
API_GoodsExchange.editWarehouseEntry(id, params).then(
|
|
API_GoodsExchange.editWarehouseEntry(id, params).then(
|
|
(response) => {
|
|
(response) => {
|
|
@@ -994,6 +1044,11 @@ export default {
|
|
this.$message.error("请选择商品!");
|
|
this.$message.error("请选择商品!");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+ params.product_list.map((el) => {
|
|
|
|
+ el.product_stock_id = el.id;
|
|
|
|
+ el.product_id = el.product_vo.id;
|
|
|
|
+ el.id = "";
|
|
|
|
+ });
|
|
/* */ if (this.$route.name === "editInventory") {
|
|
/* */ if (this.$route.name === "editInventory") {
|
|
/* params.contract_product_list.map(el=>{
|
|
/* params.contract_product_list.map(el=>{
|
|
el.product_id=el.id
|
|
el.product_id=el.id
|
|
@@ -1071,20 +1126,23 @@ export default {
|
|
this.$router.push({ name: "goodsExchange" });
|
|
this.$router.push({ name: "goodsExchange" });
|
|
});
|
|
});
|
|
}, */
|
|
}, */
|
|
- // 选择出库单
|
|
|
|
|
|
+ // 选择入库商品明细
|
|
async handleSelectWarehouseEntryBatch() {
|
|
async handleSelectWarehouseEntryBatch() {
|
|
if (!this.goodsExchangeAddForm.warehouse_id) {
|
|
if (!this.goodsExchangeAddForm.warehouse_id) {
|
|
this.$message.error("请先选择仓库!");
|
|
this.$message.error("请先选择仓库!");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- API_GoodsExchange.getGoodsInfo(this.params).then((res) => {
|
|
|
|
|
|
+ API_GoodsExchange.getGoodsInfo(
|
|
|
|
+ this.params,
|
|
|
|
+ this.goodsExchangeAddForm.warehouse_id
|
|
|
|
+ ).then((res) => {
|
|
let item = {};
|
|
let item = {};
|
|
- res.map((el) => {
|
|
|
|
|
|
+ res.records.map((el) => {
|
|
item.sn = el.goods_vo.sn;
|
|
item.sn = el.goods_vo.sn;
|
|
item.name = el.goods_vo.name;
|
|
item.name = el.goods_vo.name;
|
|
return item;
|
|
return item;
|
|
});
|
|
});
|
|
- this.goodsData = res;
|
|
|
|
|
|
+ this.goodsData = res.records;
|
|
this.goodsVisible = true;
|
|
this.goodsVisible = true;
|
|
});
|
|
});
|
|
/* if (!this.goodsExchangeAddForm.warehouse_id) {
|
|
/* if (!this.goodsExchangeAddForm.warehouse_id) {
|
|
@@ -1180,9 +1238,15 @@ export default {
|
|
this.goodsExchangeAddForm.change_time = Math.floor(
|
|
this.goodsExchangeAddForm.change_time = Math.floor(
|
|
this.goodsExchangeAddForm.change_time * 1000
|
|
this.goodsExchangeAddForm.change_time * 1000
|
|
);
|
|
);
|
|
|
|
+ response.product_list.map(el=>{
|
|
|
|
+ if(!el.sn_code_list){
|
|
|
|
+ el.sn_code_list=[]
|
|
|
|
+ }
|
|
|
|
+ })
|
|
this.goodsExchangeAddForm.distribution_name = response.staff_name;
|
|
this.goodsExchangeAddForm.distribution_name = response.staff_name;
|
|
this.goodsExchangeAddForm.product_list =
|
|
this.goodsExchangeAddForm.product_list =
|
|
- response.product_list; /* .map((item) => {
|
|
|
|
|
|
+ response.product_list;
|
|
|
|
+ /* .map((item) => {
|
|
//change_list
|
|
//change_list
|
|
item.name=item.goods_do.name
|
|
item.name=item.goods_do.name
|
|
item.sn=item.goods_do.sn
|
|
item.sn=item.goods_do.sn
|
|
@@ -1289,7 +1353,10 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+.sn-code-container {
|
|
|
|
+ max-height: 150px; /* 设置最大高度,超过这个高度将显示滚动条 */
|
|
|
|
+ overflow-y: auto; /* 垂直方向上溢出时显示滚动条 */
|
|
|
|
+}
|
|
/deep/ {
|
|
/deep/ {
|
|
.el-input--suffix .el-input__inner {
|
|
.el-input--suffix .el-input__inner {
|
|
padding-right: 10px;
|
|
padding-right: 10px;
|