Commit efc7eab7 authored by youjie's avatar youjie

no message

parent ced5c878
...@@ -78,6 +78,10 @@ ...@@ -78,6 +78,10 @@
prop="CustomerName" prop="CustomerName"
:label="$t('salesModule.storeName')" :label="$t('salesModule.storeName')"
width="150"> width="150">
<template slot-scope="scope">
{{ scope.row.CustomerName }}
<span v-if="scope.row.IsMain == 1" style="color: #E95252">({{$t('Operation.Op_zhu')}})</span>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="PredictPrice" :label="$t('restaurant.res_fy')"> <el-table-column prop="PredictPrice" :label="$t('restaurant.res_fy')">
<template slot-scope="scope"> <template slot-scope="scope">
......
...@@ -24,17 +24,19 @@ ...@@ -24,17 +24,19 @@
<th>{{$t('system.table_operation')}}</th> <th>{{$t('system.table_operation')}}</th>
</tr> </tr>
<tr v-for="(item,index) in dataList" :key="index"> <tr v-for="(item,index) in dataList" :key="index">
<td>{{item.CustomerName}} <span v-if="item.IsMain == 1" style="color: #E95252">({{$t('Operation.Op_zhu')}})</span> </td> <td>{{item.CustomerName}}
<!-- <span v-if="item.IsMain == 1" style="color: #E95252">({{$t('Operation.Op_zhu')}})</span> -->
</td>
<td>{{item.Contact}}</td> <td>{{item.Contact}}</td>
<td>{{item.ContactNumber}}</td> <td>{{item.ContactNumber}}</td>
<td>{{item.IsMember == 1 ? $t('pub.yes') : $t('pub.no')}}</td> <td>{{item.IsMember == 1 ? $t('pub.yes') : $t('pub.no')}}</td>
<td class="_icon_btn"> <td class="_icon_btn">
<el-tooltip class="item" effect="dark" :content="$t('objFill.v101.administrative.shiezhizmd')" placement="top"> <!-- <el-tooltip class="item" effect="dark" :content="$t('objFill.v101.administrative.shiezhizmd')" placement="top">
<i class="iconfont icon-guanli2" @click="clickSetAdmin(item)"></i> <i class="iconfont icon-guanli2" @click="clickSetAdmin(item)"></i>
</el-tooltip>
<!-- <el-tooltip class="item" effect="dark" :content="$t('objFill.v101.administrative.yichumend')" placement="top">
<i class="iconfont icon-img_delete_small icon-guanli2" @click="DelAllianceChild(item)"></i>
</el-tooltip> --> </el-tooltip> -->
<el-tooltip class="item" effect="dark" :content="$t('objFill.v101.administrative.yichumend')" placement="top">
<i class="iconfont icon-img_delete_small icon-guanli2" @click="DelAllianceChild(item)"></i>
</el-tooltip>
</td> </td>
</tr> </tr>
</table> </table>
......
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