diff --git a/sourcecode/alipay/default/pages/plugins/invoice/invoice-detail/invoice-detail.js b/sourcecode/alipay/default/pages/plugins/invoice/invoice-detail/invoice-detail.js index f6632f13c..8f9539b23 100644 --- a/sourcecode/alipay/default/pages/plugins/invoice/invoice-detail/invoice-detail.js +++ b/sourcecode/alipay/default/pages/plugins/invoice/invoice-detail/invoice-detail.js @@ -65,7 +65,6 @@ Page({ { name: "快递名称", value: data.data.express_name || '' }, { name: "快递单号", value: data.data.express_number || '' }, ], - data_list_loding_status: 3, data_bottom_line_status: true, data_list_loding_msg: '', diff --git a/sourcecode/alipay/default/pages/plugins/invoice/user/user.axml b/sourcecode/alipay/default/pages/plugins/invoice/user/user.axml index ab80f21a8..ddf6b61cf 100644 --- a/sourcecode/alipay/default/pages/plugins/invoice/user/user.axml +++ b/sourcecode/alipay/default/pages/plugins/invoice/user/user.axml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ - + {{item}} diff --git a/sourcecode/baidu/default/app.json b/sourcecode/baidu/default/app.json index b15ce9bc5..0b0a37f69 100755 --- a/sourcecode/baidu/default/app.json +++ b/sourcecode/baidu/default/app.json @@ -41,7 +41,12 @@ "pages/plugins/distribution/extraction-apply/extraction-apply", "pages/plugins/distribution/extraction-order/extraction-order", "pages/plugins/distribution/introduce/introduce", - "pages/plugins/exchangerate/currency/currency" + "pages/plugins/exchangerate/currency/currency", + "pages/plugins/invoice/user/user", + "pages/plugins/invoice/invoice/invoice", + "pages/plugins/invoice/invoice-detail/invoice-detail", + "pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo", + "pages/plugins/invoice/order/order" ], "window": { "navigationBarTitleText": "{{application_title}}", diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.css b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.css new file mode 100644 index 000000000..bf22478b7 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.css @@ -0,0 +1,27 @@ +.panel-item .panel-title { + background: #fff; + font-weight: bold; + padding: 15rpx; + border-bottom: 2px solid #eee; + font-size: 34rpx; +} +.panel-item .panel-content .item { + padding: 20rpx 0; +} +.panel-item .panel-content .item:last-child { + border: 0; +} +.panel-item .panel-content .item .title { + width: 25%; + padding-left: 20rpx; +} +.panel-item .panel-content .item .content { + width: calc(75% - 50rpx); + padding-left: 20rpx; + min-height: 46rpx; + word-wrap: break-word; + word-break: normal; +} +.panel-item .panel-content .item view { + line-height: 46rpx; +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.js b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.js new file mode 100644 index 000000000..3061d5bb4 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.js @@ -0,0 +1,127 @@ +const app = getApp(); +Page({ + data: { + params: null, + data_list_loding_status: 1, + data_list_loding_msg: '', + data_bottom_line_status: false, + detail: null, + detail_list: [], + express_data: [] + }, + + onReady() {}, + + onLoad(params) { + //params['id'] = 1; + this.setData({ + params: params + }); + this.init(); + }, + + onShow() {}, + + init() { + var self = this; + swan.showLoading({ + title: "加载中..." + }); + this.setData({ + data_list_loding_status: 1 + }); + swan.request({ + url: app.get_request_url("detail", "user", "invoice"), + method: "POST", + data: { + id: this.data.params.id + }, + dataType: "json", + success: res => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + + if (res.data.code == 0) { + var data = res.data.data; + self.setData({ + detail: data.data, + detail_list: [ + { name: "业务类型", value: data.data.business_type_name || '' }, + { name: "申请类型", value: data.data.apply_type_name || '' }, + { name: "发票类型", value: data.data.invoice_type_name || '' }, + { name: "发票金额", value: data.data.total_price || '' }, + { name: "状态", value: data.data.status_name || '' }, + { name: "发票内容", value: data.data.invoice_content || '' }, + { name: "发票抬头", value: data.data.invoice_title || '' }, + { name: "纳税识别号", value: data.data.invoice_code || '' }, + { name: "企业开户行名称", value: data.data.invoice_bank || '' }, + { name: "企业开户帐号", value: data.data.invoice_account || '' }, + { name: "企业联系电话", value: data.data.invoice_tel || '' }, + { name: "企业注册地址", value: data.data.invoice_address || '' }, + { name: "收件人姓名", value: data.data.name || '' }, + { name: "收件人电话", value: data.data.tel || '' }, + { name: "收件人地址", value: data.data.address || '' }, + { name: "电子邮箱", value: data.data.email || '' }, + { name: "拒绝原因", value: data.data.refuse_reason || '' }, + { name: "用户备注", value: data.data.user_note || '' }, + { name: "创建时间", value: data.data.add_time || '' }, + { name: "更新时间", value: data.data.upd_time || '' }, + ], + express_data: [ + { name: "快递名称", value: data.data.express_name || '' }, + { name: "快递单号", value: data.data.express_number || '' }, + ], + data_list_loding_status: 3, + data_bottom_line_status: true, + data_list_loding_msg: '' + }); + } else { + self.setData({ + data_list_loding_status: 2, + data_bottom_line_status: false, + data_list_loding_msg: res.data.msg + }); + + if (app.is_login_check(res.data, self, 'init')) { + app.showToast(res.data.msg); + } + } + }, + fail: () => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + self.setData({ + data_list_loding_status: 2, + data_bottom_line_status: false, + data_list_loding_msg: '服务器请求出错' + }); + app.showToast("服务器请求出错"); + } + }); + }, + + // 下拉刷新 + onPullDownRefresh() { + this.init(); + }, + + // 电子发票复制 + electronic_invoice_event(e) { + var value = e.currentTarget.dataset.value || null; + + if (value != null) { + swan.setClipboardData({ + data: value, + success(res) { + swan.showToast({ + title: '内容已复制' + }); + app.showToast('复制成功', 'success'); + } + }); + } else { + app.showToast('链接地址有误'); + } + } + +}); \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.json b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.json new file mode 100644 index 000000000..cf4c7359d --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.json @@ -0,0 +1,4 @@ +{ + "enablePullDownRefresh": true, + "navigationBarTitleText": "发票详情" +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.swan b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.swan new file mode 100644 index 000000000..243b250de --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-detail/invoice-detail.swan @@ -0,0 +1,47 @@ + + + 申请信息 + + + {{item.name}} + {{item.value}} + + + + + + + 快递信息 + + + {{item.name}} + {{item.value}} + + + + + + + 电子发票 + + + {{item.title}} + + + 可点击发票名称复制后、到浏览器打开地址下载发票。 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.css b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.css new file mode 100644 index 000000000..3122fa5c2 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.css @@ -0,0 +1,7 @@ +.content-top { + padding: 30rpx 10rpx; +} +.content-top text { + font-size: 38rpx; + font-weight: bold; +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.js b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.js new file mode 100644 index 000000000..bac81cf49 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.js @@ -0,0 +1,318 @@ +const app = getApp(); +Page({ + data: { + params: null, + form_submit_loading: false, + data_list_loding_status: 1, + data_list_loding_msg: '', + data_bottom_line_status: false, + data_base: null, + apply_type_list: [], + can_invoice_type_list: [], + invoice_content_list: [], + save_base_data: null, + data: null, + form_invoice_type_index: 0, + form_apply_type_index: 0, + form_invoice_content_index: 0, + form_apply_type_disabled: false, + company_container: false, + company_special_container: false, + addressee_container: false, + email_container: true + }, + + onReady() {}, + + onLoad(params) { + this.setData({ + params: params + }); + this.init(); + }, + + onShow() {}, + + init() { + var self = this; + swan.showLoading({ + title: "加载中..." + }); + this.setData({ + data_list_loding_status: 1 + }); + swan.request({ + url: app.get_request_url("saveinfo", "user", "invoice"), + method: "POST", + data: this.data.params, + dataType: "json", + success: res => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + + if (res.data.code == 0) { + var data = res.data.data; + self.setData({ + data_base: data.base || null, + apply_type_list: data.apply_type_list || [], + can_invoice_type_list: data.can_invoice_type_list || [], + invoice_content_list: data.invoice_content_list || [], + save_base_data: data.save_base_data, + data: (data.data || null) == null || data.data.length == 0 ? null : data.data, + data_list_loding_status: 0, + data_bottom_line_status: true, + data_list_loding_msg: data.save_base_data.total_price <= 0 ? '发票金额必须大于0' : '' + }); // 数据容器处理 + + this.invoice_container_handle(); + } else { + self.setData({ + data_list_loding_status: 2, + data_bottom_line_status: false, + data_list_loding_msg: res.data.msg + }); + + if (app.is_login_check(res.data, self, 'init')) { + app.showToast(res.data.msg); + } + } + }, + fail: () => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + self.setData({ + data_list_loding_status: 2, + data_bottom_line_status: false, + data_list_loding_msg: '服务器请求出错' + }); + app.showToast("服务器请求出错"); + } + }); + }, + + // 下拉刷新 + onPullDownRefresh() { + this.init(); + }, + + // 发票类型事件 + form_invoice_type_event(e) { + this.setData({ + form_invoice_type_index: e.detail.value + }); + this.invoice_container_handle(); + }, + + // 发票类型事件 + form_apply_type_event(e) { + this.setData({ + form_apply_type_index: e.detail.value + }); + this.invoice_container_handle(); + }, + + // 发票内容事件 + form_invoice_content_event(e) { + this.setData({ + form_invoice_content_index: e.detail.value + }); + }, + + // 容器显隐处理 + invoice_container_handle() { + // 发票类型 + var invoice_type = this.data.can_invoice_type_list[this.data.form_invoice_type_index]['id']; + + if (invoice_type == 2) { + // 选择专票的时候申请类型必须是企业 + this.setData({ + form_apply_type_index: 1, + form_apply_type_disabled: true + }); + } else { + this.setData({ + form_apply_type_disabled: false + }); + } // 申请类型 + + + switch (invoice_type) { + // 增值税普通电子发票 + case 0: + this.setData({ + company_special_container: false, + addressee_container: false, + email_container: true + }); + break; + // 增值税普通纸质发票 + + case 1: + this.setData({ + company_special_container: false, + addressee_container: true, + email_container: false + }); + break; + // 增值税专业纸质发票 + + case 2: + this.setData({ + company_container: true, + company_special_container: true, + addressee_container: true, + email_container: false + }); + break; + } // 增值税专业纸质发票情况下个人类型处理 + + + if (invoice_type != 2) { + var apply_type = this.data.apply_type_list[this.data.form_apply_type_index]['id']; + + if (apply_type == 0) { + this.setData({ + company_container: false + }); + } else { + this.setData({ + company_container: true + }); + } + } + }, + + // 表单提交 + formSubmit(e) { + var data = e.detail.value; + + if ((this.data.data || null) == null) { + data['ids'] = this.data.params.ids || ''; + data['type'] = this.data.params.type || ''; + } else { + data['id'] = this.data.data.id; + } // 数据验证 + + + var validation = [{ + fields: 'invoice_type', + msg: '请选择发票类型', + is_can_zero: 1 + }, { + fields: 'apply_type', + msg: '请选择申请类型', + is_can_zero: 1 + }, { + fields: 'invoice_title', + msg: '请填写发票抬头、最多200个字符' + }]; + + if (app.fields_check(data, validation)) { + var invoice_type = this.data.can_invoice_type_list[this.data.form_invoice_type_index]['id']; + var apply_type = this.data.apply_type_list[this.data.form_apply_type_index]['id']; + + if (apply_type == 1) { + validation.push({ + fields: 'invoice_code', + msg: '请填写企业统一社会信用代码或纳税识别号、最多160个字符' + }); + } + + if (invoice_type == 2) { + validation.push({ + fields: 'invoice_bank', + msg: '请填写企业开户行名称、最多200个字符' + }); + validation.push({ + fields: 'invoice_account', + msg: '请填写企业开户帐号、最多160个字符' + }); + validation.push({ + fields: 'invoice_tel', + msg: '请填写企业联系电话 6~15 个字符' + }); + validation.push({ + fields: 'invoice_address', + msg: '请填写企业注册地址、最多230个字符' + }); + } + + if (invoice_type != 0) { + validation.push({ + fields: 'name', + msg: '请填写收件人姓名格式 2~30 个字符之间' + }); + validation.push({ + fields: 'tel', + msg: '请填写收件人电话 6~15 个字符' + }); + validation.push({ + fields: 'address', + msg: '请填写收件人地址、最多230个字符' + }); + } + + if (app.fields_check(data, validation)) { + // 发票类型 + data['invoice_type'] = this.data.can_invoice_type_list[this.data.form_invoice_type_index]['id']; // 发票内容 + + if (this.data.invoice_content_list.length > 0 && this.data.invoice_content_list[this.data.form_invoice_content_index] != undefined) { + data['invoice_content'] = this.data.invoice_content_list[this.data.form_invoice_content_index]; + } + + swan.showLoading({ + title: '提交中...' + }); + this.setData({ + form_submit_loading: true + }); // 网络请求 + + var self = this; + swan.request({ + url: app.get_request_url("save", "user", "invoice"), + method: 'POST', + data: data, + dataType: 'json', + header: { + 'content-type': 'application/x-www-form-urlencoded' + }, + success: res => { + swan.hideLoading(); + + if (res.data.code == 0) { + app.showToast(res.data.msg, "success"); + setTimeout(function () { + // 是否关闭页面进入我的发票、适合从订单开票中过来提交成功直接进入我的发票列表 + if ((self.data.params || null) != null && (self.data.params.is_redirect || 0) == 1) { + swan.redirectTo({ + url: "/pages/plugins/invoice/invoice/invoice" + }); + } else { + swan.navigateBack(); + } + }, 2000); + } else { + this.setData({ + form_submit_loading: false + }); + + if (app.is_login_check(res.data)) { + app.showToast(res.data.msg); + } else { + app.showToast('提交失败,请重试!'); + } + } + }, + fail: () => { + swan.hideLoading(); + this.setData({ + form_submit_loading: false + }); + app.showToast('服务器请求出错'); + } + }); + } + } + } + +}); \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.json b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.json new file mode 100644 index 000000000..564a19aa3 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.json @@ -0,0 +1,4 @@ +{ + "enablePullDownRefresh": true, + "navigationBarTitleText": "开票" +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.swan b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.swan new file mode 100644 index 000000000..efb1944e7 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo.swan @@ -0,0 +1,104 @@ + +
+ + 发票金额 {{save_base_data.total_price}} 元 + + + + 发票类型必选 + + + {{can_invoice_type_list[form_invoice_type_index] == undefined ? '请选择发票类型' : can_invoice_type_list[form_invoice_type_index]['name']}} + + + + + + 申请类型必选 + + + {{apply_type_list[form_apply_type_index] == undefined ? '请选择申请类型' : apply_type_list[form_apply_type_index]['name']}} + + + + + + 发票内容必选 + + + {{invoice_content_list[form_invoice_content_index] == undefined ? '请选择发票内容' : invoice_content_list[form_invoice_content_index]}} + + + + + + 发票抬头必填 + + + + + + + 企业统一社会信用代码或纳税识别号必填 + + + + + + + + 企业开户行名称必填 + + + + 企业开户帐号必填 + + + + 企业联系电话必填 + + + + 企业注册地址必填 + + + + + + + + 收件人姓名必填 + + + + 收件人电话必填 + + + + 收件人地址必填 + + + + + + + + 电子邮箱选填 + + + + + + 备注选填 + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.css b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.css new file mode 100644 index 000000000..a282c04c7 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.css @@ -0,0 +1,47 @@ +/* + * 导航 + */ + .nav { + background: #eee; + height: 80rpx; + line-height: 80rpx; +} +.nav .item { + width: 20%; +} +.nav .active { + color: #d2364c; +} + +/* + * 列表 + */ +.scroll-box { + height: calc(100vh - 80rpx); +} +.data-list .item .base, +.data-list .item .content { + padding: 20rpx 10rpx; +} +.data-list .item .content .multi-text { + line-height: 50rpx; +} +.data-list .item .content .multi-text .title { + margin-right: 30rpx; +} +.data-list .item .content .multi-text .value { + font-weight: 500; +} +.data-list .item .content .multi-text .unit { + margin-left: 10rpx; +} +.data-list .item .operation { + padding: 20rpx 10rpx; +} +.data-list .item .operation button:not(:first-child) { + margin-left: 30rpx; +} +.data-list .item .submit-delete { + border: 1px solid #dc7f7f; + color: #dc7f7f !important; +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.js b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.js new file mode 100644 index 000000000..941f02160 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.js @@ -0,0 +1,257 @@ +const app = getApp(); +Page({ + data: { + data_base: null, + data_list: [], + data_page_total: 0, + data_page: 1, + data_list_loding_status: 1, + data_bottom_line_status: false, + params: null, + nav_status_list: [{ + name: "全部", + value: "-1" + }, { + name: "待审核", + value: "0" + }, { + name: "待开票", + value: "1" + }, { + name: "已开票", + value: "2" + }, { + name: "已拒绝", + value: "3" + }], + nav_status_index: 0 + }, + + onReady() {}, + + onLoad(params) { + // 是否指定状态 + var nav_status_index = 0; + + if ((params.status || null) != null) { + for (var i in this.data.nav_status_list) { + if (this.data.nav_status_list[i]['value'] == params.status) { + nav_status_index = i; + break; + } + } + } + + this.setData({ + params: params, + nav_status_index: nav_status_index + }); + }, + + onShow() { + this.init(); + }, + + init() { + var user = app.get_user_info(this, 'init'); + + if (user != false) { + // 用户未绑定用户则转到登录页面 + if (app.user_is_need_login(user)) { + swan.redirectTo({ + url: "/pages/login/login?event_callback=init" + }); + return false; + } else { + // 获取数据 + this.get_data_list(); + } + } else { + this.setData({ + data_list_loding_status: 0, + data_bottom_line_status: false + }); + } + }, + + // 获取数据 + get_data_list(is_mandatory) { + // 分页是否还有数据 + if ((is_mandatory || 0) == 0) { + if (this.data.data_bottom_line_status == true) { + return false; + } + } // 加载loding + + + swan.showLoading({ + title: "加载中..." + }); + this.setData({ + data_list_loding_status: 1 + }); // 请求数据 + + var data = { + page: this.data.data_page + }; // 参数 + + var status = (this.data.nav_status_list[this.data.nav_status_index] || null) == null ? -1 : this.data.nav_status_list[this.data.nav_status_index]['value']; + + if (status != -1) { + data['status'] = status; + } // 获取数据 + + + swan.request({ + url: app.get_request_url("index", "user", "invoice"), + method: "POST", + data: data, + dataType: "json", + success: res => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + + if (res.data.code == 0) { + if (res.data.data.data.length > 0) { + if (this.data.data_page <= 1) { + var temp_data_list = res.data.data.data; + } else { + var temp_data_list = this.data.data_list; + var temp_data = res.data.data.data; + + for (var i in temp_data) { + temp_data_list.push(temp_data[i]); + } + } + + this.setData({ + data_base: res.data.data.base || null, + data_list: temp_data_list, + data_total: res.data.data.total, + data_page_total: res.data.data.page_total, + data_list_loding_status: 3, + data_page: this.data.data_page + 1 + }); // 是否还有数据 + + if (this.data.data_page > 1 && this.data.data_page > this.data.data_page_total) { + this.setData({ + data_bottom_line_status: true + }); + } else { + this.setData({ + data_bottom_line_status: false + }); + } + } else { + this.setData({ + data_list_loding_status: 0, + data_list: [], + data_bottom_line_status: false + }); + } + } else { + this.setData({ + data_list_loding_status: 0 + }); + + if (app.is_login_check(res.data, this, 'get_data_list')) { + app.showToast(res.data.msg); + } + } + }, + fail: () => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + this.setData({ + data_list_loding_status: 2 + }); + app.showToast("服务器请求出错"); + } + }); + }, + + // 下拉刷新 + onPullDownRefresh() { + this.setData({ + data_page: 1 + }); + this.get_data_list(1); + }, + + // 滚动加载 + scroll_lower(e) { + this.get_data_list(); + }, + + // 导航事件 + nav_event(e) { + this.setData({ + nav_status_index: e.currentTarget.dataset.index || 0, + data_page: 1 + }); + this.get_data_list(1); + }, + + // 编辑事件 + edit_event(e) { + swan.navigateTo({ + url: '/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo?id=' + e.currentTarget.dataset.value + }); + }, + + // 删除 + delete_event(e) { + swan.showModal({ + title: "温馨提示", + content: "删除后不可恢复,确定继续吗?", + confirmText: "确认", + cancelText: "不了", + success: result => { + if (result.confirm) { + // 参数 + var value = e.currentTarget.dataset.value; + var index = e.currentTarget.dataset.index; // 加载loding + + swan.showLoading({ + title: "处理中..." + }); + swan.request({ + url: app.get_request_url("delete", "user", "invoice"), + method: "POST", + data: { + ids: value + }, + dataType: "json", + success: res => { + swan.hideLoading(); + + if (res.data.code == 0) { + var temp_data_list = this.data.data_list; + temp_data_list.splice(index, 1); + this.setData({ + data_list: temp_data_list + }); + + if (temp_data_list.length == 0) { + this.setData({ + data_list_loding_status: 0, + data_bottom_line_status: false + }); + } + + app.showToast(res.data.msg, "success"); + } else { + app.showToast(res.data.msg); + } + }, + fail: () => { + swan.hideLoading(); + app.showToast("服务器请求出错"); + } + }); + } + } + }); + } + +}); \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.json b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.json new file mode 100644 index 000000000..9d136ca90 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.json @@ -0,0 +1,4 @@ +{ + "enablePullDownRefresh": true, + "navigationBarTitleText": "我的发票" +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.swan b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.swan new file mode 100644 index 000000000..6c7a432a8 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/invoice/invoice.swan @@ -0,0 +1,56 @@ + + + + {{item.name}} + + + + + + + + + {{item.add_time}} + {{item.status_name}} + + + + + 业务类型 + {{item.business_type_name}} + + + 申请类型 + {{item.apply_type_name}} + + + 发票类型 + {{item.invoice_type_name}} + + + 发票金额 + {{item.total_price}} + + + + 发票抬头 + {{item.invoice_title}} + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/order/order.css b/sourcecode/baidu/default/pages/plugins/invoice/order/order.css new file mode 100644 index 000000000..20027e637 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/order/order.css @@ -0,0 +1,43 @@ +/* + * 列表 + */ +.data-list .item .base, +.data-list .item .content { + padding: 20rpx 10rpx; +} +.data-list .item .content .multi-text { + line-height: 50rpx; +} +.data-list .item .content .multi-text .title { + margin-right: 30rpx; +} +.data-list .item .content .multi-text .value { + font-weight: 500; +} +.data-list .item .content .multi-text .unit { + margin-left: 10rpx; +} +.data-list .item .operation { + padding: 20rpx 10rpx; +} +.data-list .item .operation button:not(:first-child) { + margin-left: 30rpx; +} + +/* + * 选择 + */ + .selected .icon { + width: 40rpx; + height: 40rpx !important; + margin-left: 10rpx; + margin-right: 20rpx; + vertical-align: middle; +} + .invoice-merge-submit { + width: 220rpx; + height: 70rpx !important; + line-height: 74rpx !important; + left: calc(50% - 110rpx); + bottom: 50rpx; +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/order/order.js b/sourcecode/baidu/default/pages/plugins/invoice/order/order.js new file mode 100644 index 000000000..1748ff329 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/order/order.js @@ -0,0 +1,179 @@ +const app = getApp(); +Page({ + data: { + data_base: null, + data_list: [], + data_page_total: 0, + data_page: 1, + data_list_loding_status: 1, + data_bottom_line_status: false, + params: null, + select_ids: [] + }, + + onReady() {}, + + onLoad(params) { + this.setData({ + params: params + }); + }, + + onShow() { + this.init(); + }, + + init() { + var user = app.get_user_info(this, 'init'); + + if (user != false) { + // 用户未绑定用户则转到登录页面 + if (app.user_is_need_login(user)) { + swan.redirectTo({ + url: "/pages/login/login?event_callback=init" + }); + return false; + } else { + // 获取数据 + this.get_data_list(); + } + } else { + this.setData({ + data_list_loding_status: 0, + data_bottom_line_status: false + }); + } + }, + + // 获取数据 + get_data_list(is_mandatory) { + // 分页是否还有数据 + if ((is_mandatory || 0) == 0) { + if (this.data.data_bottom_line_status == true) { + return false; + } + } // 加载loding + + + swan.showLoading({ + title: "加载中..." + }); + this.setData({ + data_list_loding_status: 1 + }); // 请求数据 + + var data = { + page: this.data.data_page + }; // 获取数据 + + swan.request({ + url: app.get_request_url("index", "order", "invoice"), + method: "POST", + data: data, + dataType: "json", + success: res => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + + if (res.data.code == 0) { + if (res.data.data.data.length > 0) { + if (this.data.data_page <= 1) { + var temp_data_list = res.data.data.data; + } else { + var temp_data_list = this.data.data_list; + var temp_data = res.data.data.data; + + for (var i in temp_data) { + temp_data_list.push(temp_data[i]); + } + } + + this.setData({ + data_base: res.data.data.base || null, + data_list: temp_data_list, + data_total: res.data.data.total, + data_page_total: res.data.data.page_total, + data_list_loding_status: 3, + data_page: this.data.data_page + 1 + }); // 是否还有数据 + + if (this.data.data_page > 1 && this.data.data_page > this.data.data_page_total) { + this.setData({ + data_bottom_line_status: true + }); + } else { + this.setData({ + data_bottom_line_status: false + }); + } + } else { + this.setData({ + data_list_loding_status: 0, + data_list: [], + data_bottom_line_status: false + }); + } + } else { + this.setData({ + data_list_loding_status: 0 + }); + + if (app.is_login_check(res.data, this, 'get_data_list')) { + app.showToast(res.data.msg); + } + } + }, + fail: () => { + swan.hideLoading(); + swan.stopPullDownRefresh(); + this.setData({ + data_list_loding_status: 2 + }); + app.showToast("服务器请求出错"); + } + }); + }, + + // 下拉刷新 + onPullDownRefresh() { + this.setData({ + data_page: 1 + }); + this.get_data_list(1); + }, + + // 滚动加载 + scroll_lower(e) { + this.get_data_list(); + }, + + // 选择 + selected_event(e) { + var value = e.currentTarget.dataset.value; + var temp_select_ids = this.data.select_ids; + var index = temp_select_ids.indexOf(value); + + if (index == -1) { + temp_select_ids.push(value); + } else { + temp_select_ids.splice(index, 1); + } + + this.setData({ + select_ids: temp_select_ids + }); + }, + + // 合并开票 + invoice_merge_event(e) { + if (this.data.select_ids.length <= 0) { + app.showToast('请先选择数据'); + return false; + } + + swan.navigateTo({ + url: '/pages/plugins/invoice/invoice-saveinfo/invoice-saveinfo?ids=' + this.data.select_ids.join(',') + '&type=order&is_redirect=1' + }); + } + +}); \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/order/order.json b/sourcecode/baidu/default/pages/plugins/invoice/order/order.json new file mode 100644 index 000000000..c5a21f452 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/order/order.json @@ -0,0 +1,4 @@ +{ + "enablePullDownRefresh": true, + "navigationBarTitleText": "订单开票" +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/order/order.swan b/sourcecode/baidu/default/pages/plugins/invoice/order/order.swan new file mode 100644 index 000000000..d4af0b141 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/order/order.swan @@ -0,0 +1,57 @@ + + + + + + + + + + {{item.add_time}} + + + + + 订单编号 + {{item.order_no}} + + + 订单总价 + {{item.total_price}} + + + + 支付金额 + {{item.pay_price}} + + + + 订单单价 + {{item.price}} + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/user/user.css b/sourcecode/baidu/default/pages/plugins/invoice/user/user.css new file mode 100644 index 000000000..c3245db62 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/user/user.css @@ -0,0 +1,29 @@ +/* + * 导航 + */ +.nav { + border-top: 1px solid #eee; +} +.nav .item { + padding: 30rpx 0; + width: calc(50% - 1px); + border-bottom: 1px solid #eee; +} +.nav .item:nth-child(odd) { + border-right: 1px solid #eee; +} +.nav .item image { + width: 100rpx; + height: 100rpx; + margin: 0 auto; +} +.nav .item .title { + margin-top: 20rpx; +} + +/* + * 提示信息 + */ +.tips-container { + padding: 0 10rpx; +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/user/user.js b/sourcecode/baidu/default/pages/plugins/invoice/user/user.js new file mode 100644 index 000000000..d67c6c5d9 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/user/user.js @@ -0,0 +1,103 @@ +const app = getApp(); +Page({ + data: { + data_bottom_line_status: false, + data_list_loding_status: 1, + data_list_loding_msg: '', + data_base: null, + nav_list: [{ + icon: "/images/plugins/invoice/user-center-invoice-icon.png", + title: "我的发票", + url: "/pages/plugins/invoice/invoice/invoice" + }, { + icon: "/images/plugins/invoice/user-center-order-icon.png", + title: "订单开票", + url: "/pages/plugins/invoice/order/order" + }] + }, + + onReady() {}, + + onLoad(params) {}, + + onShow() { + this.init(); + }, + + init(e) { + var user = app.get_user_info(this, "init"), + self = this; + + if (user != false) { + // 用户未绑定用户则转到登录页面 + if (app.user_is_need_login(user)) { + swan.showModal({ + title: '温馨提示', + content: '绑定手机号码', + confirmText: '确认', + cancelText: '暂不', + success: result => { + swan.stopPullDownRefresh(); + + if (result.confirm) { + swan.navigateTo({ + url: "/pages/login/login?event_callback=init" + }); + } + } + }); + } else { + self.get_data(); + } + } + }, + + // 获取数据 + get_data() { + var self = this; + swan.request({ + url: app.get_request_url("center", "user", "invoice"), + method: "POST", + data: {}, + dataType: "json", + success: res => { + swan.stopPullDownRefresh(); + + if (res.data.code == 0) { + var data = res.data.data; + self.setData({ + data_base: data.base || null, + data_list_loding_msg: '', + data_list_loding_status: 0, + data_bottom_line_status: false + }); + } else { + self.setData({ + data_bottom_line_status: false, + data_list_loding_status: 2, + data_list_loding_msg: res.data.msg + }); + + if (app.is_login_check(res.data, self, 'get_data')) { + app.showToast(res.data.msg); + } + } + }, + fail: () => { + swan.stopPullDownRefresh(); + self.setData({ + data_bottom_line_status: false, + data_list_loding_status: 2, + data_list_loding_msg: '服务器请求出错' + }); + app.showToast("服务器请求出错"); + } + }); + }, + + // 下拉刷新 + onPullDownRefresh() { + this.get_data(); + } + +}); \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/user/user.json b/sourcecode/baidu/default/pages/plugins/invoice/user/user.json new file mode 100644 index 000000000..9d136ca90 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/user/user.json @@ -0,0 +1,4 @@ +{ + "enablePullDownRefresh": true, + "navigationBarTitleText": "我的发票" +} \ No newline at end of file diff --git a/sourcecode/baidu/default/pages/plugins/invoice/user/user.swan b/sourcecode/baidu/default/pages/plugins/invoice/user/user.swan new file mode 100644 index 000000000..305710150 --- /dev/null +++ b/sourcecode/baidu/default/pages/plugins/invoice/user/user.swan @@ -0,0 +1,20 @@ + + + + + + + {{item.title}} + + + + + + + + + + {{item}} + + + \ No newline at end of file diff --git a/sourcecode/qq/default/pages/plugins/invoice/invoice-detail/invoice-detail.js b/sourcecode/qq/default/pages/plugins/invoice/invoice-detail/invoice-detail.js index 7c67b53b5..b53097669 100644 --- a/sourcecode/qq/default/pages/plugins/invoice/invoice-detail/invoice-detail.js +++ b/sourcecode/qq/default/pages/plugins/invoice/invoice-detail/invoice-detail.js @@ -65,7 +65,6 @@ Page({ { name: "快递名称", value: data.data.express_name || '' }, { name: "快递单号", value: data.data.express_number || '' }, ], - data_list_loding_status: 3, data_bottom_line_status: true, data_list_loding_msg: '', diff --git a/sourcecode/qq/default/pages/plugins/invoice/user/user.qml b/sourcecode/qq/default/pages/plugins/invoice/user/user.qml index fa00d4682..2cc2449ac 100644 --- a/sourcecode/qq/default/pages/plugins/invoice/user/user.qml +++ b/sourcecode/qq/default/pages/plugins/invoice/user/user.qml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ - + {{item}} diff --git a/sourcecode/toutiao/default/pages/plugins/invoice/invoice-detail/invoice-detail.js b/sourcecode/toutiao/default/pages/plugins/invoice/invoice-detail/invoice-detail.js index 56a591764..034c93e2c 100644 --- a/sourcecode/toutiao/default/pages/plugins/invoice/invoice-detail/invoice-detail.js +++ b/sourcecode/toutiao/default/pages/plugins/invoice/invoice-detail/invoice-detail.js @@ -65,7 +65,6 @@ Page({ { name: "快递名称", value: data.data.express_name || '' }, { name: "快递单号", value: data.data.express_number || '' }, ], - data_list_loding_status: 3, data_bottom_line_status: true, data_list_loding_msg: '', diff --git a/sourcecode/toutiao/default/pages/plugins/invoice/user/user.ttml b/sourcecode/toutiao/default/pages/plugins/invoice/user/user.ttml index d209a4020..2f21cd5d9 100644 --- a/sourcecode/toutiao/default/pages/plugins/invoice/user/user.ttml +++ b/sourcecode/toutiao/default/pages/plugins/invoice/user/user.ttml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ - + {{item}} diff --git a/sourcecode/weixin/default/app.js b/sourcecode/weixin/default/app.js index 966efaeb9..de43af3b9 100755 --- a/sourcecode/weixin/default/app.js +++ b/sourcecode/weixin/default/app.js @@ -73,8 +73,8 @@ App({ // 请求地址 request_url: "{{request_url}}", - request_url: 'http://shopxo.com/', - request_url: 'https://dev.shopxo.net/', + // request_url: 'http://shopxo.com/', + // request_url: 'https://dev.shopxo.net/', // 基础信息 application_title: "{{application_title}}", diff --git a/sourcecode/weixin/default/pages/plugins/invoice/invoice-detail/invoice-detail.js b/sourcecode/weixin/default/pages/plugins/invoice/invoice-detail/invoice-detail.js index cf9ec64a4..62fae83eb 100644 --- a/sourcecode/weixin/default/pages/plugins/invoice/invoice-detail/invoice-detail.js +++ b/sourcecode/weixin/default/pages/plugins/invoice/invoice-detail/invoice-detail.js @@ -65,7 +65,6 @@ Page({ { name: "快递名称", value: data.data.express_name || '' }, { name: "快递单号", value: data.data.express_number || '' }, ], - data_list_loding_status: 3, data_bottom_line_status: true, data_list_loding_msg: '', diff --git a/sourcecode/weixin/default/pages/plugins/invoice/user/user.wxml b/sourcecode/weixin/default/pages/plugins/invoice/user/user.wxml index 4af9062b6..839fdaf73 100644 --- a/sourcecode/weixin/default/pages/plugins/invoice/user/user.wxml +++ b/sourcecode/weixin/default/pages/plugins/invoice/user/user.wxml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ - + {{item}}