| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- ownertable: null,
- ownerid: null,
- sys_datafollowupid: null,
- detail: {},
- tabbarList: [{
- icon: "icon-bianji",
- label: "编辑"
- }, {
- icon: "icon-shanchu",
- label: "删除"
- }]
- },
- onLoad(options) {
- if (options.data) {
- this.setData({
- ...JSON.parse(options.data)
- })
- this.getDetail();
- }
- },
- getDetail() {
- _Http.basic({
- "id": 20221026085601,
- "content": {
- "sys_datafollowupid": this.data.sys_datafollowupid
- }
- }).then(res => {
- console.log("跟进详情", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- res.data.names = res.data.contacts.map(n => n.name)
- this.selectComponent("#Yl_files").handleFiles(res.data.attinfos)
- this.setData({
- detail: res.data,
- briefs: [{
- label: "跟进对象",
- value: res.data.names
- }, {
- label: "跟进类型",
- value: res.data.type
- }, {
- label: "跟进内容",
- value: res.data.content
- }]
- })
- })
- },
- /* tab 切换回调 */
- tabbarOnClick({
- detail
- }) {
- const item = this.data.detail;
- switch (detail.label) {
- case "编辑":
- _Http.editItem(item);
- break;
- case "删除":
- wx.navigateTo({
- url: `/packageA/setclient/modules/trace/list/delete?item=${JSON.stringify({
- "sys_datafollowupid": item.sys_datafollowupid,
- "ownertable": this.data.ownertable,
- "ownerid": this.data.ownerid
- })}`,
- })
- break;
- }
- },
- onShareAppMessage() {}
- })
|