You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.2 KiB
Vue
97 lines
2.2 KiB
Vue
<template>
|
|
<div>
|
|
<el-form
|
|
:model="editQuery"
|
|
:rules="rules"
|
|
ref="editQuery"
|
|
border
|
|
label-width="130px"
|
|
>
|
|
|
|
<el-row>
|
|
<el-col span="20">
|
|
<el-form-item label="产品最小销售标识:">
|
|
<el-input
|
|
disabled
|
|
style="width: 90%"
|
|
size="small"
|
|
splaceholder="请输入内容"
|
|
v-model="editQuery.nameCode"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col span="20">
|
|
<el-form-item label="物资名称:">
|
|
<el-input
|
|
style="width: 90%"
|
|
size="small"
|
|
disabled
|
|
splaceholder="请输入内容"
|
|
v-model="editQuery.cpmctymc"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-col span="20">
|
|
<el-form-item label="商品条码:">
|
|
<el-input
|
|
style="width: 90%"
|
|
size="small"
|
|
splaceholder="请输入内容"
|
|
v-model="editQuery.sptm"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col span="20">
|
|
<el-form-item label="包装单位:">
|
|
<el-input
|
|
style="width: 90%"
|
|
size="small"
|
|
splaceholder="请输入内容"
|
|
v-model="editQuery.packUnit"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<!-- <el-row>-->
|
|
<!-- <el-form-item label="计量单位:">-->
|
|
<!-- <el-input-->
|
|
<!-- style="width: 80%"-->
|
|
<!-- size="small"-->
|
|
<!-- splaceholder="请输入内容"-->
|
|
<!-- v-model="editQuery.measname"-->
|
|
<!-- ></el-input>-->
|
|
<!-- </el-form-item>-->
|
|
<!-- </el-row>-->
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
name: "productSingleEdit",
|
|
props: {
|
|
editQuery: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|