|
|
@ -4,7 +4,6 @@ |
|
|
|
<div class="tab-header webtop"> |
|
|
|
<div>{{ viewTitle }}</div> |
|
|
|
<div> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="selectCustomer()">选择客户</el-button> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="saveOrUpdate()">保存</el-button> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="toService()">转维修单</el-button> |
|
|
|
<el-button type="danger" size="small" :disabled="submitdisabled" @click="toCancellation()">作废</el-button> |
|
|
@ -69,7 +68,14 @@ |
|
|
|
<el-row> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty">客户</div> |
|
|
|
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<div style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> |
|
|
|
<div> |
|
|
|
<span class="addinputInfo">{{ formobj.customerName }}</span> |
|
|
|
</div> |
|
|
|
<el-button type="primary" size="mini" @click="selectCustomer()">选择</el-button> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="span-sty">联系电话</div> |
|
|
@ -103,7 +109,6 @@ |
|
|
|
<el-table-column prop="price" label="销售价" align="center" /> |
|
|
|
</el-table> |
|
|
|
<pagination v-show="serviceData.length > 0" :total="serviceQuery.total" :page.sync="serviceQuery.current" :limit.sync="serviceQuery.size" class="pagination" @pagination="serviceInput(scope.row.serviceItem)"/> |
|
|
|
<!-- <el-pagination :page.sync="serviceQuery.current" :page-size="serviceQuery.size" layout="total, pager" :total="serviceQuery.total" @current-change="serviceInput"/>--> |
|
|
|
</div> |
|
|
|
<el-input slot="reference" v-model="scope.row.serviceItem" @input="serviceInput(scope.row.serviceItem)" clearable placeholder="项目名称、拼音"/> |
|
|
|
</el-popover> |
|
|
|