+
+
+
天狼星报告
-
-
![]()
+
-
暂无报告
-
获取报告
-
重新获取报告
+
暂无报告
+
获取报告
+
重新获取报告
-
![]()
+
-
暂无报告
-
获取报告
-
重新获取报告
+
暂无报告
+
获取报告
+
重新获取报告
-
+
-
+
-
-
-
-
+
+
+
+
+ 确认添加
+ 取消
+ 添加备注
+
+
+
+
+
+
+
+ 删除备注
+
+
+
+
+ 确认修改
+ 取消
+ 修改备注
+
+
+
+
+
+
+
+
-
-
-
-
+
-
+
-
-
+
+
-
-
+
+
@@ -741,7 +576,7 @@ import {
orderDetailApi, orderAuditApi
} from '@/api/order'
import {
- getIdentityInfos,getZwxReportCache,getTlxReportCache,infobyconditionApi,getZwxReport,getTlxReport
+ getIdentityInfos, getZwxReportCache, getTlxReportCache, infobyconditionApi, getZwxReport, getTlxReport, remarkList,remarkUpdata,addRemark,delRemark
} from '@/api/user'
import zbParser from '@/components/FormGenerator/components/parser/ZBParser';
import detailsFrom from './orderDetail';
@@ -763,40 +598,45 @@ export default {
detailsFrom,
orderSend,
orderVideoSend,
-
+
},
data() {
return {
detailindex: 0,
fkxindex: 0,
- userinfo:[
-
+ userinfo: [
+
],
pdfDoc: null, // pdfjs 生成的对象
- pdfHTML: 0, // pdfjs 生成的对象
- pdfUrl: '',
+ pdfHTML: 0, // pdfjs 生成的对象
+ pdfUrl: '',
detaillist: [
{ tit: '用户基础信息 ' },
{ tit: ' 订单记录 ' },
{ tit: '账单列表 ' },
- { tit: '分险报告 ' },
+ { tit: '风控报告 ' },
+
{ tit: '余额变动 ' },
{ tit: '好友关系 ' },
{ tit: '积分明细 ' },
{ tit: '签到记录 ' },
{ tit: '持有优惠券 ' },
+ { tit: '备注' },
+
],
- htVisible:false,
+ htVisible: false,
tableFroms: {
page: 1,
limit: 6,
type: '0',
userId: '',
},
-
-
+ upremake:'',
+ adremake:'',
+ visible:false,
+ visibl:false,
dialogVisibles: false,
options: [
@@ -864,10 +704,20 @@ export default {
limit: 20,
type: 3,
},
+ remarkFrom: {
+ page: 1,
+ limit: 6,
+ type: '0',
+ uid: ''
+ },
tableDatas: {
data: [],
total: 0,
},
+ remakeData: {
+ data: [],
+ total: 0,
+ },
columns: [],
Visible: false,
orderChartType: {},
@@ -895,7 +745,7 @@ export default {
expressListNormal: [], //全部物流公司 normal
expressListElec: [], //全部物流公司 elec
orderDetail: null, //订单详情\
- uid:'',
+ uid: '',
};
},
mounted() {
@@ -930,132 +780,178 @@ export default {
// this.init(obj);
// this.htVisible=true
// },
- htClose(){
- this.htVisible=false
+ async upRemake(row){
+ console.log(this.upremake,'idididid');
+ let data ={
+ remark:this.upremake,
+
+ }
+ let id =row.id
+ await remarkUpdata(id,data).then((res) => {
+ this.upremake=''
+ this.visible=false
+ this.getremake()
+ });
},
-
- init(fileUrl) {
- let _this = this;
- PDFJS.getDocument(fileUrl).then(fileContent => {
- _this.pdfDoc = fileContent;
- _this.pdfHTML = fileContent.numPages;
- setTimeout(()=>{
- _this.renderPage(fileContent.numPages);
- },100)
- });
- },
- renderPage(nums) {
- for (let item = 1; item <= nums; item++) {
- // 获取页面canvas节点
- let canvas = document.getElementById(`canvas${item}`);
- // 获取上下文
- const ctx = canvas.getContext("2d");
- // 获取每一页的内容
- this.pdfDoc.getPage(item).then(page => {
- // 文件页面的视图 1倍
- const viewport = page.getViewport(1);
- // 将画布宽度设置为视图宽度
- canvas.width = viewport.width;
- canvas.height = viewport.height;
+ delremark(row){
+ delRemark(row.id).then((res) => {
+
+ this.getremake()
+ });
+ },
+ addremark(){
+ let data ={
+ remark:this.adremake,
+ uid:this.uid
- const renderContext = {
- canvasContext: ctx,
- viewport: viewport
- };
- console.log(renderContext);
- // 渲染页面内容:参数是canvas画布上下文,以及文件视图
- page.render(renderContext);
- });
- }
+ }
+ addRemark(data).then((res) => {
+ this.adremake=''
+ this.visibl=false
+ this.getremake()
+ });
+ },
+ htClose() {
+ this.htVisible = false
+ },
+
+ init(fileUrl) {
+ let _this = this;
+ PDFJS.getDocument(fileUrl).then(fileContent => {
+ _this.pdfDoc = fileContent;
+ _this.pdfHTML = fileContent.numPages;
+ setTimeout(() => {
+ _this.renderPage(fileContent.numPages);
+ }, 100)
+ });
+ },
+ renderPage(nums) {
+ for (let item = 1; item <= nums; item++) {
+ // 获取页面canvas节点
+ let canvas = document.getElementById(`canvas${item}`);
+ // 获取上下文
+ const ctx = canvas.getContext("2d");
+ // 获取每一页的内容
+ this.pdfDoc.getPage(item).then(page => {
+ // 文件页面的视图 1倍
+ const viewport = page.getViewport(1);
+ // 将画布宽度设置为视图宽度
+ canvas.width = viewport.width;
+ canvas.height = viewport.height;
+
+ const renderContext = {
+ canvasContext: ctx,
+ viewport: viewport
+ };
+ console.log(renderContext);
+ // 渲染页面内容:参数是canvas画布上下文,以及文件视图
+ page.render(renderContext);
+ });
+ }
},
pageChanges(page) {
this.tableFroms.page = page;
- if(this.detailindex==6){
+ if (this.detailindex == 6) {
this.integral()
- }else{
+ } else {
this.getInfos();
}
-
+
},
- tlxReport(){
+ tlxReport() {
console.log("获取天狼星报告")
getTlxReport({ userId: this.uid }).then((res) => {
// console.log("11111111111111111---------"+JSON.stringify(res))
- this.userinfo.tlxinfo=res
+ this.userinfo.tlxinfo = res
this.$forceUpdate()
});
},
- zwxReport(){
+ zwxReport() {
console.log("获取紫微星报告")
getZwxReport({ userId: this.uid }).then((res) => {
- this.userinfo.zwxinfo=res
+ this.userinfo.zwxinfo = res
this.$forceUpdate()
});
},
handleSizeChanges(val) {
this.tableFroms.limit = val;
- if(this.detailindex==6){
+ if (this.detailindex == 6) {
this.integral()
- }else{
+ } else {
this.getInfos();
}
},
- getuserinfo(id){
- this.detailindex=0
- this.uid=id
- this.tableFroms.userId=id
+ getuserinfo(id) {
+ this.detailindex = 0
+ this.uid = id
+ this.tableFroms.userId = id
getIdentityInfos(id)
.then((res) => {
- let detailinfo={}
- detailinfo= res
- this.userinfo.detailinfo=detailinfo
-
- this.dialogVisibles=true
+ let detailinfo = {}
+ detailinfo = res
+ this.userinfo.detailinfo = detailinfo
+
+ this.dialogVisibles = true
})
.catch((res) => {
this.loading = false;
});
- getTlxReportCache(id)
+ getTlxReportCache(id)
.then((res) => {
- this.userinfo.tlxinfo=res
+ this.userinfo.tlxinfo = res
})
.catch((res) => {
-
+
});
- getZwxReportCache(id)
+ getZwxReportCache(id)
.then((res) => {
- this.userinfo.zwxinfo=res
+ this.userinfo.zwxinfo = res
})
.catch((res) => {
-
+
});
- console.log(this.userinfo,'detailinfodetailinfodetailinfo');
+ console.log(this.userinfo, 'detailinfodetailinfodetailinfo');
},
changeindex(index) {
+ console.log(index, 'indexindexindex');
this.detailindex = index
- if(index==2){
- this.tableFroms.type='6'
+ if (index == 2) {
+ this.tableFroms.type = '6'
this.getInfos()
- }else if(index==1){
- this.tableFroms.type='0'
+ } else if (index == 1) {
+ this.tableFroms.type = '0'
this.getInfos()
- }else if(index==4){
- this.tableFroms.type='4'
+ } else if (index == 4) {
+ this.tableFroms.type = '4'
this.getInfos()
- }else if(index==5){
- this.tableFroms.type='5'
+ } else if (index == 5) {
+ this.tableFroms.type = '5'
this.getInfos()
- }else if(index==6){
+ } else if (index == 6) {
// this.tableFroms.type='2'
this.integral()
- }else if(index==7){
- this.tableFroms.type='2'
+ } else if (index == 7) {
+ this.tableFroms.type = '2'
this.getInfos()
- }else if(index==8){
- this.tableFroms.type='3'
+ } else if (index == 8) {
+ this.tableFroms.type = '3'
this.getInfos()
+ } else if (index == 9) {
+ this.getremake()
}
},
+ getremake() {
+ this.remarkFrom.uid = this.uid
+ remarkList(this.remarkFrom)
+ .then((res) => {
+ this.remakeData.data = res.list;
+ this.remakeData.total = res.total;
+
+ })
+ .catch(() => {
+
+ });
+ },
integral() {
this.loading = true;
integralListApi({ limit: this.tableFroms.limit, page: this.tableFroms.page }, { uid: this.uid })
@@ -1095,12 +991,12 @@ export default {
this.loading = false;
});
},
- getInfos(){
+ getInfos() {
infobyconditionApi(this.tableFroms)
.then((res) => {
this.tableDatas.data = res.list;
this.tableDatas.total = res.total;
- console.log( this.tableDatas,' this.tableDatas this.tableDatas');
+ console.log(this.tableDatas, ' this.tableDatas this.tableDatas');
switch (this.tableFroms.type) {
case '0':
this.columns = [
@@ -1274,14 +1170,14 @@ export default {
key: 'paymentMethod',
minWidth: 80,
},
-
+
{
title: '状态',
key: 'repaymentStatus',
minWidth: 80,
},
-
-
+
+
{
title: '创建时间',
key: 'createTime',
@@ -1289,10 +1185,10 @@ export default {
},
];
}
-
+
})
.catch(() => {
-
+
});
},
resetFormRefundhandler() {
@@ -1714,12 +1610,14 @@ export default {
.pdfCom::-webkit-scrollbar-thumb:hover {
background-color: #EAF4FF;
}
-.pdfCom{
+
+.pdfCom {
margin: 20px auto;
max-height: 600px;
overflow-x: hidden;
overflow-y: auto;
}
+
.detailbox::-webkit-scrollbar {
width: 10px;
}
@@ -2046,4 +1944,5 @@ export default {
.el-form-item__content {
float: right;
-}
+}
+