MicroCommunityWeb/public/components/property/addSmallWeChat/addSmallWeChat.js
2020-06-30 16:03:54 +08:00

170 lines
6.0 KiB
JavaScript

(function (vc) {
vc.extends({
propTypes: {
callBackListener: vc.propTypes.string, //父组件名称
callBackFunction: vc.propTypes.string //父组件监听方法
},
data: {
addSmallWeChatInfo: {
weChatId: '',
name: '',
appId: '',
appSecret: '',
payPassword: '',
objType:'1000',
objId:'',
mchId:'',
remarks:'',
objTypes:'',
types:'',
weChatType:''
}
},
_initMethod: function () {
vc.getDict('small_wechat',"obj_type",function(_data){
vc.component.addSmallWeChatInfo.objTypes = _data;
});
vc.getDict('small_wechat',"wechat_type",function(_data){
vc.component.addSmallWeChatInfo.types = _data;
});
},
_initEvent: function () {
vc.on('addSmallWeChat', 'openAddSmallWeChatModal', function (type) {
console.log(type);
vc.component.addSmallWeChatInfo.weChatType = type;
$('#addSmallWeChatModel').modal('show');
});
},
methods: {
addSmallWeChatValidate() {
return vc.validate.validate({
addSmallWeChatInfo: vc.component.addSmallWeChatInfo
}, {
'addSmallWeChatInfo.name': [
{
limit: "required",
param: "",
errInfo: "名称不能为空"
},
{
limit: "max",
param: "1,100",
errInfo: "名称不能超过100位"
},
],
'addSmallWeChatInfo.appId': [
{
limit: "required",
param: "",
errInfo: "appId不能为空"
},
{
limit: "maxin",
param: "1,100",
errInfo: "appId不能超过100位"
},
],
'addSmallWeChatInfo.appSecret': [
{
limit: "required",
param: "",
errInfo: "应用密钥不能为空"
},
{
limit: "maxin",
param: "1,200",
errInfo: "应用密钥不能超过200个字符"
},
],
'addSmallWeChatInfo.payPassword': [
{
limit: "required",
param: "",
errInfo: "支付密码不能为空"
},
{
limit: "maxin",
param: "1,200",
errInfo: "支付密码不能超过200个字符"
},
],
'addSmallWeChatInfo.mchId': [
{
limit: "required",
param: "",
errInfo: "小程序商户id不能为空"
}
],
});
},
saveSmallWeChatInfo: function () {
if (!vc.component.addSmallWeChatValidate()) {
vc.toast(vc.validate.errInfo);
return;
}
//不提交数据将数据 回调给侦听处理
if (vc.notNull($props.callBackListener)) {
vc.emit($props.callBackListener, $props.callBackFunction, vc.component.addSmallWeChatInfo);
$('#addSmallWeChatModel').modal('hide');
return;
}
vc.component.addSmallWeChatInfo.objId = vc.getCurrentCommunity().communityId;
vc.http.apiPost(
'smallWeChat.saveSmallWeChat',
JSON.stringify(vc.component.addSmallWeChatInfo),
{
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json)
if (_json.code == '0') {
//关闭model
$('#addSmallWeChatModel').modal('hide');
vc.component.clearAddSmallWeChatInfo();
vc.emit('smallWeChatManage', 'listSmallWeChat', {});
return;
}
vc.message(_json.msg);
},
function (errInfo, error) {
console.log('请求失败处理');
vc.message(errInfo);
});
},
clearAddSmallWeChatInfo: function () {
vc.component.addSmallWeChatInfo = {
weChatId: '',
name: '',
appId: '',
appSecret: '',
payPassword: '',
objType:'',
objId:'',
mchId:'',
weChatType:'',
types:vc.component.addSmallWeChatInfo.types,
remarks:'',
objTypes:vc.component.addSmallWeChatInfo.objTypes,
};
},
getObjType:function () {
}
}
});
})(window.vc);