Commit 046a4e80 authored by 李苏's avatar 李苏 💬

销售交货单

parent b6b9ef9b
......@@ -356,6 +356,20 @@ export const powerRoutes = [
},
name: 'gysxx',
path: "gysxx",
},
{
erpComponent: false,
component: 'ccgl/jcsj/xsjhd/index',
hidden: false,
meta: {
"title": "销售交货单",
"icon": "",
"noCache": false,
"link": null,
"mkid": '920040500',
},
name: 'xsjhd',
path: "xsjhd",
}
],
},
......
......@@ -115,23 +115,23 @@
}
},
{
"label": "销售员",
"prop": "xsyid",
"span": 12,
"type": "AuxInput",
"value": "",
"required": true,
"typeConfig": {
"isRequest": false,
"code": "SALESPERSON",
"label": "username",
"transform": {
"value": "userid",
"label": "username"
}
}
},
// {
// "label": "销售员",
// "prop": "xsyid",
// "span": 12,
// "type": "AuxInput",
// "value": "",
// "required": true,
// "typeConfig": {
// "isRequest": false,
// "code": "SALESPERSON",
// "label": "username",
// "transform": {
// "value": "userid",
// "label": "username"
// }
// }
// },
{
label: '客户分类',
prop: 'khflid',
......@@ -167,4 +167,4 @@
}
}
}
</script>
\ No newline at end of file
</script>
<template>
<DefaultDialog :app='app'>
<div slot="form" style="display: flex;height: 70vh;">
DialogTitle:'新增',
showDialog:false,
</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>
export default {
props: {
app: {
type: Object,
default: ()=>{
return {}
}
}
},
async mounted() {
},
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped>
</style>
<template>
<RelDialog width="50%" :type='type' :editApp='editApp' :app='app' :buttonApp='buttonApp'>
<el-form slot="form" ref="form" :model="form" label-width="100px" :rules="rules">
<el-row :gutter="20" :app="this">
<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"
:prop='item.prop' :key="item.prop" :type="item.type" :typeConfig='item.typeConfig' :rule="item.rule" />
</el-row>
</el-form>
</RelDialog>
</template>
<script>
import {
editMixin
} from 'common'
export default {
mixins: [editMixin],
data() {
return {
editColItemList: [
{
"label": "仓库",
"prop": "ckid",
"span": 8,
"type": "RelSelect",
"value": "",
"typeConfig": {
"src": "jcsj/common/ck/queryCkid",
"match": {
"value": "id",
"label": "name"
}
}
},
{
label: '备注',
prop: 'bz',
span: 16,
type: 'input'
},
]
}
}
}
</script>
This diff is collapsed.
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