<!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="../../static/kj/element-ui/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 .el-form .c-label {
				width: 7em !important;
			}

			.c-panel .el-form .el-input,
			.c-panel .el-form .el-textarea__inner {
				width: 250px;
			}
		</style>
	</head>
	<body>
		<div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
			<!-- ------- 内容部分 ------- -->
			<div class="s-body">
				<div class="c-panel">
					<div class="c-title" v-if="id == 0">数据添加</div>
					<div class="c-title" v-else>数据修改</div>
					<el-form v-if="m">
						<el-row>
							<sa-item type="text" name="名称" v-model="m.name" placeholder="请输入名称" br></sa-item>
							<sa-item type="text" name="联系人" v-model="m.dutyPeople" placeholder="请输入联系人" br></sa-item>
							<sa-item type="text" name="联系电话" v-model="m.phone" placeholder="请输入联系号码" br></sa-item>
							<div class="c-item">
								<label class="c-label">公众号通知:</label>
								<el-select v-model="businessType" multiple :disabled="currentCustomerId!=='1'">
									<el-option label="其他业务" value="1"></el-option>
									<el-option label="整车业务" value="2"></el-option>
								</el-select>
							</div>
							<div class="c-item">
								<label class="c-label">类型:</label>
								<el-select v-model="type" multiple :disabled="currentCustomerId!=='1'">
									<el-option label="消杀公司" value="1"></el-option>
									<el-option label="装卸公司" value="2"></el-option>
									<el-option label="核酸检测单位" value="3"></el-option>
								</el-select>
							</div>
							<sa-item type="img" name="营业执照" v-model="m.businessLicence" br></sa-item>
						</el-row>
					</el-form>
				</div>
			</div>
			<!-- ------- 底部按钮 ------- -->
			<div class="s-foot">
				<el-button v-if="sa.isAuth('tb-partner-add')" type="primary" @click="ok()">确定</el-button>
				<el-button @click="sa.closeCurrIframe()">取消</el-button>
			</div>
		</div>
		<script>
			var app = new Vue({
				components: {
					"sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
				},
				el: '.vue-box',
				data: {
					id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改) 
					m: null, // 实体对象 
					options: [],
					currentCustomerId: '1',
					type: [],
					businessType: [],
				},
				methods: {
					getCurrendCustomer() {
						sa.ajax('/TbCostomer/getCurrentCustomerId', function(resp) {
							this.currentCustomerId = resp.data;
						}.bind(this));
					},
					// 创建一个 默认Model 
					createModel: function() {
						return {
							name: '', // 名称 
							phone: '', // 联系号码 
							dutyPeople: '', // 负责人 
							addressIds: '', // 地址id 
							addressStr: '', // 地址 
							businessLicence: '', // 营业执照 
							address_arry: [],
							payType: 1,
							type: 1,
							status: '1', // 状态(0=否,1=是) 
							judgeStatus: '2', // 审核状态(1=未审核,2审核通过,3审核不通过) 
						}
					},
					// 提交数据 
					ok: function() {
						console.log(this.businessType);
						// 表单校验 
						let m = this.m;
						sa.checkNull(m.name, '请输入 [名称]');
						if (!sa.isPhone(m.phone)) {
							sa.error('联系号码不正确')
							return;
						}
						sa.checkNull(m.dutyPeople, '请输入 [联系人]');
						m.type = this.type.join(",")
						m.businessType = this.businessType.join(",");
						sa.checkNull(m.type, '请输入 [类型]');
						sa.checkNull(m.businessType, '请输入 [业务类型]');
						if (this.id <= 0) { // 添加
							sa.ajax('/TbCostomer/add', m, function(res) {
								sa.alert('增加成功', this.clean);
							}.bind(this));
						} else { // 修改
							sa.ajax('/TbCostomer/update/partner', m, function(res) {
								sa.alert('修改成功', this.clean);
							}.bind(this));
						}
					},
					// 添加/修改 完成后的动作
					clean: function() {
						if (this.id == 0) {
							this.m = this.createModel();
						} else {
							parent.app.f5(); // 刷新父页面列表
							sa.closeCurrIframe(); // 关闭本页 
						}
					}
				},
				mounted: function() {
					this.getCurrendCustomer()
					// 初始化数据 
					if (this.id <= 0) {
						this.m = this.createModel();
					} else {
						sa.ajax('/TbCostomer/getById?id=' + this.id, function(res) {
							this.m = res.data;
							this.type = this.m.type.split(',')
							this.businessType = this.m.businessType.split(',')
							if (res.data == null) {
								sa.alert('未能查找到 id=' + this.id + " 详细数据");
							}
						}.bind(this))
					}
				}
			})
		</script>
	</body>
</html>