Commit 0f2ab413 authored by 黄奎's avatar 黄奎

新增收货地址

parent 895b3a1d
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
<th>创建时间</th> <th>创建时间</th>
<th>{{$t('system.table_operation')}}</th> <th>{{$t('system.table_operation')}}</th>
</tr> </tr>
<tr v-for="item in dataList"> <tr v-for="(item,index) in dataList" :key="index">
<td>{{item.AccountName}}</td> <td>{{item.AccountName}}</td>
<td>{{item.LoginAccount}}</td> <td>{{item.LoginAccount}}</td>
<td>{{item.MobilePhone}}</td> <td>{{item.MobilePhone}}</td>
...@@ -86,6 +86,11 @@ ...@@ -86,6 +86,11 @@
</el-button> </el-button>
</el-tooltip> </el-tooltip>
</template> </template>
<el-tooltip class="item" effect="dark" content="收货地址" placement="top">
<el-button type="primary" size="mini" icon="iconfont icon-qidong" @click="GetAddressInfo(item.Id)">
</el-button>
</el-tooltip>
</el-button-group> </el-button-group>
</td> </td>
</tr> </tr>
...@@ -172,8 +177,11 @@ ...@@ -172,8 +177,11 @@
} }
}, null); }, null);
}); });
},
GetAddressInfo(Id)
{
this.$router.push({ name: "GuestAddressList",query:{blank: 'y',Id:Id} })
} }
} }
}; };
</script> </script>
...@@ -4004,6 +4004,14 @@ export default { ...@@ -4004,6 +4004,14 @@ export default {
title: '账户管理' title: '账户管理'
} }
}, },
{
path: '/GuestAddressList',
name: 'GuestAddressList',
component: resolve => require(['@/components/Buying/GuestAddressList'], resolve),
meta: {
title: '收货地址管理'
}
},
{ {
path: '/CommondityOrderList', path: '/CommondityOrderList',
name: 'CommondityOrderList', name: 'CommondityOrderList',
......
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