<!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="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
		<script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
		<script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
		<script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
		<script src="https://www.layuicdn.com/layer-v3.1.1/layer.js"></script>
		<script src="../../static/sa.js"></script>
		<script src="../../static/kj/upload-util.js"></script>
		<script src="https://unpkg.com/wangeditor@4.7.8/dist/wangEditor.min.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;}
			/*  普通文本和富文本一起变长  */
			.c-panel .el-form .el-input, .c-panel .el-form .el-textarea__inner{width: 800px;}
			.c-item-mline{width: 800px;}
			.editor-box{display: inline-block;}
			.c-item .editor-box, .editor-box #editor{width: 800px;}
		</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">

						<sa-item type="text" name="主题" v-model="m.text" br></sa-item>
						<div class="c-item br" >
							<label class="c-label">客户:</label>
							<el-select v-model="m.customerIdList" multiple placeholder="请选择客户" filterable >
								<el-option label='全选'  @click.native='selectAllCustomer'></el-option>
								<el-option v-for="(item,index) in customerList" :key="index" :label="item.name"
										   :value="item.id">
								</el-option>
							</el-select>
						</div>
						<sa-item type="richtext" name="详情内容" v-model="m.content" br></sa-item>
<!--						<sa-item type="enum" name="接收类型" v-model="m.receiverType" :jv="{1: '管理员', 2: '企业用户'}" jtype="3" br></sa-item>-->
<!--						<sa-item type="enum" name="类型" v-model="m.type" :jv="{0:'公告', 1: '业务消息'}" jtype="3" br></sa-item>-->
						<sa-item name="" class="s-ok" br>
							<el-button type="primary" icon="el-icon-plus" @click="ok()">保存</el-button>
						</sa-item>
					</el-form>
				</div>
			</div>
			<!-- ------- 底部按钮 ------- -->
			<div class="s-foot">
				<el-button 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,		// 实体对象
					customerList: [],
				},
				methods: {
					// 创建一个 默认Model 
					createModel: function() {
						return {
							id: '',		// 主键
							businessId: null,	//业务id
							customerId: '',		// 客户id 
							text: '',		// 标题
							content: '',		// 详情内容
							type: 0,		// 类型(1=业务消息)
							// updateTime: '',		// 更新时间
							customerIdList: [],	//商家IdList
						}
					},
					// 提交数据 
					ok: function(){
						// 表单校验 
						let m = this.m;
						sa.checkNull(m.text, '请输入 [主题]');
						let customerIds = m.customerIdList.join(',');
						m.customerIds = customerIds;
						sa.checkNull(m.customerIds, '请选择 [客户]');
				
						// 开始增加或修改
						this.m.updateTime = undefined;		// 不提交属性:更新时间
						if(this.id <= 0) {	// 添加
							sa.ajax('/TbNotices/add', m, function(res){
								sa.alert('增加成功', this.clean); 
							}.bind(this));
						} else {	// 修改
							sa.ajax('/TbNotices/update', 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();	// 关闭本页 
						}
					},
					getCustomerList(){
						sa.ajax('/TbCostomer/getAll', function(res) {
							this.customerList = res.data; // 数据
						}.bind(this));
					},
					selectAllCustomer(){
						let customerIdList = [];
						this.customerList.map((item) => {
							customerIdList.push(item.id);
						})
						this.m.customerIdList = customerIdList;
					},
				},
				mounted: function(){
					// 初始化数据
					this.getCustomerList();
					if(this.id <= 0) {	
						this.m = this.createModel();
					} else {	
						sa.ajax('/TbNotices/getById?id=' + this.id, function(res) {
							let m = res.data;
							console.log(m);
							m.customerIdList = m.customerIds.split(",");
							this.m = m;
							if(res.data == null) {
								sa.alert('未能查找到 id=' + this.id + " 详细数据");
							}
						}.bind(this))
					}
				}
			})
			
		</script>
	</body>
</html>