eslint; 收入合同

This commit is contained in:
zhaoxiao
2021-09-03 19:27:41 +08:00
parent c53de39b40
commit 303c1026f8
164 changed files with 5964 additions and 4788 deletions
+14 -14
View File
@@ -155,65 +155,65 @@ const logisticsInfoList = [
postPerson: '李四',
postTime: '2021年10月21',
emsOrSF: 'EMS',
postNo: "123456"
postNo: '123456'
}
]
const columns = [
{
title: '开票人',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '日期',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '金额(元)',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '票号',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '项目',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '邮寄人',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '快递',
align: "center",
align: 'center',
dataIndex: '',
},
{
title: '快递单号',
align: "center",
align: 'center',
dataIndex: 'piaoNo',
},
{
title: '操作',
align: "center",
align: 'center',
dataIndex: '',
scopedSlots: {customRender: 'action'}
},
]
export default {
name: "ProjectDetailModal",
name: 'ProjectDetailModal',
data() {
return {
description: "项目详情模态框",
description: '项目详情模态框',
width: 800,
visible: false,
title: "项目信息",
title: '项目信息',
// 当前项目id
currentProjectId: '',
// 基本信息
@@ -256,7 +256,7 @@ export default {
* 查看物流
* */
lookLogistics() {
window.open("http://www.api.kuaidi100.com", "_blank")
window.open('http://www.api.kuaidi100.com', '_blank')
}
}
}