|
|
@@ -43,6 +43,9 @@
|
|
|
<template slot="containerNumber" slot-scope="{ row }">
|
|
|
<span style="color: #1e9fff;cursor: pointer;" @click="rowEdit(row)">{{ row.containerNumber }}</span>
|
|
|
</template>
|
|
|
+ <template slot="whetherDisplaySearch" slot-scope="{ row }">
|
|
|
+ <el-checkbox v-model="query.whetherDisplay" true-label="1" false-label="0"></el-checkbox>
|
|
|
+ </template>
|
|
|
</avue-crud>
|
|
|
</basic-container>
|
|
|
<detailsPage v-if="!isShow" :detailData="detailData" @goBack="goBack"></detailsPage>
|
|
|
@@ -60,7 +63,9 @@ export default {
|
|
|
return {
|
|
|
isShow: true,
|
|
|
form: {},
|
|
|
- query: {},
|
|
|
+ query: {
|
|
|
+ whetherDisplay:'0'
|
|
|
+ },
|
|
|
loading: false,
|
|
|
page: {
|
|
|
pageSize: 10,
|
|
|
@@ -75,7 +80,7 @@ export default {
|
|
|
menuWidth: 140,
|
|
|
tip: false,
|
|
|
searchShow: true,
|
|
|
- searchMenuSpan: 6,
|
|
|
+ searchMenuSpan: 24,
|
|
|
border: true,
|
|
|
index: true,
|
|
|
addBtn: false,
|
|
|
@@ -122,8 +127,14 @@ export default {
|
|
|
{
|
|
|
label: "优先等级",
|
|
|
prop: "priorityLevel",
|
|
|
+ type: "select",
|
|
|
+ dicUrl: "/api/blade-system/dict-biz/dictionary?code=priorityLevel",
|
|
|
+ props: {
|
|
|
+ label: "dictValue",
|
|
|
+ value: "dictKey"
|
|
|
+ },
|
|
|
overHidden: true,
|
|
|
- width: 80,
|
|
|
+ width: 80
|
|
|
},
|
|
|
{
|
|
|
label: "箱号",
|
|
|
@@ -462,6 +473,12 @@ export default {
|
|
|
width: 100,
|
|
|
format: "yyyy-MM-dd",
|
|
|
valueFormat: "yyyy-MM-dd HH:mm:ss"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "可用为0",
|
|
|
+ prop: "whetherDisplay",
|
|
|
+ search: true,
|
|
|
+ hide: true
|
|
|
}
|
|
|
]
|
|
|
},
|