Compare commits
2 Commits
aca36187fc
...
fb7003b066
Author | SHA1 | Date |
---|---|---|
JIAL | fb7003b066 | |
JIAL | 3542e24e5a |
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:width="width || '900px'"
|
:width="width || '900px'"
|
||||||
height="350px"
|
:height="height || '400px'"
|
||||||
:visible.sync="open"
|
:visible.sync="open"
|
||||||
:show-close="false" append-to-body>
|
:show-close="false" append-to-body>
|
||||||
<div slot="title" style="margin: 0px; padding: 0px">
|
<div slot="title" style="margin: 0px; padding: 0px">
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<div style="padding: 10px">
|
<div style="padding: 10px">
|
||||||
<el-card class="box-card">
|
<el-card class="box-card">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>{{quote.quotCode}}</span>
|
<span @click="handleEdit(quote)">{{quote.quotCode}}</span>
|
||||||
<el-button style="float: right; padding: 3px; " type="text" @click="handleEdit(quote)">编辑</el-button>
|
<el-button style="float: right; padding: 3px; " type="text" @click="handleEdit(quote)">编辑</el-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="text item">
|
<div class="text item">
|
||||||
|
|
|
@ -183,7 +183,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<CustomerSelect :width="100 + '%'" ref="customerSelect" :open="customerOpen" @submit="submitCustomer" @cancel="customerOpen=false"></CustomerSelect>
|
<CustomerSelect :width="100 + '%'" :height="100 + '%'" ref="customerSelect" :open="customerOpen" @submit="submitCustomer" @cancel="customerOpen=false"></CustomerSelect>
|
||||||
<!-- 产品导入对话框 -->
|
<!-- 产品导入对话框 -->
|
||||||
<el-dialog :title="productUpload.title" :visible.sync="productUpload.open" width="400px" append-to-body>
|
<el-dialog :title="productUpload.title" :visible.sync="productUpload.open" width="400px" append-to-body>
|
||||||
<el-upload
|
<el-upload
|
||||||
|
|
Loading…
Reference in New Issue