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

新增收货地址

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