| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- <template>
- <div class="sample-content">
- <!-- 表格組件 -->
- <div class="top-content">
- <div class="top-title">仓库可视化</div>
- <div class="query-content">
- <el-form :inline="true" :model="formInline" class="demo-form-inline">
- <el-form-item label="仓库名称:">
- <el-select
- v-model="formInline.cang_ku_ming_chen_value"
- placeholder="请选择样品"
- >
- <el-option
- v-for="(item, index) in cangkuOption"
- :key="index"
- placeholder="区域"
- :label="item.cang_ku_ming_chen"
- :value="item.cang_ku_ming_chen"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item style="margin-left: 50px" label="区域名称:">
- <el-select
- v-model="formInline.qu_yu_value"
- placeholder="请选择区域名称"
- >
- <el-option
- v-for="(item, index) in quyu_arr"
- :key="index"
- placeholder="区域"
- :label="item.qu_yu_"
- :value="item.qu_yu_"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <button
- type="button"
- class="el-button el-button--primary el-button--mini"
- @click="onSubmits"
- >
- <i class="ibps-icon-search"></i><span>查询</span>
- </button>
- </el-form-item>
- </el-form>
- </div>
- </div>
- <div class="test-quyu">
- <div class="test-list">
- <ul class="list-items">
- <li
- class="list-item quyu-item"
- :style="{
- background: quyuShow == item.qu_yu_ ? '#FF9900' : '#e5baba',
- }"
- @click="qu_yu_Event"
- v-for="item in quyu_arr"
- :key="item.qu_yu_"
- >
- <div v-if="item.qu_yu_.includes('冰箱')">
- {{ item.qu_yu_ | freezerFilters }}({{ item.cun_chu_tiao_jian }})
- </div>
- <div v-if="!item.qu_yu_.includes('冰箱')">
- {{ item.qu_yu_ | freezerFilters }}
- </div>
- </li>
- </ul>
- </div>
- </div>
- <div class="body-content">
- <div class="right-view">
- <div class="goods-items">
- <div class="show-demo" v-for="(item, index) in listData" :key="index">
- <div>
- <div class="goods-level">
- <div class="level-dsc">第{{ index | indexfilter(listData) }}层</div>
- <div class="goods-list">
- <div
- v-for="(it, index) in listData[index]"
- :key="index"
- class="goods-dsc"
- :style="{
- background: !it.wu_liao_bian_ma_ ? '#67c23a':'' ,
- }"
- >
- <div class="top-dsc">
- <div class="position">
- <p>名称:{{ it.wu_liao_ming_chen }}</p>
- <p>编码:{{ it.wu_liao_bian_ma_ || "空" }}</p>
- <p>位置:{{ it.cun_fang_wei_zhi_ || "空" }}</p>
- <p>货号:{{ it.huo_hao_ || "空" }}</p>
- </div>
- <div class="right-content">
- <p>入库批号:{{ it.ru_ku_pi_hao_ || "空" }}</p>
- <p>存储条件:{{ it.cun_chu_yao_qiu_ || "空" }}</p>
- <p>有效期:{{ it.you_xiao_qi_ || "空" }}</p>
- <p>库存量:{{ it.ku_cun_liang_ || "空" }}</p>
- </div>
- <!-- <div class="condition">{{ it.cun_chu_tiao_jian }}</div> -->
- </div>
- <div class="bottom-dsc">
- <!-- {{ it.wu_pin_ming_cheng | specimenFilters }} -->
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- <div class="goodshelf-name" v-if="index == 1">
- {{ desString }}
- </div> -->
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import curdPost from "@/business/platform/form/utils/custom/joinCURD.js";
- // import curdPost from "@/business/platform/form/utils/custom/joinCURD.js";
- /*
- [
- 1:{ //第一层
- 1: {[{item:1},{item2:2}]} //第一个区域
- 2:{[{item:1},{item2:2}]} //第二个区域
- },
- 2:{ //第二层
- 1:{[{item:1},{item2:2}]} //第一个区域
- 2:{[{item:1},{item2:2}]} //第二个区域
- }
- ]
- */
- export default {
- data() {
- return {
- cangkuOption: [],
- formInline: {
- cang_ku_ming_chen_value: " 主仓库",
- qu_yu_value: "1号冰箱",
- huo_jia_value: "",
- },
- huojiaInfo: {
- empty: "",
- al: "",
- },
- listData: [],
- desString: "",
- warehouseOptions: [],
- quyu_arr: [],
- huo_jia_arr: [],
- // qu_yu_value: "",
- desShow: true,
- quyuShow: "",
- huojiashow: "",
- firstLoadActive: "false",
- selectActive: "",
- cenghao: [],
- warehouse: [],
- loading: false,
- pagination: {},
- secondshow: false,
- };
- },
- filters: {
- indexfilter: function (value,data) {
- if (data[0]) {
- return value + 1;
- } else {
- return value;
- }
- },
- laySlice: function (value) {
- return value.split("-")[2];
- },
- freezerFilters: function (value) {
- if (value.includes("冷藏柜")) {
- return value.replace("冷藏柜", "冰箱");
- } else if (value.includes("冷冻柜")) {
- return value.replace("冷冻柜", "冰箱");
- } else {
- return value;
- }
- },
- specimenFilters: function (value) {
- if (value == "" || value == undefined) {
- return "未占用";
- } else {
- return value;
- }
- },
- bian_hao_Filters: function (value) {
- if (!value || value == undefined || value == "") {
- return "无";
- } else {
- return value;
- }
- },
- },
- mounted() {
- this.loadQueryData();
- this.firstLoadViewData();
- this.firstLoadQuyu("主仓库");
- },
- methods: {
- firstLoadQuyu(cang_ku) {
- let sqlString = `select DISTINCT subStr(wei_zhi_,1,4) as wei_zhi_,cun_chu_tiao_jian,qu_yu_ from t_ck where cang_ku_ming_chen = '${cang_ku}' order by wei_zhi_ asc`;
-
- var this_ = this;
-
- curdPost("sql", sqlString).then((response) => {
- this_.quyu_arr = response.variables.data;
- this_.quyu_arr.forEach(it=>{
- it.wei_zhi_.includes("-")?"":it.qu_yu_ =it.qu_yu_+it.wei_zhi_.slice(3,4);
- })
- if (!this.firstLoadActive) {
- this_.formInline.qu_yu_value = "";
- }
- });
- },
- firstLoadViewData() {
- //首次加载视图数据 默认中心仓库 耗材区
- this.formInline.cang_ku_ming_chen_value = "主仓库";
- this.formInline.qu_yu_value = "1号冰箱";
- this.selectActive = 1;
- this.firstLoadActive = true;
- this.quyuShow = "1号冰箱";
- var sqlString ="select * from t_mjwlgl where cun_fang_wei_zhi_ like" +"'%" +"BX1T" +"%'";
- this.queryLoad(sqlString, "BX1T");
- },
- sqlSlice(value,num) {
- if(value.includes("冰箱")){
- if(value.includes("T")||value.includes("B")||value.includes("L")||value.includes("R")){
- return 'BX'+num+value.slice(4,5);
- }else{
- return 'BX' +num
- }
- }else if(value.includes("货架")){
- return "HJ"+num;
- }else if(value.includes("试剂柜")){
- return "SJG"+num;
- }
- },
- loadQueryData() {//查询选择仓库数据查询
- var sqlString = "select distinct cang_ku_ming_chen from t_ck ";
- var this_ = this;
- curdPost("sql", sqlString).then((response) => {
- this_.cangkuOption = response.variables.data;
- this_.cangkuOption.forEach((item, index) => {
- if (!item) {
- this_.cangkuOption.splice(index, 1);
- }
- });
- });
- },
- onSubmits() { //头部按钮查询事
- this.desShow = false;
- let value = this.formInline.qu_yu_value
- let num = value.split("号")[0];
- let type = this.sqlSlice(value,num);
- var sqlString =`select * from t_mjwlgl where cun_fang_wei_zhi_ like ` +
- "'%" +
- type +
- "%'";
-
- this.queryLoad(sqlString, type);
- this.formInline.qu_yu_value = value;
- this.quyuShow = value
- },
- queryLoad(sql, py) {
- var datas = [];
- this.cenghao = [];
- const labelsMap = {}; // 货架分层的数据初始化
- let typeData = [];
- var sqltype =
- `select DISTINCT SUBSTR(wei_zhi_,1,6) as wei_zhi_ from t_ck where wei_zhi_ like ` +"'%" +py +"%'" +"ORDER BY wei_zhi_ ASC "; //
-
- curdPost("sql", sqltype).then((res) => {
- typeData = res.variables.data; //查询该位置具有多少层
- curdPost("sql", sql).then((res) => {//sql 查询该位置在物料管理库存信息的物料
- datas = res.variables.data;// 该位置的所有物料信息
- typeData.forEach((item) => { //组件以货架分层的数据: {1:[],2:[],3:[],4:[],5:[],6}
- let num = item.wei_zhi_.split("-")[1];
- labelsMap[num] = [];// 货架分层的数据初始化
- });
- if (datas.length == 0) { //该位置(冰箱)一个物料都没有
- for (var prop in labelsMap) {
- typeData.forEach((item) => { //组件以货架分层的数据: {1:[],2:[],3:[],4:[],5:[],6}
- let num = item.wei_zhi_.split("-")[1];
- if(num == prop){
- labelsMap[prop].push({ cun_fang_wei_zhi_: item.wei_zhi_ });
-
- }
- });
- }
- this.listData = labelsMap;
- return;
- }
- datas.forEach((item) => {//有物料存在该区域
- let props1 = item.cun_fang_wei_zhi_.split("-")[1];
- for (var prop in labelsMap) {
- if (labelsMap.hasOwnProperty(prop)) {
- if (prop == props1) {
- labelsMap[prop].push(item);
- }
- if (prop != props1 && labelsMap[prop].length == 0) {
- typeData.forEach((item) => { //组件以货架分层的数据: {1:[],2:[],3:[],4:[],5:[],6}
- let num = item.wei_zhi_.split("-")[1];
- if(num == prop){
- labelsMap[prop].push({ cun_fang_wei_zhi_: item.wei_zhi_});
- // labelsMap[prop].push({ "zhuangtai": "空"});
- }
- });
- // labelsMap[prop].push({ cun_fang_wei_zhi_: "空" });
- }
- }
- }
- });
- let newarr = [];
- for (var prop in labelsMap) {
- if (labelsMap.hasOwnProperty(prop)) {
- if (labelsMap[prop].length > 1) {
- var item = labelsMap[prop].slice(1);
-
- newarr.push(item);
- } else {
-
- newarr.push(labelsMap[prop]);
- }
- }
- }
- this.listData = newarr;
- console.log(this.listData, "listData");
- });
- });
- },
- qu_yu_Event(e) { //点击区域事件,加载可视化视图
- let value = e.target.innerText;
- let num = value.split("号")[0];
- let type = this.sqlSlice(value,num);
-
- var sqlString =`select * from t_mjwlgl where cun_fang_wei_zhi_ like ` +
- "'%" +
- type +
- "%'";
-
- this.queryLoad(sqlString, type);
- this.formInline.qu_yu_value = value;
- this.quyuShow = value;
- },
- blackEvent() {
- this.desShow = true;
- },
- },
- watch: {
- //监控仓库名称变化 触发第一次加载数据
- "formInline.cang_ku_ming_chen_value": async function (newdata) {
- this.firstLoadQuyu(newdata);
- },
- "formInline.qu_yu_value": function (newdata) {
- this.qu_yu_value = newdata;
- this.quyuShow = newdata;
- this.firstLoadActive = false;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- ul {
- margin: 0;
- }
- p {
- padding: 0;
- margin: 0;
- }
- .sample-content {
- width: 100%;
- .top-content {
- width: 100%;
- .top-title {
- text-align: center;
- font-weight: bold;
- width: 100%;
- font-size: 18px;
- line-height: 40px;
- }
- .query-content {
- display: flex;
- margin-left: 25px;
- }
- }
- .test-quyu,
- .huojia {
- width: 100%;
- .list-items {
- display: flex;
- cursor: pointer;
- .wDTianjian::after {
- content: "2-6";
- }
- .quyu-item {
- border: 1px solid #a172ab;
- background: #0099cc;
- }
- .huojia-item {
- background: #99ccff;
- }
- .list-item {
- padding: 4px 14px;
- height: 30px;
- background-color: #cec6a4;
- text-align: center;
- line-height: 30px;
- margin-left: 20px;
- margin-bottom: 6px;
- /* margin-top: 6px; */
- border-radius: 10px;
- position: relative;
- .tiaojian {
- // position: absolute;
- // right: 0px;
- // top: 0px;
- // background-color: #f56c6c;
- // border-radius: 10px;
- // color: #fff;
- // display: inline-block;
- // font-size: 12px;
- // height: 18px;
- // line-height: 18px;
- // padding: 0 6px;
- // text-align: center;
- // white-space: nowrap;
- // border: 1px solid #fff;
- font-size: 12px;
- }
- }
- }
- .cangku-mingchen {
- width: 100%;
- text-align: left;
- margin-left: 50px;
- }
- }
- .body-content {
- margin-bottom: 70px;
- display: flex;
- box-sizing: border-box;
- height: calc(100vh - 240px);
- overflow-x: hidden;
- overflow-y: scroll;
- .black {
- position: fixed;
- top: 300px;
- right: 100px;
- width: 100px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- background-color: #e6a23c;
- z-index: 99;
- }
- .left-table {
- // width: 40%;
- ::v-deep .el-table {
- width: 40%;
- }
- }
- .right-view {
- z-index: 99;
- width: 100%;
- .goods-items {
- width: 100%;
- overflow-x: hidden;
- border: solid 2px rgb(202, 236, 247);
- display: flex;
- flex-direction: column-reverse;
- .show-demo {
- width: 100%;
- border-bottom: 1px solid bisque;
- margin: 0 auto;
- text-align: center;
- // overflow-y: scroll;
- .goods-level {
- display: flex;
- position: relative;
- margin-bottom: 6px;
- }
- .level-dsc {
- margin-top: 12px;
- position: absolute;
- bottom: 0;
- left: 10px;
- }
- .goods-list {
- display: flex;
- // justify-content: flex-start;
- flex-wrap: wrap-reverse;
- align-content: flex-start;
- margin-left: 50px;
- margin-right: 15px;
- .goods-dsc {
- cursor: pointer;
- // width: 170px;
- // height: 80px;
- padding: 6px 12px;
- border-radius: 5px;
- background: #e6a23c;
- margin-left: 12px;
- margin-top: 6px;
- // background-color: aliceblue;
- box-sizing: border-box;
- .top-dsc {
- display: flex;
- justify-content: space-between;
- font-size: 12px;
- height: 18px;
- line-height: 18px;
- .position > p {
- text-align: left;
- // color: #fbe8ff;
- }
- .right-content > p {
- margin-left: 15px;
- // color: #fbe8ff;
- text-align: left;
- }
- // .condition {
- // // color: #fbe8ff;
- // }
- }
- .bottom-dsc {
- width: 100%;
- font-size: 18px;
- height: 42px;
- line-height: 60px;
- margin-top: 20px;
- // color: #fbe8ff;
- }
- .goods-demo {
- display: block;
- width: 70px;
- height: 90px;
- border: 1px solid rgb(10, 9, 8);
- text-align: center;
- margin: 0;
- }
- .goods-code {
- text-align: center;
- width: 100%;
- height: 20px;
- line-height: 20px;
- }
- }
- }
- .goodshelf-name {
- margin-bottom: 49px;
- }
- .shelf {
- width: 100%;
- height: 40px;
- line-height: 40px;
- text-align: center;
- }
- }
- }
- }
- }
- .body-content::-webkit-scrollbar {
- display: none; /*隐藏滚动条*/
- }
- }
- </style>
|