CommonSystem.vue 1.7 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
<template>
	<CardWrapper title="常用系统" v-on="$listeners" v-bind="$attrs">
		<div class="content">
			<div class="notice-item" v-for="(item, index) in testData" :key="index">
					<i class="el-icon-arrow-right"></i>
					<a :href="item.url" target="_blank" class="notice-title">
						{{ item.title }}
					</a>
				</div>
		</div>
	</CardWrapper>
</template>

<script>
import CardWrapper from "./CardWrapper.vue";

export default {
  name: "CommonSystem",
  components: { CardWrapper },
  data() {
    return {
      testData: [
				{
					title: '人民币跨境收付信息管理系统',
					url: "https://9.0.47.118/rcpmisbank/index"
				},
				{
					title: '国家外汇管理局银行信息门户网站',
					url: "http://banksvc.safe/safe/"
				},
				{
					title: '中国国际贸易单一窗口',
					url: "https://www.singlewindow.cn/"
				},
				{
					title: '人民币跨境收付信息管理前置系统',
					url: "http://urrp-rcp.eca.prod.cebbank:17701/#/user/login?redirect=%2F "
				},
				{
					title: '中志公司官网',
					url: "https://www.zhongzhico.cn/ "
				}
      ]
    };
  },
  mounted() {},
  methods: {}
};
</script>

<style scoped lang="less">
.content {
  padding: 20px 0px 30px;
}

.notice-item {
	height: 44px;
  width: 100%;
  justify-content: space-between;
	margin-bottom: 8px;
	padding:12px 0 12px 8px;
	
}

.notice-item:nth-child(odd) {
  background-color:#F8F8F8;
}

.notice-title {
	display: inline-block;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
	flex: 1;
	font-size: 14px;
	text-decoration: none;
	vertical-align: baseline;
}

.el-icon-arrow-right{
	vertical-align: middle;
	margin-right: 4px
}

.el-icon-arrow-right:after {
		content: "\e6e0";
}
</style>