feat: 页面修改

20240912_adapter_z
chenhc 8 months ago
parent e2de060da8
commit d8b9851d91

@ -340,7 +340,7 @@ export default {
methods: {
linkPage(_this,row) {
let url = window.location.origin + `#/dept/use/prescribeDir/prescribe/tagCode` + `?billNo=` + row.billNo
let url = window.location.origin + `#/tagCodeBlank` + `?billNo=` + row.billNo
window.open(url, '_blank');
},
//------------

@ -321,6 +321,9 @@ export default {
workPlaceCodeChange(value){
this.curWorkPlaces.forEach(item => {if(item.workplaceId == value){ this.formDataVisible = item
} })
if (this.formDataVisible.operationType == 1){
this.findFromInvList("");
}
return
},
handleClick(blankName) {
@ -565,7 +568,7 @@ export default {
}
this.findCurWorkPlaces();
this.findFromInvList("");
}

@ -321,6 +321,9 @@ export default {
workPlaceCodeChange(value){
this.curWorkPlaces.forEach(item => {if(item.workplaceId == value){ this.formDataVisible = item
} })
if (this.formDataVisible.operationType == 1){
this.findFromInvList("");
}
return
},
handleClick(blankName) {
@ -565,7 +568,7 @@ export default {
}
this.findCurWorkPlaces();
this.findFromInvList("");
}

@ -312,7 +312,7 @@ export default {
methods: {
linkPage(_this,row) {
let url = window.location.origin + `#/dept/use/prescribeDir/prescribe/tagCode` + `?billNo=` + row.billNo
let url = window.location.origin + `#/tagCodeBlank` + `?billNo=` + row.billNo
window.open(url, '_blank');
},
//------------

@ -0,0 +1,121 @@
<template>
<div>
<div style=" display: flex;justify-content: center;">
<h2 style="color: #0aa6e0">欢迎使用现场作业工作台</h2>
</div>
<el-divider/>
<!-- 分割线 -->
<el-row :gutter="8">
<el-col v-for="(info, index) in stationList" :key="index" :xs="12" :sm="8" :md="8" :lg="6">
<el-card :body-style="{margin:'20px'}"
style="margin:20px 20px 20px 20px;height: 200px;background-color: #e1f3fb;border-radius: 12px; position: relative;"
>
<template #header>
<el-form class="query-form" size="mini" style="height: 200px;" >
<el-form-item class="query-form-item" label-width="28%" label="工位名称:">
<el-input
v-model="info.workplaceName"
placeholder=""
clearable
class="custom-disabled-input"
disabled
style="width: 80%;"
>
</el-input>
</el-form-item>
<el-form-item class="query-form-item" label-width="28%" label="工位用户:">
<el-input
v-model="info.employeeName"
placeholder=""
clearable
style="width: 80%;"
class="custom-disabled-input"
disabled
>
</el-input>
</el-form-item>
<el-form-item class="query-form-item" label-width="28%" label="工位描述:">
<el-input
v-model="info.remake"
placeholder=""
clearable
style="width: 80%;"
class="custom-disabled-input"
disabled
>
</el-input>
</el-form-item>
<el-form-item label-width="28%" >
<el-button-group style=" float: right;">
<el-button type="primary" @click="handleClick(index)" style="margin-left: 10px ;"
icon="el-icon-thumb"
>处理单据
</el-button>
</el-button-group>
</el-form-item>
</el-form>
</template>
</el-card>
</el-col>
</el-row>
</div>
</template>
<script>
import {listPage} from "@/api/basic/sysWorkplaceManage.js";
export default {
name: 'fieldOperation',
data() {
return {
//
stationList: []
};
},
created() {
//list
this.getStationList()
},
methods: {
handleClick(index) {
let url = window.location.origin + `#/tagCodeBlank?workplaceId=` + this.stationList[index].workplaceId
// this.$router.push( workplaceId)
window.open(url, '_blank');
},
getStationList() {
let param = {
status: 1,
invCode: this.$store.getters.locInvCode,
page: 1,
limit: 200
}
listPage(param).then(res => {
this.stationList = res.data?.list || []
})
},
}
}
</script>
<style >
.custom-disabled-input input.el-input__inner:disabled {
color: #000000; /* 修改为需要的颜色 */
}
/* 添加样式来定位左上角的删除按钮 */
.close-button {
position: absolute;
top: 10px; /* 你可以根据需要调整这个值 */
right: 10px; /* 你可以根据需要调整这个值 */
z-index: 1; /* 确保按钮在卡片内容之上 */
}
</style>

@ -5,18 +5,18 @@
<el-divider/>
</div>
<!-- 分割线 -->
<div class="m0 grid-container grid-container1" style="height: 100%; display: flex; flex-wrap: wrap;">
<el-card
@click.native="handleClick(index)"
v-for="(card, index) in stationList"
:key="index"
class="grid-itemCard"
:body-style="{ padding: '0px', height: '100px', width: '100px', display: 'flex', justifyContent: 'center', alignItems: 'center' }"
>
{{ card.workplaceName }}
</el-card>
<!-- <div class="m0 grid-container grid-container1" style="height: 100%; display: flex; flex-wrap: wrap;">-->
<!-- <el-card-->
<!-- @click.native="handleClick(index)"-->
<!-- v-for="(card, index) in stationList"-->
<!-- :key="index"-->
<!-- class="grid-itemCard"-->
<!-- :body-style="{ padding: '0px', height: '100px', width: '100px', display: 'flex', justifyContent: 'center', alignItems: 'center' }"-->
<!-- >-->
<!-- {{ card.workplaceName }}-->
<!-- </el-card>-->
</div>
<!-- </div>-->
<div class="mt10 grid-container grid-container3" style="height: 15%">
@ -231,7 +231,7 @@ import invSvg from "@/assets/svg/库存预警.svg"
import certSvg from "@/assets/svg/资质预警.svg"
import {getInvRemindMsgList} from "../api/system/invRemindMsg";
import {getUdiInfos} from "../api/basic/udiRelevance";
import {listPage} from "@/api/basic/sysWorkplaceManage.js";
// import {listPage} from "@/api/basic/sysWorkplaceManage.js";
import {getSupCertgetCount, getSupCertRemindMsgList} from "../api/purchase/supCertRedmindMsg";
export default {
@ -263,7 +263,7 @@ export default {
},
created() {
//list
this.getStationList()
// this.getStationList()
this.getProductCount()
this.getInvMsgCount()
this.getCertMsgCount()
@ -271,20 +271,20 @@ export default {
this.getOrderList()
},
methods: {
handleClick(index) {
let url = window.location.origin+`#/tagCodeBlank?workplaceId=`+ this.stationList[index].workplaceId
// this.$router.push( workplaceId)
window.open(url, '_blank');
},
getStationList(){
let param = {
page: 1,
limit: 200
}
listPage(param).then(res => {
this.stationList = res.data?.list || []
})
},
// handleClick(index) {
// let url = window.location.origin+`#/tagCodeBlank?workplaceId=`+ this.stationList[index].workplaceId
// // this.$router.push( workplaceId)
// window.open(url, '_blank');
// },
// getStationList(){
// let param = {
// page: 1,
// limit: 200
// }
// listPage(param).then(res => {
// this.stationList = res.data?.list || []
// })
// },
getProductCount() {
let param = {
page: 1,

Loading…
Cancel
Save