2022-06-27 09:50:26 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
|
|
|
|
|
<div v-if="crud.props.searchToggle">
|
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
|
<el-form
|
|
|
|
|
|
:inline="true"
|
|
|
|
|
|
class="demo-form-inline"
|
|
|
|
|
|
label-position="right"
|
|
|
|
|
|
label-width="80px"
|
|
|
|
|
|
label-suffix=":"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-form-item label="模糊查询">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.bill_code"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="出库单号"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="所属仓库">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.stor_id"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="全部"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
@change="crud.toQuery"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in storlist"
|
|
|
|
|
|
:key="item.stor_id"
|
|
|
|
|
|
:label="item.stor_name"
|
|
|
|
|
|
:value="item.stor_id"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="创建时间">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="query.createTime"
|
|
|
|
|
|
type="daterange"
|
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
|
|
|
|
@change="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="业务人员">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.bizperson"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="业务人员"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="单据状态">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.bill_status"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="单据状态"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
@change="crud.toQuery"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.io_bill_status"
|
|
|
|
|
|
:key="item.value"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="单据类型">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.bill_type"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
filterable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="单据类型"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
@change="crud.toQuery"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in billtypelist"
|
|
|
|
|
|
:key="item.code"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item.code"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<rrOperation/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</el-form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
|
|
|
|
|
<crudOperation :permission="permission">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
slot="right"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
:disabled="dis_flag"
|
|
|
|
|
|
icon="el-icon-position"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="divOpen"
|
|
|
|
|
|
>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
出库分配
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
slot="right"
|
|
|
|
|
|
class="filter-item"
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
:disabled="dis_flag"
|
|
|
|
|
|
icon="el-icon-check"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="confirm"
|
|
|
|
|
|
>
|
|
|
|
|
|
审核
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</crudOperation>
|
|
|
|
|
|
<!--表格渲染-->
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
ref="table"
|
|
|
|
|
|
v-loading="crud.loading"
|
|
|
|
|
|
:data="crud.data"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
highlight-current-row
|
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
|
@selection-change="crud.selectionChangeHandler"
|
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
|
@select="handleSelectionChange"
|
|
|
|
|
|
@select-all="onSelectAll"
|
|
|
|
|
|
>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<el-table-column type="selection" width="55"/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
|
label="操作"
|
|
|
|
|
|
width="115"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
fixed="right"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<udOperation
|
|
|
|
|
|
:data="scope.row"
|
|
|
|
|
|
:permission="permission"
|
|
|
|
|
|
:disabled-edit="canUd(scope.row)"
|
|
|
|
|
|
:disabled-dle="canUd(scope.row)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="bill_code" width="130" label="订单编码">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-link type="warning" @click="toView(scope.$index, scope.row)">{{ scope.row.bill_code }}</el-link>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<el-table-column show-overflow-tooltip :formatter="stateFormat" prop="bill_status" label="单据状态"/>
|
|
|
|
|
|
<el-table-column prop="stor_name" label="仓库"/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
prop="bill_type"
|
|
|
|
|
|
width="100"
|
|
|
|
|
|
:formatter="bill_typeFormat"
|
|
|
|
|
|
label="业务类型"
|
|
|
|
|
|
/>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<el-table-column show-overflow-tooltip width="135" prop="biz_date" label="业务日期"/>
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="create_mode" :formatter="create_modeFormat" label="生成方式"/>
|
|
|
|
|
|
<el-table-column label="明细数" align="center" prop="detail_count"/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
<el-table-column label="总重量" align="center" prop="total_qty">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ fun(scope.row.total_qty) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<el-table-column label="备注" align="center" prop="remark"/>
|
|
|
|
|
|
<el-table-column label="制单人" align="center" prop="input_optname"/>
|
|
|
|
|
|
<el-table-column label="制单时间" align="center" prop="input_time" width="150"/>
|
|
|
|
|
|
<el-table-column label="修改人" align="center" prop="update_optname"/>
|
|
|
|
|
|
<el-table-column label="修改时间" align="center" prop="update_time" width="150"/>
|
|
|
|
|
|
<el-table-column label="分配人" align="center" prop="dis_optname"/>
|
|
|
|
|
|
<el-table-column label="分配时间" align="center" prop="dis_time" width="150"/>
|
|
|
|
|
|
<el-table-column label="确认人" align="center" prop="confirm_optname" width="150"/>
|
|
|
|
|
|
<el-table-column label="确认时间" align="center" prop="confirm_time" width="150"/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<pagination/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</div>
|
2022-07-01 09:14:57 +08:00
|
|
|
|
<AddDialog @AddChanged="querytable"/>
|
|
|
|
|
|
<ViewDialog :dialog-show.sync="viewShow" :rowmst="mstrow" @AddChanged="querytable"/>
|
|
|
|
|
|
<DivDialog :dialog-show.sync="divShow" :open-param="openParam" :bill-type="billType" :buss-config="bussConfig" @AddChanged="querytable"/>
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import sparePart from '@/api/wms/sb/sparepartout'
|
|
|
|
|
|
import crudRawAssist from '@/api/wms/st/core/inbill/rawassist'
|
|
|
|
|
|
import CRUD, { crud, header, presenter } from '@crud/crud'
|
|
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
2022-07-08 14:58:12 +08:00
|
|
|
|
import ViewDialog from '@/views/wms/sb/outbill/ViewDialog'
|
2022-06-27 09:50:26 +08:00
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
|
import udOperation from '@crud/UD.operation'
|
|
|
|
|
|
import pagination from '@crud/Pagination'
|
|
|
|
|
|
import DateRangePicker from '@/components/DateRangePicker/index'
|
|
|
|
|
|
import AddDialog from '@/views/wms/sb/outbill/AddDialog'
|
|
|
|
|
|
import DivDialog from '@/views/wms/sb/outbill/DivDialog'
|
|
|
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
|
import crudStorattr from '@/api/wms/basedata/st/storattr'
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'Handle',
|
2022-07-01 09:14:57 +08:00
|
|
|
|
components: {
|
|
|
|
|
|
ViewDialog,
|
|
|
|
|
|
AddDialog,
|
|
|
|
|
|
crudOperation,
|
|
|
|
|
|
rrOperation,
|
|
|
|
|
|
udOperation,
|
|
|
|
|
|
pagination,
|
|
|
|
|
|
DateRangePicker,
|
|
|
|
|
|
DivDialog
|
|
|
|
|
|
},
|
2022-06-27 09:50:26 +08:00
|
|
|
|
cruds() {
|
|
|
|
|
|
return CRUD({
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
optShow: { add: true, reset: true },
|
|
|
|
|
|
idField: 'iostorinv_id',
|
|
|
|
|
|
url: '/api/sb/inbill',
|
|
|
|
|
|
crudMethod: { ...sparePart }
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
mixins: [presenter(), header(), crud()],
|
|
|
|
|
|
// 数据字典
|
|
|
|
|
|
dicts: ['io_bill_status', 'ST_CREATE_MODE'],
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
height: document.documentElement.clientHeight - 180 + 'px;',
|
2022-09-15 15:41:56 +08:00
|
|
|
|
permission: {},
|
2022-06-27 09:50:26 +08:00
|
|
|
|
audit_flag: true,
|
|
|
|
|
|
dis_flag: true,
|
|
|
|
|
|
disShow: false,
|
|
|
|
|
|
divShow: false,
|
|
|
|
|
|
billType: null,
|
|
|
|
|
|
openParam: {},
|
|
|
|
|
|
bussConfig: null,
|
|
|
|
|
|
currentRow: null,
|
|
|
|
|
|
viewShow: false,
|
|
|
|
|
|
mstrow: {},
|
|
|
|
|
|
storlist: [],
|
|
|
|
|
|
billtypelist: [],
|
|
|
|
|
|
createtypelist: [],
|
|
|
|
|
|
statuslist: []
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
...mapGetters([
|
|
|
|
|
|
'user'
|
|
|
|
|
|
])
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted: function() {
|
|
|
|
|
|
const that = this
|
|
|
|
|
|
window.onresize = function temp() {
|
|
|
|
|
|
that.height = document.documentElement.clientHeight - 180 + 'px;'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
crudStorattr.getStor({ 'is_attachment': '1' }).then(res => {
|
|
|
|
|
|
this.storlist = res.content
|
|
|
|
|
|
})
|
|
|
|
|
|
crudRawAssist.getType({ 'io_code': '0109', 'io_flag': '01' }).then(res => {
|
|
|
|
|
|
this.billtypelist = res
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
fun(val) {
|
|
|
|
|
|
return Number(val).toFixed(3)
|
|
|
|
|
|
},
|
|
|
|
|
|
canUd(row) {
|
|
|
|
|
|
return row.bill_status !== '10'
|
|
|
|
|
|
},
|
2022-07-01 09:14:57 +08:00
|
|
|
|
toView(index, row) {
|
2022-06-27 09:50:26 +08:00
|
|
|
|
this.mstrow = row
|
|
|
|
|
|
this.viewShow = true
|
|
|
|
|
|
},
|
|
|
|
|
|
handleSelectionChange(val, row) {
|
|
|
|
|
|
if (val.length > 1) {
|
|
|
|
|
|
this.$refs.table.clearSelection()
|
|
|
|
|
|
this.$refs.table.toggleRowSelection(val.pop())
|
|
|
|
|
|
this.buttonChange(row)
|
|
|
|
|
|
} else if (val.length === 1) {
|
|
|
|
|
|
this.buttonChange(row)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.handleCurrentChange(null)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
onSelectAll() {
|
|
|
|
|
|
this.$refs.table.clearSelection()
|
|
|
|
|
|
this.handleCurrentChange(null)
|
|
|
|
|
|
},
|
|
|
|
|
|
buttonChange(currentRow) {
|
|
|
|
|
|
if (currentRow !== null) {
|
|
|
|
|
|
this.currentRow = currentRow
|
|
|
|
|
|
if (currentRow.bill_status === '10' || currentRow.bill_status === '20' || currentRow.bill_status === '30' || currentRow.bill_status === '40') {
|
|
|
|
|
|
this.dis_flag = false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.dis_flag = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
handleCurrentChange(currentRow) {
|
|
|
|
|
|
if (currentRow === null) {
|
|
|
|
|
|
this.dis_flag = true
|
|
|
|
|
|
this.currentRow = {}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
this.crud.query.buss_type = '0109'
|
|
|
|
|
|
this.handleCurrentChange(null)
|
|
|
|
|
|
},
|
|
|
|
|
|
bill_typeFormat(row, column) {
|
|
|
|
|
|
for (const item of this.billtypelist) {
|
|
|
|
|
|
if (item.code == row.bill_type) {
|
|
|
|
|
|
return item.name
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
stateFormat(row, column) {
|
|
|
|
|
|
return this.dict.label.io_bill_status[row.bill_status]
|
|
|
|
|
|
},
|
|
|
|
|
|
create_modeFormat(row, column) {
|
|
|
|
|
|
return this.dict.label.ST_CREATE_MODE[row.create_mode]
|
|
|
|
|
|
},
|
|
|
|
|
|
confirm() {
|
|
|
|
|
|
if (!this.currentRow) {
|
|
|
|
|
|
this.crud.notify('请选择一条单据', CRUD.NOTIFICATION_TYPE.INFO)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
sparePart.confirm(this.currentRow).then(res => {
|
|
|
|
|
|
this.crud.notify('单据确认成功!', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
|
|
|
|
this.crud.toQuery()
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
divOpen() {
|
|
|
|
|
|
if (!this.currentRow) {
|
|
|
|
|
|
this.crud.notify('请选择一条单据', CRUD.NOTIFICATION_TYPE.INFO)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
sparePart.getIODtl({ 'bill_code': this.currentRow.bill_code, 'open_flag': '1' }).then(res => {
|
|
|
|
|
|
this.openParam = res
|
|
|
|
|
|
this.billType = this.currentRow.bill_type
|
|
|
|
|
|
this.divShow = true
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
querytable() {
|
|
|
|
|
|
this.onSelectAll()
|
|
|
|
|
|
this.crud.toQuery()
|
|
|
|
|
|
this.handleCurrentChange(null)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
|
|
::v-deep .el-dialog__body {
|
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
|
}
|
2022-10-11 16:31:12 +08:00
|
|
|
|
::v-deep {
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__menu {
|
|
|
|
|
|
|
|
|
|
|
|
overflow-x: auto !important;
|
|
|
|
|
|
|
|
|
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
|
|
|
|
max-height: 300px !important;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__label {
|
|
|
|
|
|
|
|
|
|
|
|
overflow: unset;
|
|
|
|
|
|
|
|
|
|
|
|
text-overflow: unset;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__control {
|
|
|
|
|
|
|
|
|
|
|
|
height: 20px !important;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__multi-value-item-container,
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect--has-value .vue-treeselect__multi-value {
|
|
|
|
|
|
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__limit-tip,
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect--searchable.vue-treeselect--multi.vue-treeselect--has-value
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__input-container {
|
|
|
|
|
|
|
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect--has-value .vue-treeselect__multi-value {
|
|
|
|
|
|
|
|
|
|
|
|
// margin-bottom: 15px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__placeholder,
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__single-value {
|
|
|
|
|
|
|
|
|
|
|
|
height: 28px;
|
|
|
|
|
|
|
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
|
|
|
|
|
|
|
font-size: small;
|
|
|
|
|
|
|
|
|
|
|
|
color: "#CCCFD6";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect--has-value .vue-treeselect__input {
|
|
|
|
|
|
|
|
|
|
|
|
height: 18px !important;
|
|
|
|
|
|
|
|
|
|
|
|
line-height: 18px !important;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect div,
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect span {
|
|
|
|
|
|
|
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 选中后的溢出隐藏
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__multi-value-label {
|
|
|
|
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
|
|
width: 140px;
|
|
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vue-treeselect__value-container {
|
|
|
|
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2022-06-27 09:50:26 +08:00
|
|
|
|
</style>
|