mirror of
https://gitee.com/ZhongBangKeJi/crmeb_java.git
synced 2026-04-23 03:58:35 +08:00
新增 admin 下 由于文件夹名称log而丢失的文件
This commit is contained in:
@@ -181,7 +181,7 @@ export default {
|
||||
status: null,
|
||||
name: null,
|
||||
page: constants.page.page,
|
||||
limit: constants.page.limit[1]
|
||||
limit: constants.page.limit[0]
|
||||
},
|
||||
viewInfoConfig: {
|
||||
data: null,
|
||||
@@ -201,7 +201,6 @@ export default {
|
||||
handleEditMenu(rowData) {
|
||||
this.editDialogConfig.isCreate = 1
|
||||
this.editDialogConfig.data = rowData
|
||||
console.log(this.editDialogConfig.data)
|
||||
this.editDialogConfig.prent = rowData
|
||||
this.editDialogConfig.visible = true
|
||||
},
|
||||
@@ -229,7 +228,7 @@ export default {
|
||||
const _pram = { type: this.biztype.value, status: this.selectModel ? 1 : -1 }
|
||||
this.biztype.value!==3 ? categoryApi.treeCategroy(_pram).then(data => {
|
||||
this.treeList = this.handleAddArrt(data)
|
||||
}) : categoryApi.listCategroy({ type: 3, status: '' }).then(data => {
|
||||
}) : categoryApi.listCategroy({ type: 3, status: '', pid: this.listPram.pid}).then(data => {
|
||||
this.treeList = data.list
|
||||
})
|
||||
},
|
||||
|
||||
@@ -89,7 +89,7 @@ export default {
|
||||
// monaco.editor.create(document.getElementById("editorJson"), {
|
||||
// value: [
|
||||
// "function x() {",
|
||||
// '\tconsole.log("Hello world!");',
|
||||
// '\tconsole.integralLog("Hello world!");',
|
||||
// "}"].join(
|
||||
// "\n"
|
||||
// ),
|
||||
|
||||
@@ -178,7 +178,7 @@ export default {
|
||||
// })
|
||||
// }).catch(err => {
|
||||
// failure('出现未知问题,刷新页面,或者联系程序员')
|
||||
// console.log(err);
|
||||
// console.integralLog(err);
|
||||
// });
|
||||
// },
|
||||
})
|
||||
|
||||
@@ -282,9 +282,9 @@ export default {
|
||||
reader.readAsDataURL(this.localFile);// 这里也可以直接写参数event.raw
|
||||
|
||||
// 转换成功后的操作,reader.result即为转换后的DataURL ,
|
||||
// 它不需要自己定义,你可以console.log(reader.result)看一下
|
||||
// 它不需要自己定义,你可以console.integralLog(reader.result)看一下
|
||||
reader.onload=()=>{
|
||||
// console.log(reader.result)
|
||||
// console.integralLog(reader.result)
|
||||
}
|
||||
|
||||
/* 另外一种本地预览方法 */
|
||||
|
||||
Reference in New Issue
Block a user