33
schangxiang@126.com
2024-12-07 9597b1df912c1ca4401a74970d9472e268b3a9c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<template>
  <div class="wmsBusinessType-container">
    <el-card shadow="hover" :body-style="{ paddingBottom: '0' }">
      <el-form :model="queryParams" ref="queryForm" labelWidth="90">
        <el-row>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10">
            <el-form-item label="关键字">
              <!-- ,创建人,修改人 -->
              <el-input v-model="queryParams.searchKey" clearable="" placeholder="业务类型编号,业务类型名称,移动类型名称,移动类型编号" />
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="业务类型">
              <el-input v-model="queryParams.businessTypeValue" clearable="" placeholder="请输入业务类型" />
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="业务类型名称">
              <el-input v-model="queryParams.businessTypeName" clearable="" placeholder="请输入业务类型名称" />
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="移动类型">
              <el-select clearable="" v-model="queryParams.moveType" placeholder="请选择移动类型">
                <el-option v-for="(item, index) in getEnumMoveTypeData_Index" :key="index" :value="item.value"
                  :label="`${item.describe}`" />
 
              </el-select>
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="上下架类型">
              <el-select clearable="" v-model="queryParams.upDownShelvesType" placeholder="请选择上下架类型">
                <el-option v-for="(item, index) in getEnumUpDownShelvesTypeData_Index" :key="index" :value="item.value"
                  :label="`${item.describe}`" />
 
              </el-select>
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="是否系统参数">
              <el-select clearable="" v-model="queryParams.isSystemParameter" placeholder="请选择是否系统参数">
                <el-option v-for="(item, index) in getEnumIsDisabledData_Index" :key="index" :value="item.value"
                  :label="`${item.describe}`" />
 
              </el-select>
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="">
              <el-select clearable="" v-model="queryParams.downShelvesIsAutoFinish" placeholder="下架单是否自动完成">
                <el-option v-for="(item, index) in getEnumIsDisabledData_Index" :key="index" :value="item.value"
                  :label="`${item.describe}`" />
 
              </el-select>
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI">
            <el-form-item label="是否禁用">
              <el-select clearable="" v-model="queryParams.isDisabled" placeholder="请选择是否禁用">
                <el-option v-for="(item, index) in getEnumIsDisabledData_Index" :key="index" :value="item.value"
                  :label="`${item.describe}`" />
 
              </el-select>
 
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="6" :xl="6" class="mb10">
            <el-form-item>
              <el-button-group style="display: flex; align-items: center;">
                <el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'wmsBusinessType:page'"> 查询
                </el-button>
                <el-button icon="ele-Refresh" @click="() => queryParams = {}"> 重置 </el-button>
                <el-button icon="ele-ZoomIn" @click="changeAdvanceQueryUI" v-if="!showAdvanceQueryUI"
                  style="margin-left:5px;"> 高级查询 </el-button>
                <el-button icon="ele-ZoomOut" @click="changeAdvanceQueryUI" v-if="showAdvanceQueryUI"
                  style="margin-left:5px;"> 隐藏 </el-button>
                <el-button type="primary" style="margin-left:5px;" icon="ele-Plus" @click="openAddWmsBusinessType"
                  v-auth="'wmsBusinessType:add'"> 新增 </el-button>
 
              </el-button-group>
            </el-form-item>
 
          </el-col>
        </el-row>
      </el-form>
    </el-card>
    <el-card class="full-table" shadow="hover" style="margin-top: 5px">
      <el-table :data="tableData" style="width: 100%" v-loading="loading" tooltip-effect="light" row-key="id"
        @sort-change="sortChange" border="">
        <el-table-column type="index" label="序号" width="55" align="center" />
        <el-table-column width="80" prop="moveType" label="移动类型" show-overflow-tooltip="">
          <template #default="scope">
            {{ getEnumDesc(scope.row.moveType, getEnumMoveTypeData_Index) }}
            <!-- <el-tag></el-tag> -->
          </template>
        </el-table-column>
        <el-table-column prop="businessTypeValue" label="业务类型" show-overflow-tooltip="" />
        <el-table-column prop="businessTypeName" label="业务类型名称" min-width="100px" show-overflow-tooltip="" />
 
 
 
        <el-table-column prop="upDownShelvesType" label="上下架类型" show-overflow-tooltip="">
          <template #default="scope">
            {{ getEnumDesc(scope.row.upDownShelvesType, getEnumUpDownShelvesTypeData_Index) }}
            <!-- <el-tag></el-tag> -->
          </template>
        </el-table-column>
        <el-table-column prop="isSystemParameter" label="是否系统参数" show-overflow-tooltip="">
          <template #default="scope">
            <el-tag v-if="scope.row.isSystemParameter"> 是 </el-tag>
            <el-tag type="danger" v-else> 否 </el-tag>
 
          </template>
 
        </el-table-column>
        <el-table-column prop="downShelvesIsAutoFinish" label="下架单是否自动完成" show-overflow-tooltip="">
          <template #default="scope">
            <el-tag v-if="scope.row.downShelvesIsAutoFinish"> 是 </el-tag>
            <el-tag type="danger" v-else> 否 </el-tag>
 
          </template>
 
        </el-table-column>
        <el-table-column prop="isDisabled" label="是否禁用" show-overflow-tooltip="">
          <template #default="scope">
            <el-tag v-if="scope.row.isDisabled"> 是 </el-tag>
            <el-tag type="danger" v-else> 否 </el-tag>
 
          </template>
 
        </el-table-column>
        <el-table-column prop="createTime" label="创建时间" width="130" :formatter="formatDate_T_Time"
          show-overflow-tooltip="" />
        <el-table-column prop="updateTime" label="修改时间" width="130" :formatter="formatDate_T_Time"
          show-overflow-tooltip="" />
        <el-table-column prop="createUserName" label="创建人" show-overflow-tooltip="" />
        <el-table-column prop="updateUserName" label="修改人" show-overflow-tooltip="" />
        <el-table-column label="操作" width="140" align="center" fixed="right" show-overflow-tooltip=""
          v-if="auth('wmsBusinessType:update') || auth('wmsBusinessType:delete')">
          <template #default="scope">
            <el-button icon="ele-Edit" size="small" text="" type="primary" @click="openEditWmsBusinessType(scope.row)"
              v-auth="'wmsBusinessType:update'"> 编辑 </el-button>
            <el-button icon="ele-Delete" size="small" text="" type="primary" @click="delWmsBusinessType(scope.row)"
              v-auth="'wmsBusinessType:delete'"> 删除 </el-button>
          </template>
        </el-table-column>
      </el-table>
      <el-pagination v-model:currentPage="tableParams.page" v-model:page-size="tableParams.pageSize"
        :total="tableParams.total" :page-sizes="[10, 20, 50, 100, 200, 500]" small="" background=""
        @size-change="handleSizeChange" @current-change="handleCurrentChange"
        layout="total, sizes, prev, pager, next, jumper" />
      <printDialog ref="printDialogRef" :title="printWmsBusinessTypeTitle" @reloadTable="handleQuery" />
      <editDialog ref="editDialogRef" :title="editWmsBusinessTypeTitle" @reloadTable="handleQuery" />
    </el-card>
  </div>
</template>
 
<script lang="ts" setup="" name="wmsBusinessType">
import { onMounted, ref } from "vue";
import { ElMessageBox, ElMessage } from "element-plus";
import { auth } from '/@/utils/authFunction';
import { getDictDataItem as di, getDictDataList as dl } from '/@/utils/dict-utils';
import { formatDate, formatDate_T_Date, formatDate_T_Time, defaultTimeRange } from '/@/utils/formatTime';
 
 
import printDialog from '/@/views/system/print/component/hiprint/preview.vue'
import editDialog from '/@/views/main/WmsBase/wmsBusinessType/component/editDialog.vue'
import { pageWmsBusinessType, deleteWmsBusinessType } from '/@/api/main/WmsBase/wmsBusinessType';
import { getAPI } from '/@/utils/axios-utils';
import { SysEnumApi } from '/@/api-services/api';
import commonFunction from '/@/utils/commonFunction';
 
const getEnumMoveTypeData_Index = ref<any>([]);
const getEnumIsDisabledData_Index = ref<any>([]);
const getEnumUpDownShelvesTypeData_Index = ref<any>([]);
const { getEnumDesc } = commonFunction();
const showAdvanceQueryUI = ref(false);
const printDialogRef = ref();
const editDialogRef = ref();
const loading = ref(false);
const tableData = ref<any>([]);
const queryParams = ref<any>({});
const tableParams = ref({
  page: 1,
  pageSize: 10,
  total: 0,
  all: true
});
 
const printWmsBusinessTypeTitle = ref("");
const editWmsBusinessTypeTitle = ref("");
 
// 改变高级查询的控件显示状态
const changeAdvanceQueryUI = () => {
  showAdvanceQueryUI.value = !showAdvanceQueryUI.value;
}
 
 
// 查询操作
const handleQuery = async () => {
  loading.value = true;
  var res = await pageWmsBusinessType(Object.assign(queryParams.value, tableParams.value));
  tableData.value = res.data.result?.items ?? [];
  tableParams.value.total = res.data.result?.total;
  loading.value = false;
 
};
 
 
 
// 列排序
const sortChange = async (column: any) => {
  queryParams.value.field = column.prop;
  queryParams.value.order = column.order;
  await handleQuery();
};
 
// 打开新增页面
const openAddWmsBusinessType = () => {
  editWmsBusinessTypeTitle.value = '添加业务类型';
  editDialogRef.value.openDialog({});
};
 
// 打开打印页面
const openPrintWmsBusinessType = async (row: any) => {
  printWmsBusinessTypeTitle.value = '打印业务类型';
}
 
// 打开编辑页面
const openEditWmsBusinessType = (row: any) => {
  editWmsBusinessTypeTitle.value = '编辑业务类型';
  editDialogRef.value.openDialog(row);
};
 
// 删除
const delWmsBusinessType = (row: any) => {
  ElMessageBox.confirm(`确定要删除吗?`, "提示", {
    confirmButtonText: "确定",
    cancelButtonText: "取消",
    type: "warning",
  })
    .then(async () => {
      var res = await deleteWmsBusinessType(row);
      if (res.data && res.data.code == 200) {
        handleQuery();
        ElMessage.success("删除成功");
      }
    })
    .catch(() => { });
};
 
// 改变页面容量
const handleSizeChange = (val: number) => {
  tableParams.value.pageSize = val;
  handleQuery();
};
 
// 改变页码序号
const handleCurrentChange = (val: number) => {
  tableParams.value.page = val;
  handleQuery();
};
 
 
 
onMounted(async () => {
  getEnumMoveTypeData_Index.value = (await getAPI(SysEnumApi).apiSysEnumEnumDataListGet('MoveTypeEnum')).data.result ?? [];
  getEnumIsDisabledData_Index.value = (await getAPI(SysEnumApi).apiSysEnumEnumDataListGet('TrueFalseEnum')).data.result ?? [];
  getEnumUpDownShelvesTypeData_Index.value = (await getAPI(SysEnumApi).apiSysEnumEnumDataListGet('UpDownShelvesTypeEnum')).data.result ?? [];
  handleQuery();
});
 
</script>
<style scoped>
:deep(.el-input),
:deep(.el-select),
:deep(.el-input-number) {
  width: 100%;
}
</style>