This commit is contained in:
linfso 2024-01-11 15:37:01 +08:00
parent 6898c3e782
commit 016c037856

View File

@ -146,23 +146,22 @@
<el-table v-loading="loading" :data="emisDestinationList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" align="center" min-width="60">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)"> </span>
</template>
</el-table-column>
<!-- <el-table-column label="目的地编码" align="center" prop="destCode" min-width="100" /> -->
<!-- <el-table-column label="目的地名称" align="center" prop="destName" min-width="100" /> -->
<el-table-column label="目的地" align="left" prop="destName" min-width="180">
<template slot-scope="scope">
<div class="link-type" @click="handleView(scope.row)">{{scope.row.destName}}({{scope.row.destCode}})</div>
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.destName}}({{scope.row.destCode}})</div>
</template>
</el-table-column>
<!-- <el-table-column label="英文名称" align="center" prop="destNameEn" min-width="100" /> -->
<el-table-column label="所属国家" align="center" prop="country" min-width="100" />
<el-table-column label="服务网点编号" align="center" prop="siteCode" min-width="100" />
<el-table-column label="服务网点名称" align="center" prop="siteName" min-width="100" />
<!-- <el-table-column label="服务网点" align="center" prop="siteCode" min-width="100" /> -->
<el-table-column label="服务网点" align="left" prop="siteCode" min-width="180">
<template slot-scope="scope">
<div class="link-type" @click="handleView(scope.row)">{{scope.row.siteName}}({{scope.row.siteCode}})</div>
</template>
</el-table-column>
<!-- <el-table-column label="服务网点名称" align="center" prop="siteName" min-width="100" /> -->
<el-table-column label="省市区" align="left" prop="province" min-width="180">
<template slot-scope="scope">
<div>{{scope.row.province}}/{{scope.row.city}}/{{scope.row.county}}/{{scope.row.town}}</div>
@ -287,10 +286,10 @@
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="是否偏远区" prop="status">
<el-radio-group v-model="form.status">
<el-form-item label="是否偏远区" prop="isHinterland">
<el-radio-group v-model="form.isHinterland">
<el-radio
v-for="dict in dict.type.sys_normal_disable"
v-for="dict in dict.type.emis_is_hinterland"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
@ -343,7 +342,7 @@ export default {
name: "emisDestination",
components: { elDateSimplePicker,emisDestinationView,emisDestinationForm },
dicts: [
'sys_normal_disable',
'sys_normal_disable','emis_is_hinterland'
],
data() {
return {