diff --git a/src/api/yxStoreCustomer.js b/src/api/yxStoreCustomer.js new file mode 100644 index 0000000..42241b1 --- /dev/null +++ b/src/api/yxStoreCustomer.js @@ -0,0 +1,46 @@ +import request from '@/utils/request' + +export function add(data) { + return request({ + url: 'api/yxStoreCustomer', + method: 'post', + data + }) +} + +export function del(ids) { + return request({ + url: 'api/yxStoreCustomer/', + method: 'delete', + data: ids + }) +} + +export function edit(data) { + return request({ + url: 'api/yxStoreCustomer', + method: 'put', + data + }) +} + +export function getqrcode() { + return request({ + url: 'api/wxmp/qrcode', + method: 'get' + }) +} +export function getOpenId(key) { + return request({ + url: 'api/wxmp/getOpenId?key=' + key, + method: 'get' + }) +} +export function getwechatCode() { + return request({ + url: 'api/wxmp/wechatCode', + method: 'get' + }) +} + +export default { add, edit, del, getqrcode, getOpenId, getwechatCode } diff --git a/src/utils/index.js b/src/utils/index.js index e2758e4..644fa56 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -419,3 +419,16 @@ export function downloadFile(obj, name, suffix) { link.click() document.body.removeChild(link) } + +export function RandomNumber() { + var min = 5; var max = 36 + var randomStr = '' + var range = (max ? Math.round(Math.random() * (max - min)) + min : min) + var arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'] + + for (var i = 0; i < range; i++) { + var index = Math.round(Math.random() * (arr.length - 1)) + randomStr += arr[index] + } + return randomStr +} diff --git a/src/views/shop/customer/index.vue b/src/views/shop/customer/index.vue new file mode 100644 index 0000000..7c14cc5 --- /dev/null +++ b/src/views/shop/customer/index.vue @@ -0,0 +1,263 @@ + + + + + diff --git a/src/views/wechat/config/index.vue b/src/views/wechat/config/index.vue index 23dcc14..8c45a6b 100644 --- a/src/views/wechat/config/index.vue +++ b/src/views/wechat/config/index.vue @@ -17,7 +17,17 @@ - + + + + @@ -47,6 +57,8 @@ export default { mixins: [initData], data() { return { + wechat_follow_imgArr:[], + imageArr: [], delLoading: false, form: { wechat_name: '', @@ -58,12 +70,12 @@ export default { wechat_encode: '', wechat_encodingaeskey: '', wechat_share_img: '', - imageArr: [], + wechat_follow_img: '', wechat_qrcode: '', wechat_type: '', wechat_share_title: '', wechat_share_synopsis: '', - api: 'http://你的H5端域名/api/wechat/serve', + api: 'http://你的yshop-app端域名/api/wechat/serve', wechat_avatar: '' }, rules: { @@ -71,10 +83,14 @@ export default { } }, watch: { - 'form.imageArr': function(val) { + imageArr: function(val) { if (val) { this.form.wechat_share_img = val.join(',') } + },wechat_follow_imgArr: function(val) { + if (val) { + this.form.wechat_follow_img = val.join(',') + } } }, created() { @@ -88,7 +104,8 @@ export default { } }) - this.form.imageArr = this.form.wechat_share_img.split(',') + this.imageArr = this.form.wechat_share_img.split(',') + this.wechat_follow_imgArr = this.form.wechat_follow_img.split(',') }) }, methods: {