|
@@ -0,0 +1,49 @@
|
|
|
+<template>
|
|
|
+ <el-dialog
|
|
|
+ :visible.sync="visible"
|
|
|
+ :title="发货方式"
|
|
|
+ append-to-body
|
|
|
+ width="750px"
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ v-if="data"
|
|
|
+ ref="form"
|
|
|
+ :model="data"
|
|
|
+ label-width="100px"
|
|
|
+ >
|
|
|
+ <el-row
|
|
|
+ :gutter="$$Constant.LAYOUT_GAP"
|
|
|
+ >
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="发货方式">
|
|
|
+ <el-input v-model="data.goodsCode" readonly/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="发货单号">
|
|
|
+ <el-input v-model="data.orderNo" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ </el-dialog>
|
|
|
+ </template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import BaseCurdEditor from '@@/utils/BaseCurdEditor'
|
|
|
+import TagDistribute from '@@/entries/TagDistribute'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'DialogTagDistribute',
|
|
|
+ extends: BaseCurdEditor(TagDistribute),
|
|
|
+ props: {
|
|
|
+ // optionGroup: {
|
|
|
+ // required: true,
|
|
|
+ // type: Object
|
|
|
+ // }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss"></style>
|