Browse Source

图片宽高验证

master
pzy 3 years ago
parent
commit
34e68849ab
  1. 33
      src/layout/components/Navbar.vue
  2. 4
      src/main.js
  3. 29
      src/utils/get-img-width.js
  4. 444
      src/views/article/index.vue

33
src/layout/components/Navbar.vue

@ -1,8 +1,6 @@
<template> <template>
<el-menu class="navbar-header-fixed" mode="horizontal"> <el-menu class="navbar-header-fixed" mode="horizontal">
<div class="name">
Hamlet管理端
</div>
<div class="name">Hamlet管理端</div>
<div class="top-right"> <div class="top-right">
<div class="hb-bd"> <div class="hb-bd">
<hamburger <hamburger
@ -14,9 +12,10 @@
<div class="top-select"> <div class="top-select">
<div class="go-index">{{ name }}</div> <div class="go-index">{{ name }}</div>
<div class="logout" v-if="this.$store.state.user.token" @click="logout">注销</div>
<div class="logout" v-if="this.$store.state.user.token" @click="logout">
注销
</div>
<div class="login" v-else @click="$router.push('/login')">登录</div> <div class="login" v-else @click="$router.push('/login')">登录</div>
</div> </div>
</div> </div>
</el-menu> </el-menu>
@ -27,38 +26,37 @@ import { mapGetters } from "vuex";
import Hamburger from "@/components/Hamburger"; import Hamburger from "@/components/Hamburger";
export default { export default {
components: { components: {
Hamburger
Hamburger,
}, },
data: () => ({ data: () => ({
mix: false, mix: false,
userImage: require("@/assets/user.png"), userImage: require("@/assets/user.png"),
isMac: process.platform === "darwin"
isMac: process.platform === "darwin",
}), }),
mounted() {
},
mounted() {},
methods: { methods: {
toggleSideBar() { toggleSideBar() {
console.log('toggle')
console.log("toggle");
this.$store.dispatch("ToggleSideBar"); this.$store.dispatch("ToggleSideBar");
}, },
logout() { logout() {
this.$store.dispatch("user/FedLogOut").then(() => { this.$store.dispatch("user/FedLogOut").then(() => {
this.$message({ this.$message({
message: "退出成功", message: "退出成功",
type: "success"
type: "success",
}); });
this.$router.push('/login')
this.$router.push("/login");
}); });
}, },
}, },
computed: { computed: {
...mapGetters(["name", "role", "sidebar"])
...mapGetters(["name", "role", "sidebar"]),
}, },
beforeDestroy() { beforeDestroy() {
console.log("销毁计时器------------"); console.log("销毁计时器------------");
clearInterval(this.timer); clearInterval(this.timer);
this.timer = null; this.timer = null;
}
},
}; };
</script> </script>
@ -72,7 +70,7 @@ export default {
right: 0; right: 0;
z-index: 1002; z-index: 1002;
height: 36px; height: 36px;
-webkit-user-select:none;
-webkit-user-select: none;
-webkit-app-region: drag; -webkit-app-region: drag;
background-color: #525151; background-color: #525151;
border: none !important; border: none !important;
@ -101,7 +99,7 @@ export default {
height: 100%; height: 100%;
justify-content: space-between; justify-content: space-between;
// padding: 0 5px; // padding: 0 5px;
color: #BFBDBD;
color: #bfbdbd;
.hb-bd { .hb-bd {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -137,7 +135,7 @@ export default {
font-family: SourceHanSansSC-regular; font-family: SourceHanSansSC-regular;
} }
.tools { .tools {
color: #BFBDBD;
color: #bfbdbd;
margin-left: 32px; margin-left: 32px;
padding: 0 8px; padding: 0 8px;
display: flex; display: flex;
@ -147,7 +145,6 @@ export default {
margin: 0 5px; margin: 0 5px;
cursor: pointer; cursor: pointer;
} }
} }
.select-right ::v-deep .el-dropdown > span { .select-right ::v-deep .el-dropdown > span {
font-size: 6px; font-size: 6px;

4
src/main.js

@ -22,6 +22,10 @@ import VueI18n from 'vue-i18n'
import loadLanguage from './i18n' import loadLanguage from './i18n'
const languages = loadLanguage() const languages = loadLanguage()
// 获取图片大小
import getImgWidth from './utils/get-img-width';
Vue.prototype.$getImgWidth = getImgWidth;
// console.log(process.env.VUE_APP_NAME); // console.log(process.env.VUE_APP_NAME);
// 创建 i18n // 创建 i18n

29
src/utils/get-img-width.js

@ -0,0 +1,29 @@
import { Message } from 'element-ui'
export default function (file, width, height) {
return new Promise(resolve => {
let reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function (e) {
let txt = e.target.result;
let img = document.createElement("img");
img.src = txt;
img.onload = function () {
if (img.width === width && img.height === height) {
resolve(true)
} else {
Message({
message: `图片上传失败,宽高错误`,
type: "warning",
duration: 5000
});
resolve(false);
}
};
};
})
}
// 1. 650 350
// 1. 650 350
// 1. 650 350
// 1. 650 350
// 1. 650 350

444
src/views/article/index.vue

@ -29,7 +29,12 @@
</el-col> </el-col>
<!--用户数据--> <!--用户数据-->
<el-col :span="20" :xs="24"> <el-col :span="20" :xs="24">
<el-form ref="queryForm" :model="listQuery" :inline="true" label-width="68px">
<el-form
ref="queryForm"
:model="listQuery"
:inline="true"
label-width="68px"
>
<el-form-item label="文章标题" prop="title"> <el-form-item label="文章标题" prop="title">
<el-input <el-input
v-model="listQuery.title" v-model="listQuery.title"
@ -67,76 +72,89 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="getList">搜索</el-button>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="getList"
>搜索</el-button
>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleCreate"
>新增</el-button>
</el-col>
</el-row>
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleCreate"
>新增</el-button
>
</el-col>
</el-row>
<el-table <el-table
v-loading="listLoading" v-loading="listLoading"
:data="list" :data="list"
border border
fit fit
highlight-current-row highlight-current-row
style="width: 100%;"
style="width: 100%"
> >
<el-table-column label="ID" prop="id" align="center"> <el-table-column label="ID" prop="id" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.article_id }}</span> <span>{{ row.article_id }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="分类" align="center"> <el-table-column label="分类" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.category_id | getCateName(categoriesJson) }}</span> <span>{{ row.category_id | getCateName(categoriesJson) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="标题" align="center"> <el-table-column label="标题" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.title }}</span> <span>{{ row.title }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="封面图" align="center"> <el-table-column label="封面图" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<img :src="row.img" height="100" /> <img :src="row.img" height="100" />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="外链" align="center"> <el-table-column label="外链" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.url }}</span> <span>{{ row.url }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="标签详情"> <el-table-column label="标签详情">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.label_name | getTagDetail }}</span> <span>{{ row.label_name | getTagDetail }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="创建时间" align="center"> <el-table-column label="创建时间" align="center">
<template slot-scope="{row}">
<template slot-scope="{ row }">
<span>{{ row.create_time }}</span> <span>{{ row.create_time }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleUpdate(scope.row)" @click="handleUpdate(scope.row)"
>修改</el-button>
>修改</el-button
>
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
>删除</el-button>
>删除</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -161,7 +179,13 @@
size="950px" size="950px"
> >
<div class="demo-drawer__content" v-if="dialogFormVisible"> <div class="demo-drawer__content" v-if="dialogFormVisible">
<el-form ref="dataForm" :model="temp" label-position="left" label-width="70px" style>
<el-form
ref="dataForm"
:model="temp"
label-position="left"
label-width="70px"
style
>
<el-form-item label="类型"> <el-form-item label="类型">
<treeselect <treeselect
v-model="temp.category_id" v-model="temp.category_id"
@ -172,12 +196,16 @@
/> />
</el-form-item> </el-form-item>
<template v-if="tagData.length"> <template v-if="tagData.length">
<el-form-item :label="item.label" v-for="(item, index) in tagData" :key="index">
<el-form-item
:label="item.label"
v-for="(item, index) in tagData"
:key="index"
>
<el-select <el-select
v-model="chooseTagData[index]" v-model="chooseTagData[index]"
multiple multiple
placeholder="请选择" placeholder="请选择"
style="width:100%"
style="width: 100%"
> >
<el-option <el-option
v-for="(sItem, sIndex) in item.value" v-for="(sItem, sIndex) in item.value"
@ -210,16 +238,17 @@
v-if="temp.img" v-if="temp.img"
:src="temp.img" :src="temp.img"
class="el-upload el-upload--picture-card" class="el-upload el-upload--picture-card"
style="float:left"
style="float: left"
/> />
<el-upload <el-upload
ref="sys_app_logo" ref="sys_app_logo"
:on-success="uploadSuccess" :on-success="uploadSuccess"
:on-error="uploadError" :on-error="uploadError"
:action="uploadAction" :action="uploadAction"
style="float:left"
style="float: left"
list-type="picture-card" list-type="picture-card"
:show-file-list="false" :show-file-list="false"
:before-upload="validationImages"
> >
<i class="el-icon-plus" /> <i class="el-icon-plus" />
</el-upload> </el-upload>
@ -266,28 +295,34 @@
</template> </template>
<script> <script>
import { validPhone, isEmpty } from '@/utils/validate'
import { fetchList, createArticle, updateArticle, delArticle, fetchArticleDetails } from '@/api/article'
import Pagination from '@/components/Pagination' // secondary package based on el-pagination
import VueUeditorWrap from "vue-ueditor-wrap"
import { listCategory } from '@/api/category'
import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
import { validPhone, isEmpty } from "@/utils/validate";
import {
fetchList,
createArticle,
updateArticle,
delArticle,
fetchArticleDetails,
} from "@/api/article";
import Pagination from "@/components/Pagination"; // secondary package based on el-pagination
import VueUeditorWrap from "vue-ueditor-wrap";
import { listCategory } from "@/api/category";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
export default { export default {
name: 'articleIndex',
name: "articleIndex",
components: { Pagination, Treeselect, VueUeditorWrap }, components: { Pagination, Treeselect, VueUeditorWrap },
data() { data() {
return { return {
deptName: '',
deptName: "",
defaultProps: { defaultProps: {
children: 'children',
label: 'category_name'
children: "children",
label: "category_name",
}, },
//
//
statusOptions: [ statusOptions: [
{value: 2, label: '上线'},
{value: 1, label: '下线'}
{ value: 2, label: "上线" },
{ value: 1, label: "下线" },
], ],
categoryOptionsLeft: undefined, categoryOptionsLeft: undefined,
tableKey: 0, tableKey: 0,
@ -298,9 +333,9 @@ export default {
page: 1, page: 1,
limit: 20, limit: 20,
is_offline: 2, is_offline: 2,
title: '',
label_name: '',
category_id: undefined
title: "",
label_name: "",
category_id: undefined,
}, },
// accountRules: { // accountRules: {
// phone: [{ required: true, trigger: 'blur', validator: RulePhone }], // phone: [{ required: true, trigger: 'blur', validator: RulePhone }],
@ -310,62 +345,66 @@ export default {
UEDITOR_HOME_URL: "/UEditor/", UEDITOR_HOME_URL: "/UEditor/",
serverUrl: process.env.VUE_APP_BASE_API + "/files/baiduUp", serverUrl: process.env.VUE_APP_BASE_API + "/files/baiduUp",
initialFrameHeight: 300, initialFrameHeight: 300,
scaleEnabled: true
scaleEnabled: true,
}, },
uploadAction: process.env.VUE_APP_BASE_API + '/files/uploadFile',
uploadAction: process.env.VUE_APP_BASE_API + "/files/uploadFile",
temp: { temp: {
id: undefined, id: undefined,
category_id: undefined, category_id: undefined,
title: '',
time: '',
img: '',
script_url: '',
content: '',
description: '',
video_time: ''
title: "",
time: "",
img: "",
script_url: "",
content: "",
description: "",
video_time: "",
}, },
dialogFullscreen: true, dialogFullscreen: true,
dialogFormVisible: false, dialogFormVisible: false,
dialogStatus: '',
dialogStatus: "",
textMap: { textMap: {
update: 'Edit',
create: 'Create'
update: "Edit",
create: "Create",
}, },
rules: { rules: {
title: [{ required: true, message: 'title is required', trigger: 'blur' }]
title: [
{ required: true, message: "title is required", trigger: "blur" },
],
}, },
categoryOptions: [], categoryOptions: [],
// categoriesJson:[], // categoriesJson:[],
downloadLoading: false, downloadLoading: false,
// tagData:[], // tagData:[],
chooseTagData: []
}
chooseTagData: [],
//
validation: false,
};
}, },
mounted() { mounted() {
this.getList()
this.getTreeselect()
this.getList();
this.getTreeselect();
}, },
computed: { computed: {
categoriesJson() { categoriesJson() {
var res = this.handleCategory(this.categoryOptions)
return res
var res = this.handleCategory(this.categoryOptions);
return res;
}, },
tagData() { tagData() {
let matchData = null
this.categoriesJson.forEach(item => {
let matchData = null;
this.categoriesJson.forEach((item) => {
if (item.id == this.temp.category_id) { if (item.id == this.temp.category_id) {
matchData = item.label_name
matchData = item.label_name;
} }
})
});
return matchData ? JSON.parse(matchData) : []; return matchData ? JSON.parse(matchData) : [];
}
},
}, },
watch: { watch: {
tagData(newVal) { tagData(newVal) {
console.log("tagDAta"); console.log("tagDAta");
console.log(newVal); console.log(newVal);
if (!newVal.length) { if (!newVal.length) {
this.chooseTagData = []
this.chooseTagData = [];
} }
}, },
chooseTagData(newVal) { chooseTagData(newVal) {
@ -374,192 +413,227 @@ export default {
}, },
// //
deptName(val) { deptName(val) {
this.$refs.tree.filter(val)
}
this.$refs.tree.filter(val);
},
}, },
filters: { filters: {
getCateName(id, categoriesJson) { getCateName(id, categoriesJson) {
for (var i = 0; i < categoriesJson.length; i++) { for (var i = 0; i < categoriesJson.length; i++) {
if (id == categoriesJson[i].id) { if (id == categoriesJson[i].id) {
return categoriesJson[i].name
return categoriesJson[i].name;
} }
} }
}, },
getTagDetail(data) { getTagDetail(data) {
if (!data) { if (!data) {
return
return;
} }
let str = ''
let str = "";
data = JSON.parse(data); data = JSON.parse(data);
data.forEach(item => {
data.forEach((item) => {
if (item.value.length) { if (item.value.length) {
str += `${item.label}${item.value.join("、")}`
str += `${item.label}${item.value.join("、")}`;
} }
})
return str
});
return str;
}, },
}, },
methods: { methods: {
//
async validationImages(file) {
let width = 0;
let height = 0;
console.log(this.temp);
switch (this.temp.category_id) {
case 23: //
width = 650;
height = 350;
break;
case 25: //
width = 130;
height = 130;
break;
case 24: //
width = 130;
height = 130;
break;
case 7: //
width = 380;
height = 220;
break;
case 6: //
width = 380;
height = 220;
break;
}
let res = await this.$getImgWidth(file, width, height);
this.validation = res;
return res;
},
// //
handleNodeClick(data) { handleNodeClick(data) {
this.listQuery.category_id = data.id
this.getList()
this.listQuery.category_id = data.id;
this.getList();
}, },
handleCategory(array) { handleCategory(array) {
var res = []
var res = [];
array.forEach((item, index) => { array.forEach((item, index) => {
let obj = {}
obj.id = item.category_id
obj.name = item.category_name
obj.label_name = item.label_name
res.push(obj)
let obj = {};
obj.id = item.category_id;
obj.name = item.category_name;
obj.label_name = item.label_name;
res.push(obj);
if (item.children) { if (item.children) {
res.push(...this.handleCategory(item.children))
res.push(...this.handleCategory(item.children));
} }
})
return res
});
return res;
}, },
//
//
filterNode(value, data) { filterNode(value, data) {
if (!value) return true
return data.category_name.indexOf(value) !== -1
if (!value) return true;
return data.category_name.indexOf(value) !== -1;
}, },
getList() { getList() {
this.listLoading = true
fetchList(this.listQuery).then(response => {
this.list = response.data.list
this.total = response.data.count
this.listLoading = true;
fetchList(this.listQuery).then((response) => {
console.log(response);
this.list = response.data.list;
this.total = response.data.count;
// Just to simulate the time of the request // Just to simulate the time of the request
setTimeout(() => { setTimeout(() => {
this.listLoading = false
}, 1.5 * 1000)
})
this.listLoading = false;
}, 1.5 * 1000);
});
}, },
handleFilter() { handleFilter() {
this.listQuery.page = 1
this.getList()
this.listQuery.page = 1;
this.getList();
}, },
handleModifyStatus(row, status) { handleModifyStatus(row, status) {
this.$message({ this.$message({
message: '操作Success',
type: 'success'
})
row.status = status
message: "操作Success",
type: "success",
});
row.status = status;
}, },
resetTemp() { resetTemp() {
this.temp = { this.temp = {
id: undefined, id: undefined,
category_id: undefined, category_id: undefined,
title: '',
time: '',
img: '',
script_url: '',
content: '',
description: '',
video_time: ''
}
title: "",
time: "",
img: "",
script_url: "",
content: "",
description: "",
video_time: "",
};
}, },
submitForm() { submitForm() {
let matchData = [...this.tagData]
let matchData = [...this.tagData];
this.chooseTagData.forEach((item, index) => { this.chooseTagData.forEach((item, index) => {
matchData[index]['value'] = item
})
matchData[index]["value"] = item;
});
this.temp.label_name = JSON.stringify(matchData); this.temp.label_name = JSON.stringify(matchData);
if (this.dialogStatus == 'create') {
this.createData()
} else if (this.dialogStatus == 'update') {
this.updateData()
if (this.dialogStatus == "create") {
this.createData();
} else if (this.dialogStatus == "update") {
this.updateData();
} }
}, },
handleCreate() { handleCreate() {
this.resetTemp()
this.temp.category_id = this.listQuery.category_id
this.dialogStatus = 'create'
this.dialogFormVisible = true
this.resetTemp();
this.temp.category_id = this.listQuery.category_id;
this.dialogStatus = "create";
this.dialogFormVisible = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['dataForm'].clearValidate()
})
this.$refs["dataForm"].clearValidate();
});
}, },
createData() { createData() {
// this.$refs['dataForm'].validate((valid) => { // this.$refs['dataForm'].validate((valid) => {
// if (valid) { // if (valid) {
createArticle(this.temp).then(() => { createArticle(this.temp).then(() => {
this.dialogFormVisible = false
this.dialogFormVisible = false;
this.$message({ this.$message({
message: "添加成功", message: "添加成功",
type: "success", type: "success",
duration: 2 * 1000, duration: 2 * 1000,
}); });
this.getList()
})
this.getList();
});
// } // }
// }) // })
}, },
handleUpdate(row) { handleUpdate(row) {
let article_id = row.article_id
this.dialogStatus = 'update'
this.resetTemp()
this.dialogFormVisible = true
fetchArticleDetails({ article_id }).then(res => {
let article_id = row.article_id;
this.dialogStatus = "update";
this.resetTemp();
this.dialogFormVisible = true;
fetchArticleDetails({ article_id }).then((res) => {
this.temp = res.data; this.temp = res.data;
if (this.temp.label_name) { if (this.temp.label_name) {
let data = JSON.parse(this.temp.label_name)
let data = JSON.parse(this.temp.label_name);
data.forEach((item, index) => { data.forEach((item, index) => {
this.chooseTagData[index] = item.value
})
this.chooseTagData[index] = item.value;
});
} }
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['dataForm'].clearValidate()
})
})
this.$refs["dataForm"].clearValidate();
});
});
}, },
updateData() { updateData() {
// this.$refs['dataForm'].validate((valid) => { // this.$refs['dataForm'].validate((valid) => {
// if (valid) { // if (valid) {
updateArticle(this.temp).then(() => { updateArticle(this.temp).then(() => {
this.dialogFormVisible = false
this.dialogFormVisible = false;
this.$message({ this.$message({
message: "更新成功", message: "更新成功",
type: "success", type: "success",
duration: 2 * 1000, duration: 2 * 1000,
}); });
this.getList()
})
this.getList();
});
// } // }
// }) // })
}, },
handleDelete({ title, article_id }) { handleDelete({ title, article_id }) {
this.$confirm('是否确认删除名称为"' + title + '"的数据项?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(function () {
console.log('del')
return delArticle({ article_id })
}).then((response) => {
if (response.code === 200) {
this.$message({
message: "删除分类成功",
type: "success",
duration: 2 * 1000,
});
this.open = false
this.getList()
} else {
this.$message({
message: "删除分类失败",
type: "error",
duration: 2 * 1000,
});
}
}).catch(function () { })
this.$confirm('是否确认删除名称为"' + title + '"的数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {
console.log("del");
return delArticle({ article_id });
})
.then((response) => {
if (response.code === 200) {
this.$message({
message: "删除分类成功",
type: "success",
duration: 2 * 1000,
});
this.open = false;
this.getList();
} else {
this.$message({
message: "删除分类失败",
type: "error",
duration: 2 * 1000,
});
}
})
.catch(function () {});
}, },
uploadSuccess(response, file) { uploadSuccess(response, file) {
if (response.state == 'SUCCESS') {
this.temp.img = response.url
console.log(response);
if (response.state == "SUCCESS" && this.validation) {
this.temp.img = response.url;
} }
// const uid = file.uid; // const uid = file.uid;
// const objKeyArr = Object.keys(this.listObj); // const objKeyArr = Object.keys(this.listObj);
@ -572,10 +646,10 @@ export default {
// } // }
}, },
uploadFileSuccess(response, file) { uploadFileSuccess(response, file) {
let obj = {}
obj.name = response.original
obj.url = response.url
this.temp.script_url = JSON.stringify(obj)
let obj = {};
obj.name = response.original;
obj.url = response.url;
this.temp.script_url = JSON.stringify(obj);
}, },
handleFileExceed(files, fileList) { handleFileExceed(files, fileList) {
this.$message.warning("只允许上传一个脚本"); this.$message.warning("只允许上传一个脚本");
@ -593,33 +667,33 @@ export default {
uploadError(err) { uploadError(err) {
this.$alert(err, "发生错误", { this.$alert(err, "发生错误", {
confirmButtonText: "确定", confirmButtonText: "确定",
callback: (action) => { },
callback: (action) => {},
}); });
}, },
/** 查询分类下拉树结构 */ /** 查询分类下拉树结构 */
getTreeselect() { getTreeselect() {
listCategory().then(response => {
this.categoryOptions = []
this.categoryOptions.push(...response.data)
})
listCategory().then((response) => {
this.categoryOptions = [];
this.categoryOptions.push(...response.data);
});
}, },
/** 转换分类数据结构 */ /** 转换分类数据结构 */
normalizer(node) { normalizer(node) {
if (node.children && !node.children.length) { if (node.children && !node.children.length) {
delete node.children
delete node.children;
} }
return { return {
id: node.category_id, id: node.category_id,
label: node.category_name, label: node.category_name,
children: node.children
}
children: node.children,
};
}, },
// //
chooseCategory(node) { chooseCategory(node) {
this.tagData = node.label_name ? JSON.parse(node.label_name) : []; this.tagData = node.label_name ? JSON.parse(node.label_name) : [];
}
}
}
},
},
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.app-container { .app-container {

Loading…
Cancel
Save