Commit 332d2d43 authored by youjie's avatar youjie

no message

parent 4272f5fa
......@@ -138,11 +138,11 @@
<p>{{scope.row.CreateDate}}</p>
</template>
</el-table-column>
<el-table-column prop="" label="操作">
<el-table-column prop="" label="操作" width="125">
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" content="账户管理" placement="top">
<el-button @click="AccountManage(scope.row)"
class="button" type=""
class="button" type="primary"
icon="el-icon-s-finance" circle>
</el-button>
</el-tooltip>
......@@ -150,14 +150,14 @@
class="button" type="primary"
icon="el-icon-edit" circle>
</el-button>
<el-tooltip class="item" effect="dark" content="详情" placement="top">
<!-- <el-tooltip class="item" effect="dark" content="详情" placement="top">
<el-button @click="Edit(scope.row,1)"
class="button" type="info"
icon="el-icon-view" circle>
</el-button>
</el-tooltip>
</el-tooltip> -->
<el-button @click="Delete(scope.row)"
class="button" type="danger" style="margin-left: 0;margin-top: 5px;"
class="button" type="danger"
icon="el-icon-delete" circle></el-button>
</template>
</el-table-column>
......@@ -169,7 +169,7 @@
</div>
</div>
<el-dialog :title="`${titleName}供应商`" :visible.sync="showVisible" width="750px" @close="resetForm('form')">
<el-form ref="form" :model="form" :rules="rules" label-width="110px" :disabled="titleName=='查看'?true:false">
<el-form ref="form" :model="form" :rules="rules" label-width="110px">
<div class="msgbox">
<el-form-item label="线路" prop="LineId">
<el-select
......@@ -354,6 +354,7 @@
Id: row.Id
}, res => {
if (res.data.resultCode == 1) {
console.log(res.data.data,'-----------')
this.form = res.data.data
this.form.LineId = res.data.data.LineInfo.split(',').map(x=>{ return Number(x) })
} else {
......
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