mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 08:29:59 +08:00
144 lines
5.3 KiB
JavaScript
144 lines
5.3 KiB
JavaScript
(function(vc, vm) {
|
|
|
|
vc.extends({
|
|
data: {
|
|
editSmallWeChatInfo: {
|
|
wechatId: '',
|
|
weChatId:'',
|
|
name: '',
|
|
appId: '',
|
|
appSecret: '',
|
|
payPassword: '1',
|
|
createTime: '',
|
|
objType: '',
|
|
objId: '',
|
|
mchId: '1',
|
|
mchName:'1',
|
|
remarks: '',
|
|
objTypes: '1000',
|
|
certPath: ''
|
|
|
|
}
|
|
},
|
|
_initMethod: function() {
|
|
|
|
},
|
|
_initEvent: function() {
|
|
vc.on('editSmallWeChat', 'openEditSmallWeChatModal', function(_params) {
|
|
$that.refreshEditSmallWeChatInfo();
|
|
vc.getDict('small_wechat', "obj_type", function(_data) {
|
|
$that.editSmallWeChatInfo.objTypes = _data;
|
|
});
|
|
$('#editSmallWeChatModel').modal('show');
|
|
vc.copyObject(_params, $that.editSmallWeChatInfo);
|
|
if ($that.editSmallWeChatInfo.certPath) {
|
|
vc.emit('editSmallWeChat', 'uploadFile', 'notifyVedio', $that.editSmallWeChatInfo.certPath)
|
|
}
|
|
});
|
|
vc.on('editSmallWeChat', 'notifyCert', function(_param) {
|
|
$that.editSmallWeChatInfo.certPath = _param.realFileName;
|
|
})
|
|
},
|
|
methods: {
|
|
editSmallWeChatValidate: function() {
|
|
return vc.validate.validate({
|
|
editSmallWeChatInfo: $that.editSmallWeChatInfo
|
|
}, {
|
|
'editSmallWeChatInfo.name': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "名称不能为空"
|
|
},
|
|
{
|
|
limit: "maxIn",
|
|
param: "1,100",
|
|
errInfo: "名称不能超过100位"
|
|
},
|
|
],
|
|
'editSmallWeChatInfo.appId': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "appId不能为空"
|
|
},
|
|
{
|
|
limit: "maxin",
|
|
param: "1,100",
|
|
errInfo: "appId不能超过100位"
|
|
},
|
|
],
|
|
'editSmallWeChatInfo.appSecret': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "应用密钥不能为空"
|
|
},
|
|
{
|
|
limit: "maxin",
|
|
param: "1,200",
|
|
errInfo: "应用密钥不能超过200个字符"
|
|
},
|
|
],
|
|
|
|
'editSmallWeChatInfo.wechatId': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "编码不能为空"
|
|
}, ],
|
|
'editSmallWeChatInfo.objType': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "配置不能为空"
|
|
}],
|
|
|
|
});
|
|
},
|
|
editSmallWeChat: function() {
|
|
if (!$that.editSmallWeChatValidate()) {
|
|
vc.toast(vc.validate.errInfo);
|
|
return;
|
|
}
|
|
//1000表示改小程序作用于当前小区 否则作用于所有小区
|
|
$that.editSmallWeChatInfo.objId = vc.getCurrentCommunity().communityId;
|
|
vc.http.apiPost(
|
|
'smallWeChat.updateSmallWeChat',
|
|
JSON.stringify($that.editSmallWeChatInfo), {
|
|
emulateJSON: true
|
|
},
|
|
function(json, res) {
|
|
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
|
|
if (res.status == 200) {
|
|
//关闭model
|
|
$('#editSmallWeChatModel').modal('hide');
|
|
vc.emit('smallWeChatManage', 'listSmallWeChat', {});
|
|
return;
|
|
}
|
|
vc.message(json);
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
|
|
vc.message(errInfo);
|
|
});
|
|
},
|
|
refreshEditSmallWeChatInfo: function() {
|
|
$that.editSmallWeChatInfo = {
|
|
wechatId: '',
|
|
weChatId:'',
|
|
name: '',
|
|
appId: '',
|
|
appSecret: '',
|
|
payPassword: '1',
|
|
createTime: '',
|
|
objType: '',
|
|
objId: '',
|
|
mchId: '1',
|
|
mchName:'1',
|
|
remarks: '',
|
|
objTypes: '1000',
|
|
certPath: ''
|
|
}
|
|
vc.emit('editSmallWeChat', 'uploadFile', 'clearVedio', {});
|
|
}
|
|
}
|
|
});
|
|
|
|
})(window.vc, window.$that); |