| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807 |
- <template>
- <view class="content-box">
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="搜索"
- @clickLeft="back"
- >
- <!--右菜单-->
- <template slot="right">
- <u-button
- type="success"
- size="small"
- class="u-reset-button"
- @click="openTreePicker"
- text="选择分类"
- ></u-button>
- </template>
- </uni-nav-bar>
- <view class="top-wrapper">
- <view class="searchBox rx-bc">
- <input
- v-model="keyWord"
- placeholder="请输入关键字搜索"
- class="searchInput"
- />
- <view class="rx-sc">
- <image
- class="menu_icon"
- src="~@/static/pda/menu.svg"
- @click="handleSearch"
- ></image>
- <u-button
- @click="doSearch"
- type="success"
- size="small"
- class="u-reset-button"
- text="搜索"
- >
- </u-button>
- </view>
- </view>
- </view>
- <view class="list_box">
- <u-list @scrolltolower="scrolltolower">
- <checkbox-group
- v-for="(item, index) in list"
- :key="index"
- @change="(e) => selectVal(e, item, index)"
- >
- <label class="listBox rx-bs">
- <view class="listBox-sel">
- <checkbox
- :value="item.code"
- color="#fff"
- :disabled="item.disabled"
- :checked="item.checked"
- />
- </view>
- <view class="listBox-con">
- <view class="listBox-top rx-bc">
- <view> {{ item.categoryName }}</view>
- <view class="code">{{ item.categoryCode }} </view>
- </view>
- <view class="listBox-bottom rx">
- <view class="items">
- <text>批次号</text>{{ item.batchNo }}
- </view>
- <view class="items">
- <text>型号</text>{{ item.categoryModel }}
- </view>
- <view class="items">
- <text>规格</text>{{ item.specification }}
- </view>
- <view class="items">
- <text>牌号</text>{{ item.brandNum }}
- </view>
- <view class="items">
- <text>可用库存</text>{{ item.measureQuantity }}
- {{ item.measureUnit }}
- </view>
- <view class="items">
- <text>重量</text>{{ item.weight }}
- {{ item.weightUnit }}
- </view>
- </view>
- </view>
- </label>
- </checkbox-group>
- <view v-if="list.length == 0" style="margin-top: 20vh">
- <u-empty iconSize="150" textSize="32" text="暂无数据"> </u-empty>
- </view>
- </u-list>
- </view>
- <view class="bottom-wrapper rx-bc">
- <view>
- <checkbox
- v-if="!seletedAll"
- color="#fff"
- :checked="seletedAll"
- @tap="_seletedAll"
- >全选</checkbox
- >
- <checkbox
- class="select-all"
- color="#fff"
- v-else
- :checked="seletedAll"
- @tap="_seletedAll"
- >取消全选
- </checkbox>
- </view>
- <view>
- <u-button
- type="success"
- size="small"
- class="u-reset-button"
- :disabled="!checkListLen"
- @click="jumpAdd(1)"
- >
- <view> 选择( {{ checkListLen }} ) </view>
- </u-button>
- <!-- <u-button v-if='rootCategoryLevelId == 23' type="success" size="small" class="u-reset-button"
- @click="jumpAdd(2)">
- <view> 确认 </view>
- </u-button> -->
- </view>
- </view>
- <ba-tree-picker
- ref="treePicker"
- key="verify"
- :multiple="false"
- @select-change="confirm"
- title="选择分类"
- :localdata="classificationList"
- valueKey="id"
- textKey="name"
- childrenKey="children"
- />
- <SearchPopup mode="top" v-if="searchShow">
- <template v-slot:list>
- <view class="search_list">
- <u-form
- labelPosition="left"
- :model="formData"
- labelWidth="180"
- labelAlign="left"
- class="baseForm"
- >
- <u-form-item
- label="仓库:"
- class="required-form"
- borderBottom
- prop="warehouseId"
- >
- <zxz-uni-data-select
- :localdata="warehouseList"
- v-model="formData.warehouseId"
- dataValue="id"
- format="{name}"
- dataKey="name"
- filterable
- ></zxz-uni-data-select>
- </u-form-item>
- <u-form-item
- label="维度:"
- class="required-form"
- borderBottom
- prop="dimension"
- >
- <zxz-uni-data-select
- :localdata="dimensionList"
- v-model="formData.dimension"
- dataValue="id"
- format="{name}"
- dataKey="name"
- filterable
- ></zxz-uni-data-select>
- </u-form-item>
- </u-form>
- </view>
- </template>
- <template v-slot:operate>
- <view class="operate_box rx-bc">
- <u-button size="small" class="u-reset-button" @click="searchCancel">
- 重置
- </u-button>
- <u-button
- type="success"
- size="small"
- class="u-reset-button"
- @click="doSearch"
- >
- 确定
- </u-button>
- </view>
- </template>
- </SearchPopup>
- </view>
- </template>
- <script>
- import baTreePicker from "@/components/ba-tree-picker/ba-tree-picker.vue";
- import { tableHeader } from "../../common.js";
- import {
- treeByPid,
- pageeLedgerMain,
- assetPage,
- getWarehouseList,
- getInventoryDetails,
- getMaterielDetails,
- listInProduct,
- listOutsourceInWarehouse,
- outsourceEndPick,
- categoryGetList,
- assetPdaPage,
- } from "@/api/pda/workOrder.js";
- import SearchPopup from "../../components/searchPopup.vue";
- import { getProductList, getBatchList } from "@/api/pda/selfBuiltPickOrder.js";
- import { EventBus } from "@/utils/eventBus.js";
- let [isEnd] = [false];
- export default {
- components: {
- baTreePicker,
- SearchPopup,
- },
- data() {
- return {
- keyWord: null,
- rootCategoryLevelId: null,
- categoryLevelId: null,
- classificationList: [],
- treePickerShow: false,
- list: [],
- page: 1,
- seletedAll: false, //全选状态
- memoList: [],
- isType: null,
- taskId: null,
- pid: null, // 上个页面id
- storageKey: null,
- formData: {
- produceRoutingId: "",
- dimension: 2,
- },
- warehouseList: [],
- searchShow: false,
- stateList: [
- "启动",
- "空闲",
- "运行",
- "故障",
- "检修",
- "停机",
- "待料",
- "占用",
- ],
- classIds: [],
- dimensionList: [
- {
- id: 1,
- name: "物品维度",
- },
- {
- id: 2,
- name: "批次维度",
- },
- ],
- clientEnvironmentId:
- uni.getStorageSync("userInfo") &&
- uni.getStorageSync("userInfo").clientEnvironmentId, // *1 主环境-601环境 2 soll-索尔环境 3 tg-碳谷环境
- };
- },
- //选择的列表长度
- computed: {
- checkListLen() {
- return this.memoList.length;
- },
- },
- onLoad(option) {
- this.pid = option.id;
- this.classIds = option.classIds || [];
- this.isType = option.isType;
- if (option.taskId == "undefined") {
- this.taskId = null;
- } else {
- this.taskId = option.taskId || null;
- }
- if (Object.prototype.hasOwnProperty.call(option, "classIds")) {
- this.classIds = option.classIds;
- }
- if (option.storageKey) {
- this.storageKey = option.storageKey;
- this.memoList = [];
- if (this.isType == "feed") {
- let _arr =
- (this.storageKey && uni.getStorageSync(this.storageKey)) || [];
- this.memoList = [
- ..._arr[0].modelList,
- ..._arr[0].equipmentList,
- ..._arr[0].instanceList,
- ..._arr[0].aridRegionList,
- ..._arr[0].turnover,
- ..._arr[0].palletList,
- ..._arr[0].revolvingDiskList,
- ..._arr[0].semiProductList,
- ];
- } else if (this.isType == "pick") {
- this.memoList =
- (this.storageKey && uni.getStorageSync(this.storageKey)) || [];
- } else if (this.isType == "job") {
- let _obj =
- (this.storageKey && uni.getStorageSync(this.storageKey)) || {};
- if (Object.prototype.hasOwnProperty.call(_obj, "turnover")) {
- this.memoList = this.memoList.concat(_obj.turnover);
- } else if (
- Object.prototype.hasOwnProperty.call(_obj, "equipmentList")
- ) {
- this.memoList = this.memoList.concat(_obj.equipmentList);
- }
- } else if (this.isType == "zdy") {
- let _arr =
- (this.storageKey && uni.getStorageSync(this.storageKey)) || [];
- if (
- _arr.length != 0 &&
- Object.prototype.hasOwnProperty.call(_arr[0], "turnover")
- ) {
- this.memoList = this.memoList.concat(_arr[0].turnover);
- } else if (
- _arr.length != 0 &&
- Object.prototype.hasOwnProperty.call(_arr[0], "equipmentList")
- ) {
- this.memoList = this.memoList.concat(_arr[0].equipmentList);
- } else if (
- _arr.length != 0 &&
- Object.prototype.hasOwnProperty.call(_arr[0], "standardOutputList")
- ) {
- this.memoList = this.memoList.concat(_arr[0].standardOutputList);
- } else if (
- _arr.length != 0 &&
- Object.prototype.hasOwnProperty.call(_arr[0], "bomMaterialList")
- ) {
- this.memoList = this.memoList.concat(_arr[0].bomMaterialList);
- }
- }
- }
- this.getTreeList();
- this.getWarehouseFn();
- },
- onUnload() {
- if (this.storageKey) {
- uni.removeStorage(this.storageKey);
- }
- },
- methods: {
- _seletedAll() {
- if (!this.seletedAll) {
- this.seletedAll = true;
- this.list.map((item) => {
- this.$set(item, "checked", true);
- const idx = this.memoList.findIndex((itm) => itm.id === item.id);
- if (idx === -1) {
- this.memoList.push(item);
- }
- });
- } else {
- this.seletedAll = false;
- this.list.map((item) => {
- this.$set(item, "checked", false);
- const idx = this.memoList.findIndex((itm) => itm.id === item.id);
- if (idx > -1) {
- this.memoList.splice(idx, 1);
- }
- });
- }
- },
- openTreePicker() {
- this.$refs.treePicker._show();
- },
- tableH(type) {
- return tableHeader(type);
- },
- getTreeList() {
- let params = {};
- console.log(this.classIds, "option", this.isType);
- if (this.isType == "feed") {
- params.ids = [1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 26, 9, 28];
- } else if (this.isType == "pick") {
- // this.treeIds =
- // "9, 23, 2, 1, 4, 14, 5, 8, 16, 13, 15, 6, 10, 22, 1777158952502956034";
- params.ids = [9, 23, 2, 1, 4, 14, 5, 8, 16, 13, 15, 6, 10, 22];
- } else if (this.isType == "job") {
- if (this.clientEnvironmentId == 2) {
- params["ids"] = [7];
- } else {
- params["ids"] = [4, 7];
- }
- } else if (this.isType == "zdy") {
- params["ids"] = JSON.parse(this.classIds);
- } else if (this.isType == "weiwai") {
- // params['ids'] = JSON.parse(this.classIds)
- params["ids"] = [9, 23, 2, 1, 4, 14, 5, 8, 16, 13, 15, 6, 10, 22];
- }
- treeByPid(params).then((res) => {
- this.classificationList = res;
- this.confirm([res[0].id], res[0].name, res[0].rootCategoryLevelId);
- });
- },
- confirm(id, name, rootCategoryLevelId) {
- this.rootCategoryLevelId = rootCategoryLevelId;
- this.categoryLevelId = id;
- this.list = [];
- console.log("是这里嘛");
- this.getList();
- },
- doSearch() {
- this.list = [];
- this.getList();
- this.searchShow = false;
- },
- scrolltolower() {
- if (isEnd) return;
- this.page++;
- this.getList();
- },
- getList() {
- let param = {
- categoryLevelId: this.categoryLevelId,
- keyWord: this.keyWord,
- pageNum: this.page,
- size: 100,
- taskId: this.taskId,
- warehouseId: this.formData.warehouseId,
- };
- if (this.rootCategoryLevelId == "11") {
- // 干燥区特殊处理
- param.size = 5;
- }
- isEnd = false;
- let URL = null;
- if (this.isType == "pick") {
- param.dimension = this.formData.dimension;
- URL = this.formData.dimension == 2 ? getBatchList : getProductList;
- // else if (dimension == 3) {
- // URL = storageApi.getPackingList;
- // }
- // param.dimension = dimension;
- // 领料
- // if (this.rootCategoryLevelId == 23) {
- // this.list = []
- // param = {}
- // param.workOrderId = this.pid
- // URL = listOutsourceInWarehouse
- // } else {
- // param.dimension = 1
- // URL = pageeLedgerMain
- // }
- // param.dimension = 1;
- // URL = pageeLedgerMain;
- } else if (this.isType == "feed") {
- // 投料
- if ([4, 7, 14].includes(Number(this.rootCategoryLevelId))) {
- URL = assetPage;
- } else if (this.rootCategoryLevelId == 2) {
- param.workOrderId = this.pid;
- delete param.taskId;
- delete param.categoryLevelId;
- URL = listInProduct;
- } else if (![2, 4, 7, 14].includes(Number(this.rootCategoryLevelId))) {
- URL = assetPage;
- // if (this.formData.dimension == 3) { // 包装维度
- // URL = getInventoryDetails
- // param.dimension = 3
- // param.rootCategoryLevelId = this.rootCategoryLevelId
- // } else if (this.formData.dimension == 4) { // 物料维度
- // param.dimension = 4
- // param.rootCategoryLevelId = this.rootCategoryLevelId
- // URL = getMaterielDetails
- // }
- }
- } else if (this.isType == "job" || this.isType == "zdy") {
- // 报工
- URL = assetPage;
- } else if (this.isType == "weiwai") {
- // 出库
- if (this.pid == 3) {
- URL = categoryGetList;
- } else {
- // URL = assetPdaPage
- URL = pageeLedgerMain;
- }
- }
- URL(param).then((res) => {
- if (this.rootCategoryLevelId == "11") {
- res.list.forEach((e) => {
- if (e.aridRegionList && e.aridRegionList.length != 0) {
- e.aridRegionList.map((i) => {
- const checked =
- this.memoList.findIndex((itm) => itm.id === i.id) > -1;
- let obj = {
- checked,
- name: e.name,
- region: e.extInfo.region,
- rootCategoryLevelId: e.rootCategoryLevelId,
- ...i,
- instanceId: i.id,
- };
- this.list.push(obj);
- });
- }
- });
- } else {
- this.list.push(
- ...res.list.map((i) => {
- const checked =
- this.memoList.findIndex((itm) => itm.id === i.id) > -1;
- const warehouseId = i.pathIds && i.pathIds.split(",")[0];
- return {
- checked,
- warehouseId,
- ...i,
- instanceId: i.id,
- };
- })
- );
- }
- isEnd = this.list.length >= res.count;
- });
- },
- //勾选
- selectVal(e, val, index) {
- if (val.rootCategoryLevelId == 11 && val.status == 1) {
- return false;
- }
- this.list[index].checked = !this.list[index].checked;
- this.seletedAll = !this.list.some((item) => !item.checked);
- const idx = this.memoList.findIndex(
- (item) => item.id === this.list[index].id
- );
- if (this.list[index].checked) {
- if (idx === -1) {
- this.memoList.push(this.list[index]);
- }
- } else {
- if (idx > -1) {
- this.memoList.splice(idx, 1);
- }
- }
- },
- handleSearch() {
- this.searchShow = true;
- },
- searchCancel() {
- this.formData.warehouseId = "";
- this.formData.dimension = 2;
- this.keyWord = "";
- this.list = [];
- this.page = 1;
- this.getList();
- this.searchShow = false;
- },
- //跳转回添加页面
- jumpAdd(type) {
- if (type == 1) {
- if (
- this.isType == "pick" ||
- this.isType == "feed" ||
- this.isType == "job" ||
- this.isType == "zdy" ||
- this.isType == "weiwai"
- ) {
- this.memoList.map((item) => {
- item.extInfo.heatNumber = "";
- });
- if (
- (this.isType == "zdy" || this.isType == "weiwai") &&
- (this.pid == 2 || this.pid == 3)
- ) {
- let param = {
- memoList: this.memoList,
- pid: this.pid,
- };
- console.log(param, "paramparamparam");
- EventBus.$emit("outEvent", { message: param });
- } else {
- uni.$emit("setSelectList", this.memoList, this.pid);
- }
- uni.navigateBack();
- }
- } else if (type == 2) {
- uni.showModal({
- title: "提示",
- content: "是否领取该工单半成品到此工序!",
- confirmText: "确认", //这块是确定按钮的文字
- success: (rr) => {
- if (rr.confirm) {
- let param = {
- taskId: this.taskId,
- workOrderId: this.pid,
- pickOutInList: this.list,
- };
- outsourceEndPick(param).then((res) => {
- // uni.$emit('setSelectList', this.list, this.pid)
- uni.showToast({
- title: "半成品领料成功,请先去审核",
- icon: "none",
- });
- uni.navigateBack();
- });
- }
- },
- });
- }
- },
- getWarehouseFn() {
- getWarehouseList().then((res) => {
- this.warehouseList = res;
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content-box {
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- background-color: $page-bg;
- }
- .searchBox {
- background-color: #dedede;
- height: 90rpx;
- padding: 0 20rpx;
- .menu_icon {
- width: 60rpx;
- height: 60rpx;
- margin-right: 20rpx;
- }
- input {
- height: 70rpx;
- width: 480rpx;
- background: #f9f9f9 !important;
- padding-left: 10rpx;
- border-radius: 5rpx;
- }
- }
- .list_box {
- flex: 1;
- overflow: hidden;
- padding: 6rpx 0;
- .u-list {
- height: 100% !important;
- }
- }
- .bottom-wrapper {
- height: 80rpx;
- background: #fff;
- padding: 0 32rpx;
- /deep/ .uni-checkbox-input-checked {
- background-color: $theme-color !important;
- border-color: $theme-color !important;
- }
- }
- .listBox {
- margin-top: 8rpx;
- padding: 8rpx 24rpx;
- background: #fff;
- /deep/ .uni-checkbox-input-checked {
- background-color: $theme-color !important;
- border-color: $theme-color !important;
- }
- .listBox-con {
- width: 650rpx;
- font-weight: 400;
- }
- .listBox-top {
- margin-top: 6rpx;
- color: #090a0a;
- font-size: 28rpx;
- font-style: normal;
- font-weight: 800;
- }
- .listBox-bottom {
- color: #090a0a;
- font-size: 24rpx;
- font-style: normal;
- flex-wrap: wrap;
- .items {
- width: calc(50% - 1px);
- border-left: 1rpx solid #e3e5e5;
- border-right: 1rpx solid #e3e5e5;
- border-bottom: 1rpx solid #e3e5e5;
- box-sizing: border-box;
- word-break: break-all;
- text {
- display: inline-block;
- background: #f7f9fa;
- padding: 8rpx 10rpx;
- color: #157a2c;
- }
- &:nth-child(1),
- &:nth-child(2) {
- border-top: 1rpx solid #e3e5e5;
- margin-top: 8rpx;
- }
- }
- }
- }
- .search_list {
- min-height: 100rpx;
- /deep/ .baseForm {
- padding: 0 20rpx;
- }
- }
- </style>
|