| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | <!DOCTYPE html><html>	<head>		<title>商家-详情</title>		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">		<meta name="viewport"			content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />		<!-- 所有的 css js 资源 -->		<link rel="stylesheet" href="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">		<link rel="stylesheet" href="../../static/sa.css">		<script src="../../static/kj/vue.min.js"></script>		<script src="../../static/kj/element-ui/index.js"></script>		<script src="../../static/kj/httpVueLoader.js"></script>		<script src="../../static/kj/jquery.min.js"></script>		<script src="../../static/kj/layer/layer.js"></script>		<script src="../../static/sa.js"></script>		<script src="../../static/kj/upload-util.js"></script>		<style type="text/css">			.c-panel .c-label {				width: 8em;			}			.c-item .image-box-2 {				height: 90px;			}		</style>	</head>	<body>		<div class="vue-box sbot" style="display: none;" :style="'display: block;'">			<!-- ------- 内容部分 ------- -->			<div class="s-body">				<div class="c-panel">					<el-form v-if="m">						<el-row>							<el-col span="12">								<sa-info name="商户名称" br>{{m.name}}</sa-info>								<sa-info name="法人" br>{{m.legalPerson}}</sa-info>								<sa-info name="身份证号" br>{{m.idCard}}</sa-info>								<sa-info name="手机号码" br>{{m.contact}}</sa-info>								<sa-info name="地区" br>{{m.address}}</sa-info>							</el-col>							<el-col span="12">								<sa-info name="银行名称" br>{{m.bankName}}</sa-info>								<sa-info name="银行账号" br>{{m.bankAccount}}</sa-info>								<sa-info name="税号" br>{{m.dutyParagraph}}</sa-info>								<sa-info name="详细地址" br>{{m.detail}}</sa-info>								<sa-info type="img-list" name="营业执照" :value="m.businessLicense" br></sa-info>							</el-col>						</el-row>					</el-form>				</div>			</div>			<!-- ------- 底部按钮 ------- -->			<div class="s-foot">				<el-button type="success" @click="sa.closeCurrIframe()">确定</el-button>				<el-button @click="sa.closeCurrIframe()">取消</el-button>			</div>		</div>		<script>			var app = new Vue({				components: {					"sa-info": httpVueLoader('../../sa-frame/com/sa-info.vue')				},				el: '.vue-box',				data: {					id: sa.p('id', 0), // 获取数据ID					m: null				},				methods: {},				mounted: function() {					sa.ajax('/level-one-server/TbEnterprise/getById?id=' + this.id, function(res) {						this.m = res.data;						if (res.data == null) {							sa.alert('未能查找到 id=' + this.id + " 详细数据");						}					}.bind(this))				}			})		</script>	</body></html>
 |