| | |
| | | <el-table-column |
| | | prop="RowNum" |
| | | width="50" |
| | | fixed |
| | | label="序号" |
| | | /> |
| | | <el-table-column |
| | | prop="code" |
| | | label="单位编码" |
| | | sortable="custom" |
| | | min-width="110" |
| | | /> |
| | | <el-table-column |
| | | prop="name" |
| | | label="单位名称" |
| | | sortable="custom" |
| | | min-width="200px" |
| | | min-width="160px" |
| | | /> |
| | | <el-table-column |
| | | label="单位属性" |
| | | width="150" |
| | | width="240" |
| | | > |
| | | <!-- sortable="custom"--> |
| | | |
| | | <el-table-column |
| | | prop="mtype" |
| | | width="120" |
| | | width="80" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.mtype==='WG'">外购供方</div> |
| | |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="btype" |
| | | width="120" |
| | | width="80" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.btype==='WX'">外协供方</div> |
| | |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="htype" |
| | | width="120" |
| | | width="80" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.htype==='KH'">客户</div> |
| | |
| | | <el-table-column |
| | | prop="conttacts" |
| | | label="联系人" |
| | | width="110" |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="conttphone" |
| | | label="联系方式" |
| | | width="160" |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="addr" |
| | | min-width="160" |
| | | label="补充描述" |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="lm_user" |
| | | label="创建人员" |
| | | width="110" |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="lm_date" |
| | | label="创建时间" |
| | | sortable="custom" |
| | | width="200" |
| | | width="160" |
| | | /> |
| | | <el-table-column |
| | | label="操作" |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div class="operationClass"> |
| | |
| | | import { |
| | | AddUpdateCurrentUnit, CurrentUnitSearch, DeleteCurrentUnit |
| | | } from '@/api/jcsz' |
| | | import { SeaveSearchPartner, SeaveSearchWhareHouseLocation } from '@/api/ErpSyncMes' |
| | | import { SeaveSearchPartner } from '@/api/ErpSyncMes' |
| | | |
| | | const SER_HZ = /^[\u4e00-\u9fa5]+$/ |
| | | export default { |