Commit f1a642fa authored by 李苏's avatar 李苏 💬

7/3调整

parent 65520050
<template>
<DefaultDialog :app='app'>
<div slot="form" style="display: flex;height: 70vh;">
<BasePage ref="basePage" :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage" :power='power' class="min_full" :config="config">
<BasePage :changeQueryParams='changeQueryParams' ref="basePage" :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage" :power='power' class="min_full" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
......@@ -125,7 +125,7 @@
[
{
label: '物料信息',
prop: 'wlxxInfo',
prop: 'condition',
span: 6,
type: 'input',
value: ''
......@@ -145,8 +145,8 @@
}
},
{
label: '容器编码',
prop: 'rqCode',
label: "容器",
prop: 'rqInfos',
span: 6,
type: 'input',
value: ''
......@@ -170,6 +170,14 @@
}
},
methods: {
changeQueryParams(queryParams){
let str=queryParams.rqInfos
let trimmedStr = str.replace(/\s/g, ''); // 使用正则表达式去除空格
trimmedStr=trimmedStr.replace(/,/s, ',')
let arr = trimmedStr.split(",");
queryParams.rqInfos=arr
console.log(queryParams.rqInfos)
},
save(){
let list=this.$refs.basePage.$refs.TablePager.selectedList||[]
if(list.length==0){
......
<template>
<BasePage @beforeEdit='beforeEdit' :power='power' @getRow='getRow' class="min_full" style="height: 100%;" :config="config">
<BasePage ref="basePage" @beforeEdit='beforeEdit' :power='power' @getRow='getRow' class="min_full" style="height: 100%;" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
<Akck :type="'add'" v-if="ctx.basePage.showAdd&&showName=='akck'" :app='ctx.basePage' :buttonApp='ctx.basePage' />
......
<template>
<DefaultDialog :app='app'>
<div slot="form" style="display: flex;height: 70vh;">
<BasePage :toolButtonConfig="{
<BasePage :changeQueryParams='changeQueryParams' :toolButtonConfig="{
showExcel:false,
showPrint:false,
showField:true
......@@ -141,7 +141,7 @@
queryParams: [
[{
label: '物料信息',
prop: 'wlinfo',
prop: 'condition',
span: 6,
type: 'input',
value: ''
......@@ -162,8 +162,8 @@
},
{
label: "容器",
prop: 'rqCode',
span: 6,
prop: 'rqInfos',
span: 12,
type: 'input',
value: ''
}
......@@ -178,6 +178,14 @@
}
},
methods: {
changeQueryParams(queryParams){
let str=queryParams.rqInfos
let trimmedStr = str.replace(/\s/g, ''); // 使用正则表达式去除空格
trimmedStr=trimmedStr.replace(/,/s, ',')
let arr = trimmedStr.split(",");
queryParams.rqInfos=arr
console.log(queryParams.rqInfos)
},
save(){
let list=this.$refs.basePage.$refs.TablePager.selectedList||[]
if(list.length==0){
......
<template>
<DefaultDialog :app='app'>
<div slot="form" style="display: flex;height: 70vh;">
<BasePage :toolButtonConfig="{
<BasePage :changeQueryParams='changeQueryParams' :toolButtonConfig="{
showExcel:false,
showPrint:false,
showField:true
......@@ -128,18 +128,26 @@
queryParams: [
[{
label: '物料信息',
prop: 'wlinfo',
prop: 'condition',
span: 6,
type: 'input',
value: ''
},
{
label: "容器",
prop: 'rqInfos',
span: 18,
type: 'input',
value: ''
},
{
"label": "仓库",
"prop": "ckid",
"span": 6,
"type": null,
"value": this.app.form.ckid,
}
},
]
],
......@@ -152,6 +160,14 @@
}
},
methods: {
changeQueryParams(queryParams){
let str=queryParams.rqInfos
let trimmedStr = str.replace(/\s/g, ''); // 使用正则表达式去除空格
trimmedStr=trimmedStr.replace(/,/s, ',')
let arr = trimmedStr.split(",");
queryParams.rqInfos=arr
console.log(queryParams.rqInfos)
},
save(){
let list=this.$refs.basePage.$refs.TablePager.selectedList||[]
if(list.length==0){
......
......@@ -2,12 +2,14 @@
<BasePage ref="basePage" @getRow='getRow' :power='power' class="min_full" style="height: 100%;" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
<Xzgw ref="xzgw" @saveGw='saveGw' :app='ctx.basePage' v-if="ctx.basePage.showDialog" />
<Xzgw ref="xzgw" :app='ctx.basePage' v-if="ctx.basePage.showDialog&&ctx.basePage.DialogTitle.includes('回库')" />
<Xzck ref="xzck" :app='ctx.basePage' v-if="ctx.basePage.showDialog&&ctx.basePage.DialogTitle=='调整仓库'" />
</template>
<template #toolbar="ctx">
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<el-button @click="hk(ctx.basePage)" size='mini' type="primary">回库</el-button>
<el-button @click="tzck(ctx.basePage)" size='mini' type="primary">调整仓库</el-button>
<!-- <el-button @click="close(ctx.basePage)" size='mini' type="primary">关闭</el-button> -->
</template>
......@@ -17,6 +19,7 @@
<script>
import Edit from './edit.vue'
import Xzgw from './xzgw.vue'
import Xzck from './xzck.vue'
export default {
data() {
......@@ -214,6 +217,16 @@
getRow(val) {
this.$emit('getRow', val)
},
tzck(ctx){
if (ctx.singleItem && ctx.singleItem.id) {
ctx.DialogTitle = `调整仓库`
ctx.DialogWidth = '30vw'
ctx.showDialog = true
} else {
this.warning('请选中一条数据')
}
},
hk(ctx) {
let map={
'D':'平库',
......@@ -256,7 +269,8 @@
},
components: {
Edit,
Xzgw
Xzgw,
Xzck
}
}
......
<template>
<DefaultDialog v-loading='isLoading' :element-loading-text="text" :app='app'>
<div slot="form" style="">
<el-form slot="form" ref="form" :model="form" label-width="100px" :rules="rules">
<el-row :gutter="20" :app="this" class="editRow">
<EditColItem :required="item.required||false" :readonly="item.readonly?true:false "
v-for="(item,index) in editColItemList " :value="item.value" :span="item.span" :label="item.label"
v-if="(item.show==false)?false:true" :prop='item.prop' :key="item.prop" :type="item.type"
:typeConfig='item.typeConfig' :rule="item.rule" />
<!-- 额外数据 -->
</el-row>
</el-form>
</div>
<div slot="reFooter" class="refooter">
<span slot="footer" class="dialog-footer">
<el-button @click="app.showDialog=false">取 消</el-button>
<el-button type="primary" @click="save()">确 定</el-button>
</span>
</div>
</DefaultDialog>
</template>
<script>
import {
editMixin,
editMixin_expand
} from 'common'
export default {
mixins: [editMixin, editMixin_expand],
props: {
app: {
type: Object,
default: () => {
return {}
}
}
},
async mounted() {
/* 初始化数据 */
},
watch:{
},
data() {
return {
apitype: null,
isLoading: false,
text: '加载中',
readonly: false,
editColItemList: [
{
"label": "仓库",
"prop": "ckid",
"span": 24,
"type": "RelSelect",
"value": "",
"required": true,
"typeConfig": {
"src": "lxyl/common/queryHkck",
"match": {
"value": "id",
"label": "name"
}
}
},
]
}
},
methods: {
save() {
this.$refs['form'].validate((valid) => {
if (valid) {
this.$post('lxyl/rkgl/sjrw/ckhk/tzck', {
id: this.app.singleItem.id,
ckid: this.form.ckid,
}).then(res => {
if (res.success) {
this.$post('操作成功')
this.app.showDialog = false
this.app.refresh()
}
})
}
})
}
}
}
</script>
<style scoped>
</style>
......@@ -5,7 +5,7 @@
showExcel:false,
showPrint:false,
showField:true
}" ref="basePage" :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage" :power='power' class="min_full" :config="config">
}" ref="basePage" :changeQueryParams='changeQueryParams' :power='power' class="min_full" style="height: 100%;" :config="config"> ref="basePage" :power='power' class="min_full" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
......@@ -128,7 +128,7 @@
queryParams: [
[{
label: '物料信息',
prop: 'wlinfo',
prop: 'condition',
span: 6,
type: 'input',
value: ''
......@@ -146,7 +146,14 @@
"label": "name"
}
}
}
},
{
label: "容器",
prop: 'rqInfos',
span: 18,
type: 'input',
value: ''
},
]
],
......@@ -159,6 +166,14 @@
}
},
methods: {
changeQueryParams(queryParams){
let str=queryParams.rqInfos
let trimmedStr = str.replace(/\s/g, ''); // 使用正则表达式去除空格
trimmedStr=trimmedStr.replace(/,/s, ',')
let arr = trimmedStr.split(",");
queryParams.rqInfos=arr
console.log(queryParams.rqInfos)
},
save(){
let list=this.$refs.basePage.$refs.TablePager.selectedList||[]
if(list.length==0){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment