文档服务地址:http://47.92.0.57:3000/ 周报索引地址:http://47.92.0.57:3000/s/NruNXRYmV

Commit 4195cfdd by 郭婉茹

text前端样式修改

parent ea4b8b87
......@@ -2,9 +2,7 @@
<div class="select-container">
<el-container>
<el-aside
class="sidebar1"
style="background-color: rgba(255,255,255,0);box-shadow: 0px 0px 0px rgba(255,255,255,0);padding-right: 20px"
>
class="sidebar1">
<!-- 实体列表 -->
<div class="sidebar-box1">
<div>
......
<template>
<div class="select-container">
<el-container>
<el-aside
class="sidebar1"
style="background-color: rgba(255,255,255,0);box-shadow: 0px 0px 0px rgba(255,255,255,0);padding-right: 20px"
>
<el-aside class="sidebar1">
<!-- 实体列表 -->
<div class="sidebar-box1">
<div>
......@@ -230,7 +227,7 @@ export default {
},
}).then((res) => {
if (res.return_code == 200) {
console.log(res.result)
console.log(res.result);
// 实体
this.token.entityId = res.result.templateName;
// 属性
......@@ -484,21 +481,33 @@ export default {
@import "@/assets/scss/config.scss";
@import "@/assets/scss/mixin.scss";
.select-container {
@include container;
height: calc(100vh - 61px);
display: flex;
flex-direction: column;
background-color: #d9ecff;
.sidebar1 {
height: 600px;
box-shadow: 0px 0px 10px #dbdbdb;
background-color: white;
padding: 0 0 0 0;
margin-left: 50px;
margin-right: 20px;
margin-top: 40px;
width: 250px;
display: flex;
.img-list-title1 {
padding: 0 0 0 0;
width: 250px;
height: 40px;
line-height: 40px;
padding: 0 10px;
background: #409eff;
color: white;
box-shadow: 0px 0px 10px #dbdbdb;
}
.img-title-list-box1 {
height: 560px;
padding: 0 0 0 0;
width: 250px;
height: calc(100vh - 61px - 100px - 40px);
overflow: auto;
background-color: white;
box-shadow: 0px 0px 10px #dbdbdb;
.tokenList1 {
margin: 9px;
}
......@@ -508,14 +517,17 @@ export default {
}
}
.filter-container1 {
height: 600px;
float: center;
margin-right: 50px;
margin-left: 20px;
margin-top: 40px;
height: calc(100vh - 61px - 100px);
//float: center;
width: 100%;
padding: 25px 10px 20px 25px;
@include whiteBoard;
.content1 {
overflow: auto;
height: 450px;
height: calc(100vh - 61px - 100px - 110px);
text-align: left;
font-size: 20px;
line-height: 30px;
......
......@@ -297,20 +297,6 @@ export default {
margin-top: 15px;
margin-bottom: 10px;
}
.img-list-title1 {
line-height: 40px;
padding: 0 10px;
background: #409eff;
color: white;
}
.img-title-list-box1 {
height: 550px;
overflow: auto;
background-color: white;
//margin-top: 13px;
margin-bottom: 13px;
}
.add-file-btn-group >>> button {
margin-top: 3px;
margin-bottom: 3px;
......
<template>
<div class="select-container">
<el-container>
<el-aside
class="sidebar"
style="background-color: rgba(255,255,255,0);box-shadow: 0px 0px 0px rgba(255,255,255,0);padding-right: 20px"
>
<el-aside class="sidebar">
<!-- 实体列表 -->
<div class="sidebar-box">
<div>
......@@ -103,7 +100,7 @@
</template>
<script>
import FileSaver from 'file-saver';
import FileSaver from "file-saver";
export default {
data() {
return {
......@@ -121,7 +118,7 @@ export default {
begin: 0,
end: 0,
entityId: "",
attribute: []
attribute: [],
},
token: {
tokenId: "", // 编号
......@@ -129,7 +126,7 @@ export default {
begin: 0, // row
end: 0, // 终止位置
entityId: "", // column
attribute: [] // 属性
attribute: [], // 属性
},
row: [],
column: {},
......@@ -143,7 +140,7 @@ export default {
defaultProps: {
children: "children",
label: "label"
label: "label",
},
//count: 1,
ifAlert: false, // 弹窗
......@@ -153,10 +150,10 @@ export default {
nowContent: {
tablename: "",
tableData: [],
name: []
name: [],
},
allContent: [],
numOfSheet: 0
numOfSheet: 0,
};
},
beforeMount() {
......@@ -181,9 +178,9 @@ export default {
relationId: this.relationId,
textUrl: this.file.url,
type: "xlsx",
fileId: this.file.id
}
}).then(res => {
fileId: this.file.id,
},
}).then((res) => {
if (res.return_code == 200) {
this.documentId = res.result;
//console.log("this.documentId: " + this.documentId);
......@@ -195,7 +192,7 @@ export default {
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
......@@ -206,9 +203,9 @@ export default {
method: "post",
url: "/files/getExcelContent",
data: {
documentId: this.documentId
}
}).then(res => {
documentId: this.documentId,
},
}).then((res) => {
if (res.return_code == 200) {
var i;
var nowContent = {};
......@@ -224,7 +221,7 @@ export default {
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
......@@ -237,11 +234,11 @@ export default {
method: "post",
url: "/textAnnotation/getTokenList",
data: {
documentId: this.documentId
}
}).then(res => {
documentId: this.documentId,
},
}).then((res) => {
if (res.return_code == 200) {
res.result.forEach(element => {
res.result.forEach((element) => {
this.tokenInit = element;
console.log(" token: " + JSON.stringify(this.tokenInit));
this.tokenList.push(this.tokenInit);
......@@ -251,7 +248,7 @@ export default {
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
......@@ -264,9 +261,9 @@ export default {
url: "/textAnnotation/getOneTemplate",
data: {
templateId: parseInt(this.piece.template),
creatorId: parseInt(this.task.creator_id)
}
}).then(res => {
creatorId: parseInt(this.task.creator_id),
},
}).then((res) => {
if (res.return_code == 200) {
//console.log(res.result)
// 实体
......@@ -276,7 +273,7 @@ export default {
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
......@@ -296,7 +293,6 @@ export default {
this.row = row;
this.column = column;
this.token.word = row[column.property];
// TODO rowindex似乎有错
this.token.begin = column.property;
this.token.entityId = row[1];
console.log(JSON.stringify(row));
......@@ -309,7 +305,7 @@ export default {
if (this.token.word == this.tokenList[i].word) {
this.$message({
message: "选中单元格已标记",
type: "info"
type: "info",
});
return;
}
......@@ -326,29 +322,20 @@ export default {
// }
// return "";
// },
// // TODO 表格标注颜色bug
// cellStyle({row, column, rowIndex, columnIndex}) {
// for(var i = 0; i < this.tokenList.length; i++){
// console.log("this.tokenList["+i+"].begin"+this.tokenList[i].begin)
// if(rowIndex == this.tokenList[i].begin){
// console.log("111111111"+this.tokenList[i].word)
// return "success-row";
// }
// }
// },
// 添加标注 // TODO 大于段落的标注还是无法渲染
// 表格标注颜色
cellStyle(row, column, rowIndex, columnIndex) {},
// 添加标注
uploadToken() {
this.ifAlert = false;
let res = this.$refs.tree.getCheckedNodes();
let arr = [];
res.forEach(item => {
res.forEach((item) => {
arr.push(item.label); // 属性
});
if (arr == []) {
this.$message({
message: "未选择属性",
type: "info"
type: "info",
});
} else {
// 保存token
......@@ -362,10 +349,10 @@ export default {
begin: this.token.begin,
end: 0,
entityId: this.token.entityId,
attribute: arr
}
}
}).then(res => {
attribute: arr,
},
},
}).then((res) => {
if (res.return_code == 200) {
this.cellStyle(this.row, this.column);
let token = {
......@@ -374,7 +361,7 @@ export default {
begin: this.token.begin,
end: 0,
entityId: this.token.entityId,
attribute: arr
attribute: arr,
};
this.tokenList.push(token);
console.log(" token uploadToken" + JSON.stringify(token));
......@@ -384,20 +371,15 @@ export default {
);
this.$message({
message: "已保存",
type: "success"
type: "success",
});
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
// TODO 不知道为啥有缓存不能清除
// this.$nextTick(() => {
// this.$refs.tree.setCheckedKeys([]);
//});
}
return;
},
......@@ -409,45 +391,25 @@ export default {
url: "/textAnnotation/deleteToken",
data: {
documentId: this.documentId,
tokenId: tag.tokenId
}
}).then(res => {
tokenId: tag.tokenId,
},
}).then((res) => {
if (res.return_code == 200) {
this.$message({
type: "info",
message: "已删除"
message: "已删除",
});
this.tokenList.splice(this.tokenList.indexOf(tag), 1);
this.content = this.contentWithoutColor;
console.log(" this.tokenList: " + JSON.stringify(this.tokenList));
console.log(" this.content: " + this.content);
this.tokenList.forEach(element => {
console.log(" token: " + JSON.stringify(element));
let replaceReg = new RegExp(element.word, "g"); // 匹配关键字正则
let replaceString =
'<span class="highlights-text">' +
element.word +
"</span>" +
'<span class="mark">' +
"(实体:" +
element.entityId +
";属性:" +
element.attribute +
")" +
"</span>"; // 高亮替换v-html值
this.content = this.content.replace(replaceReg, replaceString);
});
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
// 不知道为啥不清除
//this.$nextTick(() => {
// this.$refs.tree.setCheckedKeys([]);
//});
},
// 修改实体属性=删除+添加(如果选择属性弹窗没有点提交直接关掉的话会删除,也就是双击直接删除,也许这里后期需要改)
changeToken(tag) {
......@@ -460,69 +422,53 @@ export default {
url: "/textAnnotation/deleteToken",
data: {
documentId: this.documentId,
tokenId: tag.tokenId
}
}).then(res => {
tokenId: tag.tokenId,
},
}).then((res) => {
if (res.return_code == 200) {
this.tokenList.splice(this.tokenList.indexOf(tag), 1);
this.content = this.contentWithoutColor;
console.log(" this.tokenList: " + JSON.stringify(this.tokenList));
console.log(" this.content: " + this.content);
this.tokenList.forEach(element => {
console.log(" token: " + JSON.stringify(element));
let replaceReg = new RegExp(element.word, "g"); // 匹配关键字正则
let replaceString =
'<span class="highlights-text">' +
element.word +
"</span>" +
'<span class="mark">' +
"(实体:" +
element.entityId +
";属性:" +
element.attribute +
")" +
"</span>"; // 高亮替换v-html值
this.content = this.content.replace(replaceReg, replaceString);
});
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
},
// 提交已标注文档 // TODO 跳转到我的任务,已标注文档标注按钮消失,然后判定整个任务都标注完成后跳转到已完成任务界面,这个就交给通用的大佬们了
// 提交已标注文档
submit() {
// console.log("hello" + JSON.stringify(this.task))
this.axios({
method: "post",
url: "/textAnnotation/revDocumentState",
data: {
documentId: this.documentId
}
}).then(res => {
documentId: this.documentId,
},
}).then((res) => {
if (res.return_code == 200) {
this.$message({
message: "已保存",
type: "success"
type: "success",
});
} else {
this.$message({
message: res.return_info,
type: "error"
type: "error",
});
}
});
this.$router.replace({
name: "ongoingtaskdetail",
params: { task: encodeURIComponent(JSON.stringify(this.task)) }
params: { task: encodeURIComponent(JSON.stringify(this.task)) },
});
}
},
},
mounted: function() {
mounted: function () {
this.insertDocument();
}
},
};
</script>
......@@ -530,24 +476,50 @@ export default {
@import "@/assets/scss/config.scss";
@import "@/assets/scss/mixin.scss";
.select-container {
@include container;
height: calc(100vh - 61px);
display: flex;
flex-direction: column;
background-color: #d9ecff;
.sidebar {
height: 900px;
padding: 0 0 0 0;
margin-left: 50px;
margin-right: 20px;
margin-top: 40px;
.img-list-title {
padding: 0 0 0 0;
height: 40px;
line-height: 40px;
background: #409eff;
color: white;
box-shadow: 0px 0px 10px #dbdbdb;
}
.img-title-list-box {
padding: 7px;
height: 200px;
overflow: auto;
background-color: white;
//margin-top: 13px;
margin-bottom: 13px;
box-shadow: 0px 0px 10px #dbdbdb;
background-color: white;
}
}
.filter-container {
float: center;
margin-right: 50px;
margin-left: 20px;
margin-top: 40px;
height: calc(100vh - 61px - 100px);
//float: center;
width: 100%;
padding: 35px 40px 50px 40px;
padding: 25px 10px 20px 25px;
@include whiteBoard;
.content {
text-align: left;
font-size: 20px;
line-height: 30px;
height: calc(100vh - 61px - 100px - 110px);
}
}
}
.content {
text-align: left;
font-size: 20px;
line-height: 30px;
}
.el-table .warning-row {
background: oldlace;
......@@ -584,20 +556,6 @@ export default {
margin-top: 15px;
margin-bottom: 10px;
}
.img-list-title {
line-height: 40px;
padding: 0 10px;
background: #409eff;
color: white;
}
.img-title-list-box {
padding: 7px;
height: 250px;
overflow: auto;
background-color: white;
//margin-top: 13px;
margin-bottom: 13px;
}
.add-file-btn-group >>> button {
margin-top: 3px;
......
......@@ -258,25 +258,6 @@ export default {
<style lang='scss'>
@import "@/assets/scss/config.scss";
@import "@/assets/scss/mixin.scss";
.select-container {
@include container;
.sidebar {
height: 900px;
box-shadow: 0px 0px 10px #dbdbdb;
background-color: white;
}
.filter-container {
float: center;
width: 100%;
padding: 35px 40px 50px 40px;
@include whiteBoard;
}
}
.content {
text-align: left;
font-size: 20px;
line-height: 30px;
}
.el-table .warning-row {
background: oldlace;
......@@ -313,21 +294,6 @@ export default {
margin-top: 15px;
margin-bottom: 10px;
}
.img-list-title {
line-height: 40px;
padding: 0 10px;
background: #409eff;
color: white;
}
.img-title-list-box {
padding: 7px;
height: 250px;
overflow: auto;
background-color: white;
//margin-top: 13px;
margin-bottom: 13px;
}
.add-file-btn-group >>> button {
margin-top: 3px;
margin-bottom: 3px;
......
......@@ -320,25 +320,6 @@ export default {
<style lang='scss'>
@import "@/assets/scss/config.scss";
@import "@/assets/scss/mixin.scss";
.select-container {
@include container;
.sidebar {
height: 900px;
box-shadow: 0px 0px 10px #dbdbdb;
background-color: white;
}
.filter-container {
float: center;
width: 100%;
padding: 35px 40px 50px 40px;
@include whiteBoard;
}
}
.content {
text-align: left;
font-size: 20px;
line-height: 30px;
}
.el-table .warning-row {
background: oldlace;
......@@ -375,20 +356,6 @@ export default {
margin-top: 15px;
margin-bottom: 10px;
}
.img-list-title {
line-height: 40px;
padding: 0 10px;
background: #409eff;
color: white;
}
.img-title-list-box {
padding: 7px;
height: 250px;
overflow: auto;
background-color: white;
//margin-top: 13px;
margin-bottom: 13px;
}
.add-file-btn-group >>> button {
margin-top: 3px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
webpackJsonp([0],{l98k:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var s={name:"task",components:{PiecesTable:a("8Lxp").a},data:function(){return{task:null}},beforeMount:function(){this.task=JSON.parse(decodeURIComponent(this.$route.params.task))},methods:{}},n={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"task-container"},[a("div",{staticClass:"task-panel"},[a("h2",[t._v(t._s(t.task.name))]),t._v(" "),a("p",[t._v("发布者:"+t._s(t.task.creator))]),t._v(" "),a("p",[t._v("发布时间:"+t._s(t.task.date))]),t._v(" "),a("el-divider"),t._v(" "),a("h2",[t._v("选择分片")]),t._v(" "),a("pieces-table",{attrs:{"task-id":t.task.id,showSelection:""}})],1)])},staticRenderFns:[]};var i=a("VU/8")(s,n,!1,function(t){a("xzXE")},"data-v-0add3a96",null);e.default=i.exports},xzXE:function(t,e){}});
//# sourceMappingURL=0.24d8ede3b983543299dd.js.map
\ No newline at end of file
webpackJsonp([0],{"CFJ/":function(t,e){},l98k:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var s={name:"task",components:{PiecesTable:a("8Lxp").a},data:function(){return{task:null}},beforeMount:function(){this.task=JSON.parse(decodeURIComponent(this.$route.params.task))},methods:{}},n={render:function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"task-container"},[a("div",{staticClass:"task-panel"},[a("h2",[t._v(t._s(t.task.name))]),t._v(" "),a("p",[t._v("发布者:"+t._s(t.task.creator))]),t._v(" "),a("p",[t._v("发布时间:"+t._s(t.task.date))]),t._v(" "),a("el-divider"),t._v(" "),a("h2",[t._v("选择分片")]),t._v(" "),a("pieces-table",{attrs:{"task-id":t.task.id,showSelection:""}})],1)])},staticRenderFns:[]};var r=a("C7Lr")(s,n,!1,function(t){a("CFJ/")},"data-v-0add3a96",null);e.default=r.exports}});
//# sourceMappingURL=0.8c2f1d30832f2082fc29.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///src/components/Task.vue","webpack:///./src/components/Task.vue?96c4","webpack:///./src/components/Task.vue"],"names":["Task","name","components","PiecesTable","data","task","beforeMount","this","JSON","parse","decodeURIComponent","$route","params","methods","components_Task","render","_vm","_h","$createElement","_c","_self","staticClass","_v","_s","creator","date","attrs","task-id","id","showSelection","staticRenderFns","Component","__webpack_require__","normalizeComponent","ssrContext","__webpack_exports__"],"mappings":"yGAgBAA,GACAC,KAAA,OACAC,YACAC,sBAAA,GAEAC,KALA,WAMA,OACAC,KAAA,OAGAC,YAVA,WAWAC,KAAAF,KAAAG,KAAAC,MAAAC,mBAAAH,KAAAI,OAAAC,OAAAP,QAEAQ,YC1BeC,GADEC,OAFjB,WAA0B,IAAAC,EAAAT,KAAaU,EAAAD,EAAAE,eAA0BC,EAAAH,EAAAI,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,mBAA6BF,EAAA,OAAYE,YAAA,eAAyBF,EAAA,MAAAH,EAAAM,GAAAN,EAAAO,GAAAP,EAAAX,KAAAJ,SAAAe,EAAAM,GAAA,KAAAH,EAAA,KAAAH,EAAAM,GAAA,OAAAN,EAAAO,GAAAP,EAAAX,KAAAmB,YAAAR,EAAAM,GAAA,KAAAH,EAAA,KAAAH,EAAAM,GAAA,QAAAN,EAAAO,GAAAP,EAAAX,KAAAoB,SAAAT,EAAAM,GAAA,KAAAH,EAAA,cAAAH,EAAAM,GAAA,KAAAH,EAAA,MAAAH,EAAAM,GAAA,UAAAN,EAAAM,GAAA,KAAAH,EAAA,gBAAuQO,OAAOC,UAAAX,EAAAX,KAAAuB,GAAAC,cAAA,OAA0C,MAEndC,oBCCjB,IAcAC,EAdyBC,EAAQ,OAcjCC,CACEjC,EACAc,GATF,EAVA,SAAAoB,GACEF,EAAQ,SAaV,kBAEA,MAUeG,EAAA,QAAAJ,EAAiB","file":"static/js/0.24d8ede3b983543299dd.js","sourcesContent":["<template>\r\n <div class=\"task-container\">\r\n <div class=\"task-panel\">\r\n <h2>{{task.name}}</h2>\r\n <p>发布者:{{task.creator}}</p>\r\n <p>发布时间:{{task.date}}</p>\r\n <el-divider></el-divider>\r\n <h2>选择分片</h2>\r\n <pieces-table :task-id=\"task.id\" showSelection></pieces-table>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport PiecesTable from './PiecesTable'\r\n\r\nexport default {\r\n name: 'task',\r\n components: {\r\n PiecesTable\r\n },\r\n data () {\r\n return {\r\n task: null\r\n }\r\n },\r\n beforeMount () {\r\n this.task = JSON.parse(decodeURIComponent(this.$route.params.task))\r\n },\r\n methods: {\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n@import '@/assets/scss/config.scss';\r\n@import '@/assets/scss/mixin.scss';\r\n.task-container{\r\n @include container;\r\n .task-panel{\r\n @include whiteBoard;\r\n text-align: left;\r\n padding: 30px 20px 30px 20px;\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/Task.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"task-container\"},[_c('div',{staticClass:\"task-panel\"},[_c('h2',[_vm._v(_vm._s(_vm.task.name))]),_vm._v(\" \"),_c('p',[_vm._v(\"发布者:\"+_vm._s(_vm.task.creator))]),_vm._v(\" \"),_c('p',[_vm._v(\"发布时间:\"+_vm._s(_vm.task.date))]),_vm._v(\" \"),_c('el-divider'),_vm._v(\" \"),_c('h2',[_vm._v(\"选择分片\")]),_vm._v(\" \"),_c('pieces-table',{attrs:{\"task-id\":_vm.task.id,\"showSelection\":\"\"}})],1)])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-0add3a96\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/Task.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-0add3a96\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./Task.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./Task.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./Task.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-0add3a96\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./Task.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-0add3a96\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/Task.vue\n// module id = null\n// module chunks = "],"sourceRoot":""}
\ No newline at end of file
{"version":3,"sources":["webpack:///src/components/Task.vue","webpack:///./src/components/Task.vue?b598","webpack:///./src/components/Task.vue"],"names":["Task","name","components","PiecesTable","data","task","beforeMount","this","JSON","parse","decodeURIComponent","$route","params","methods","components_Task","render","_vm","_h","$createElement","_c","_self","staticClass","_v","_s","creator","date","attrs","task-id","id","showSelection","staticRenderFns","Component","__webpack_require__","normalizeComponent","ssrContext","__webpack_exports__"],"mappings":"gIAgBAA,GACAC,KAAA,OACAC,YACAC,sBAAA,GAEAC,KALA,WAMA,OACAC,KAAA,OAGAC,YAVA,WAWAC,KAAAF,KAAAG,KAAAC,MAAAC,mBAAAH,KAAAI,OAAAC,OAAAP,QAEAQ,YC1BeC,GADEC,OAFjB,WAA0B,IAAAC,EAAAT,KAAaU,EAAAD,EAAAE,eAA0BC,EAAAH,EAAAI,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,mBAA6BF,EAAA,OAAYE,YAAA,eAAyBF,EAAA,MAAAH,EAAAM,GAAAN,EAAAO,GAAAP,EAAAX,KAAAJ,SAAAe,EAAAM,GAAA,KAAAH,EAAA,KAAAH,EAAAM,GAAA,OAAAN,EAAAO,GAAAP,EAAAX,KAAAmB,YAAAR,EAAAM,GAAA,KAAAH,EAAA,KAAAH,EAAAM,GAAA,QAAAN,EAAAO,GAAAP,EAAAX,KAAAoB,SAAAT,EAAAM,GAAA,KAAAH,EAAA,cAAAH,EAAAM,GAAA,KAAAH,EAAA,MAAAH,EAAAM,GAAA,UAAAN,EAAAM,GAAA,KAAAH,EAAA,gBAAuQO,OAAOC,UAAAX,EAAAX,KAAAuB,GAAAC,cAAA,OAA0C,MAEndC,oBCCjB,IAcAC,EAdyBC,EAAQ,OAcjCC,CACEjC,EACAc,GATF,EAVA,SAAAoB,GACEF,EAAQ,SAaV,kBAEA,MAUeG,EAAA,QAAAJ,EAAiB","file":"static/js/0.8c2f1d30832f2082fc29.js","sourcesContent":["<template>\r\n <div class=\"task-container\">\r\n <div class=\"task-panel\">\r\n <h2>{{task.name}}</h2>\r\n <p>发布者:{{task.creator}}</p>\r\n <p>发布时间:{{task.date}}</p>\r\n <el-divider></el-divider>\r\n <h2>选择分片</h2>\r\n <pieces-table :task-id=\"task.id\" showSelection></pieces-table>\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport PiecesTable from './PiecesTable'\r\n\r\nexport default {\r\n name: 'task',\r\n components: {\r\n PiecesTable\r\n },\r\n data () {\r\n return {\r\n task: null\r\n }\r\n },\r\n beforeMount () {\r\n this.task = JSON.parse(decodeURIComponent(this.$route.params.task))\r\n },\r\n methods: {\r\n }\r\n}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n@import '@/assets/scss/config.scss';\r\n@import '@/assets/scss/mixin.scss';\r\n.task-container{\r\n @include container;\r\n .task-panel{\r\n @include whiteBoard;\r\n text-align: left;\r\n padding: 30px 20px 30px 20px;\r\n }\r\n}\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/components/Task.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"task-container\"},[_c('div',{staticClass:\"task-panel\"},[_c('h2',[_vm._v(_vm._s(_vm.task.name))]),_vm._v(\" \"),_c('p',[_vm._v(\"发布者:\"+_vm._s(_vm.task.creator))]),_vm._v(\" \"),_c('p',[_vm._v(\"发布时间:\"+_vm._s(_vm.task.date))]),_vm._v(\" \"),_c('el-divider'),_vm._v(\" \"),_c('h2',[_vm._v(\"选择分片\")]),_vm._v(\" \"),_c('pieces-table',{attrs:{\"task-id\":_vm.task.id,\"showSelection\":\"\"}})],1)])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/_vue-loader@13.7.3@vue-loader/lib/template-compiler?{\"id\":\"data-v-0add3a96\",\"hasScoped\":true,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/_vue-loader@13.7.3@vue-loader/lib/selector.js?type=template&index=0!./src/components/Task.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/_extract-text-webpack-plugin@3.0.2@extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-0add3a96\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!sass-loader?{\\\"sourceMap\\\":true}!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/selector?type=styles&index=0!./Task.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/selector?type=script&index=0!./Task.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/selector?type=script&index=0!./Task.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-0add3a96\\\",\\\"hasScoped\\\":true,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/_vue-loader@13.7.3@vue-loader/lib/selector?type=template&index=0!./Task.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-0add3a96\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/components/Task.vue\n// module id = null\n// module chunks = "],"sourceRoot":""}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,i){for(var u,a,f,s=0,l=[];s<r.length;s++)a=r[s],t[a]&&l.push(t[a][0]),t[a]=0;for(u in c)Object.prototype.hasOwnProperty.call(c,u)&&(e[u]=c[u]);for(n&&n(r,c,i);l.length;)l.shift()();if(i)for(s=0;s<i.length;s++)f=o(o.s=i[s]);return f};var r={},t={3:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var c=document.getElementsByTagName("head")[0],i=document.createElement("script");i.type="text/javascript",i.charset="utf-8",i.async=!0,i.timeout=12e4,o.nc&&i.setAttribute("nonce",o.nc),i.src=o.p+"static/js/"+e+"."+{0:"24d8ede3b983543299dd"}[e]+".js";var u=setTimeout(a,12e4);function a(){i.onerror=i.onload=null,clearTimeout(u);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return i.onerror=i.onload=a,c.appendChild(i),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.6d5ea4e298b6b93e1f3e.js.map
\ No newline at end of file
!function(e){var n=window.webpackJsonp;window.webpackJsonp=function(r,c,i){for(var u,a,f,s=0,l=[];s<r.length;s++)a=r[s],t[a]&&l.push(t[a][0]),t[a]=0;for(u in c)Object.prototype.hasOwnProperty.call(c,u)&&(e[u]=c[u]);for(n&&n(r,c,i);l.length;)l.shift()();if(i)for(s=0;s<i.length;s++)f=o(o.s=i[s]);return f};var r={},t={3:0};function o(n){if(r[n])return r[n].exports;var t=r[n]={i:n,l:!1,exports:{}};return e[n].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.e=function(e){var n=t[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var r=new Promise(function(r,o){n=t[e]=[r,o]});n[2]=r;var c=document.getElementsByTagName("head")[0],i=document.createElement("script");i.type="text/javascript",i.charset="utf-8",i.async=!0,i.timeout=12e4,o.nc&&i.setAttribute("nonce",o.nc),i.src=o.p+"static/js/"+e+"."+{0:"8c2f1d30832f2082fc29"}[e]+".js";var u=setTimeout(a,12e4);function a(){i.onerror=i.onload=null,clearTimeout(u);var n=t[e];0!==n&&(n&&n[1](new Error("Loading chunk "+e+" failed.")),t[e]=void 0)}return i.onerror=i.onload=a,c.appendChild(i),r},o.m=e,o.c=r,o.d=function(e,n,r){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},o.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(n,"a",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p="./",o.oe=function(e){throw console.error(e),e}}([]);
//# sourceMappingURL=manifest.fa7c8e7da99dc0e27dc8.js.map
\ No newline at end of file
{"version":3,"sources":["webpack:///webpack/bootstrap 2fd1e5fe1e6245562b91"],"names":["parentJsonpFunction","window","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","3","exports","module","l","e","installedChunkData","Promise","resolve","promise","reject","head","document","getElementsByTagName","script","createElement","type","charset","async","timeout","nc","setAttribute","src","p","0","setTimeout","onScriptComplete","onerror","onload","clearTimeout","chunk","Error","undefined","appendChild","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAA,SAAApB,GACA,IAAAqB,EAAAhB,EAAAL,GACA,OAAAqB,EACA,WAAAC,QAAA,SAAAC,GAA0CA,MAI1C,GAAAF,EACA,OAAAA,EAAA,GAIA,IAAAG,EAAA,IAAAF,QAAA,SAAAC,EAAAE,GACAJ,EAAAhB,EAAAL,IAAAuB,EAAAE,KAEAJ,EAAA,GAAAG,EAGA,IAAAE,EAAAC,SAAAC,qBAAA,WACAC,EAAAF,SAAAG,cAAA,UACAD,EAAAE,KAAA,kBACAF,EAAAG,QAAA,QACAH,EAAAI,OAAA,EACAJ,EAAAK,QAAA,KAEArB,EAAAsB,IACAN,EAAAO,aAAA,QAAAvB,EAAAsB,IAEAN,EAAAQ,IAAAxB,EAAAyB,EAAA,aAAAtC,EAAA,KAAwEuC,EAAA,wBAA2BvC,GAAA,MACnG,IAAAkC,EAAAM,WAAAC,EAAA,MAEA,SAAAA,IAEAZ,EAAAa,QAAAb,EAAAc,OAAA,KACAC,aAAAV,GACA,IAAAW,EAAAxC,EAAAL,GACA,IAAA6C,IACAA,GACAA,EAAA,OAAAC,MAAA,iBAAA9C,EAAA,aAEAK,EAAAL,QAAA+C,GAKA,OAfAlB,EAAAa,QAAAb,EAAAc,OAAAF,EAaAf,EAAAsB,YAAAnB,GAEAL,GAIAX,EAAAoC,EAAAtC,EAGAE,EAAAqC,EAAAnC,EAGAF,EAAAsC,EAAA,SAAAlC,EAAAmC,EAAAC,GACAxC,EAAAyC,EAAArC,EAAAmC,IACA7C,OAAAgD,eAAAtC,EAAAmC,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMAxC,EAAA8C,EAAA,SAAAzC,GACA,IAAAmC,EAAAnC,KAAA0C,WACA,WAA2B,OAAA1C,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAsC,EAAAE,EAAA,IAAAA,GACAA,GAIAxC,EAAAyC,EAAA,SAAAO,EAAAC,GAAsD,OAAAvD,OAAAC,UAAAC,eAAAC,KAAAmD,EAAAC,IAGtDjD,EAAAyB,EAAA,KAGAzB,EAAAkD,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"static/js/manifest.6d5ea4e298b6b93e1f3e.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = window[\"webpackJsonp\"];\n \twindow[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t3: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData === 0) {\n \t\t\treturn new Promise(function(resolve) { resolve(); });\n \t\t}\n\n \t\t// a Promise means \"currently loading\".\n \t\tif(installedChunkData) {\n \t\t\treturn installedChunkData[2];\n \t\t}\n\n \t\t// setup Promise in chunk cache\n \t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t});\n \t\tinstalledChunkData[2] = promise;\n\n \t\t// start chunk loading\n \t\tvar head = document.getElementsByTagName('head')[0];\n \t\tvar script = document.createElement('script');\n \t\tscript.type = \"text/javascript\";\n \t\tscript.charset = 'utf-8';\n \t\tscript.async = true;\n \t\tscript.timeout = 120000;\n\n \t\tif (__webpack_require__.nc) {\n \t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t}\n \t\tscript.src = __webpack_require__.p + \"static/js/\" + chunkId + \".\" + {\"0\":\"24d8ede3b983543299dd\"}[chunkId] + \".js\";\n \t\tvar timeout = setTimeout(onScriptComplete, 120000);\n \t\tscript.onerror = script.onload = onScriptComplete;\n \t\tfunction onScriptComplete() {\n \t\t\t// avoid mem leaks in IE.\n \t\t\tscript.onerror = script.onload = null;\n \t\t\tclearTimeout(timeout);\n \t\t\tvar chunk = installedChunks[chunkId];\n \t\t\tif(chunk !== 0) {\n \t\t\t\tif(chunk) {\n \t\t\t\t\tchunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));\n \t\t\t\t}\n \t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t}\n \t\t};\n \t\thead.appendChild(script);\n\n \t\treturn promise;\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"./\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 2fd1e5fe1e6245562b91"],"sourceRoot":""}
\ No newline at end of file
{"version":3,"sources":["webpack:///webpack/bootstrap b0ec4b1d37275c4c693b"],"names":["parentJsonpFunction","window","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","3","exports","module","l","e","installedChunkData","Promise","resolve","promise","reject","head","document","getElementsByTagName","script","createElement","type","charset","async","timeout","nc","setAttribute","src","p","0","setTimeout","onScriptComplete","onerror","onload","clearTimeout","chunk","Error","undefined","appendChild","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAA,SAAApB,GACA,IAAAqB,EAAAhB,EAAAL,GACA,OAAAqB,EACA,WAAAC,QAAA,SAAAC,GAA0CA,MAI1C,GAAAF,EACA,OAAAA,EAAA,GAIA,IAAAG,EAAA,IAAAF,QAAA,SAAAC,EAAAE,GACAJ,EAAAhB,EAAAL,IAAAuB,EAAAE,KAEAJ,EAAA,GAAAG,EAGA,IAAAE,EAAAC,SAAAC,qBAAA,WACAC,EAAAF,SAAAG,cAAA,UACAD,EAAAE,KAAA,kBACAF,EAAAG,QAAA,QACAH,EAAAI,OAAA,EACAJ,EAAAK,QAAA,KAEArB,EAAAsB,IACAN,EAAAO,aAAA,QAAAvB,EAAAsB,IAEAN,EAAAQ,IAAAxB,EAAAyB,EAAA,aAAAtC,EAAA,KAAwEuC,EAAA,wBAA2BvC,GAAA,MACnG,IAAAkC,EAAAM,WAAAC,EAAA,MAEA,SAAAA,IAEAZ,EAAAa,QAAAb,EAAAc,OAAA,KACAC,aAAAV,GACA,IAAAW,EAAAxC,EAAAL,GACA,IAAA6C,IACAA,GACAA,EAAA,OAAAC,MAAA,iBAAA9C,EAAA,aAEAK,EAAAL,QAAA+C,GAKA,OAfAlB,EAAAa,QAAAb,EAAAc,OAAAF,EAaAf,EAAAsB,YAAAnB,GAEAL,GAIAX,EAAAoC,EAAAtC,EAGAE,EAAAqC,EAAAnC,EAGAF,EAAAsC,EAAA,SAAAlC,EAAAmC,EAAAC,GACAxC,EAAAyC,EAAArC,EAAAmC,IACA7C,OAAAgD,eAAAtC,EAAAmC,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMAxC,EAAA8C,EAAA,SAAAzC,GACA,IAAAmC,EAAAnC,KAAA0C,WACA,WAA2B,OAAA1C,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAsC,EAAAE,EAAA,IAAAA,GACAA,GAIAxC,EAAAyC,EAAA,SAAAO,EAAAC,GAAsD,OAAAvD,OAAAC,UAAAC,eAAAC,KAAAmD,EAAAC,IAGtDjD,EAAAyB,EAAA,KAGAzB,EAAAkD,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"static/js/manifest.fa7c8e7da99dc0e27dc8.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = window[\"webpackJsonp\"];\n \twindow[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t3: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData === 0) {\n \t\t\treturn new Promise(function(resolve) { resolve(); });\n \t\t}\n\n \t\t// a Promise means \"currently loading\".\n \t\tif(installedChunkData) {\n \t\t\treturn installedChunkData[2];\n \t\t}\n\n \t\t// setup Promise in chunk cache\n \t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t});\n \t\tinstalledChunkData[2] = promise;\n\n \t\t// start chunk loading\n \t\tvar head = document.getElementsByTagName('head')[0];\n \t\tvar script = document.createElement('script');\n \t\tscript.type = \"text/javascript\";\n \t\tscript.charset = 'utf-8';\n \t\tscript.async = true;\n \t\tscript.timeout = 120000;\n\n \t\tif (__webpack_require__.nc) {\n \t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t}\n \t\tscript.src = __webpack_require__.p + \"static/js/\" + chunkId + \".\" + {\"0\":\"8c2f1d30832f2082fc29\"}[chunkId] + \".js\";\n \t\tvar timeout = setTimeout(onScriptComplete, 120000);\n \t\tscript.onerror = script.onload = onScriptComplete;\n \t\tfunction onScriptComplete() {\n \t\t\t// avoid mem leaks in IE.\n \t\t\tscript.onerror = script.onload = null;\n \t\t\tclearTimeout(timeout);\n \t\t\tvar chunk = installedChunks[chunkId];\n \t\t\tif(chunk !== 0) {\n \t\t\t\tif(chunk) {\n \t\t\t\t\tchunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));\n \t\t\t\t}\n \t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t}\n \t\t};\n \t\thead.appendChild(script);\n\n \t\treturn promise;\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"./\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap b0ec4b1d37275c4c693b"],"sourceRoot":""}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>daplatform</title><link href=./static/css/app.84465c48e2cac5f8476ed05be74cc276.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.6d5ea4e298b6b93e1f3e.js></script><script type=text/javascript src=./static/js/vendor.86758adb277d44158237.js></script><script type=text/javascript src=./static/js/app.6f07547f4285beb9fd6b.js></script></body></html><script src="//webapi.amap.com/maps?v=2.0&key=fd28dc34eb931d82a25869cd127005d5&plugin=AMap.MouseTool,AMap.ToolBar"></script>
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>daplatform</title><link href=./static/css/app.e50e47f565b7ee297f8270890dad8c18.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.fa7c8e7da99dc0e27dc8.js></script><script type=text/javascript src=./static/js/vendor.d14d3aa5c99b107d845e.js></script><script type=text/javascript src=./static/js/app.89ee16514b6ef485d332.js></script></body></html><script src="//webapi.amap.com/maps?v=2.0&key=fd28dc34eb931d82a25869cd127005d5&plugin=AMap.MouseTool,AMap.ToolBar"></script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment