123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <template>
- <div class="excelHtnl">
- <div
- class="header"
- style=" position: absolute;left:10px;top:0"
- >
- <div class="flexStar">
- <h2>编辑WBS库</h2>
- <div
- class="GoBack marleft20"
- @click="GoBack()"
- >
- 返回上一级
- </div>
- </div>
- <div style="width: 37%;">
- <avue-tabs :option="option" @change="handleChange"></avue-tabs>
- </div>
- </div>
- <div
- class="excelBox"
- style="margin-top:40px;height: 100%;"
- >
- <div
- style="width:60%;height: 100%;overflow: scroll;"
- class='parent'
- id='parent'
- ></div>
- <div class="excelRight" style="width:30%;margin-left:4%;height: 100%;overflow: scroll;" >
- <span v-if="type.prop==='tab1'">
- <setInputTPT
- v-if="type.prop==='tab1'"
- :pkeyId='pkeyId'
- @cop='domss'
- :htmlData="htmlData"
- />
- </span>
- <span v-else-if="type.prop==='tab2'"> <electronicSignature :pkeyId1='pkeyId' :htmlData1="htmlData" /> </span>
- <span v-else-if="type.prop==='tab3'"> <setFormula :pkeyId1='pkeyId' :htmlData1="htmlData" /> </span>
- <span v-else-if="type.prop==='tab4'"> <editDefault :pkeyId1='pkeyId' :htmlData1="htmlData" /> </span>
- <span v-else-if="type.prop==='tab5'"> <promptSettings :pkeyId1='pkeyId' :htmlData1="htmlData" /> </span>
- </div>
- </div>
- </div>
- </template>
- <script>
- import setInputTPT from './template/setInputTPT.vue'
- import electronicSignature from './template/electronicSignature.vue'
- import setFormula from './template/setFormula.vue'
- import editDefault from './template/editDefault.vue'
- import promptSettings from './template/promptSettings.vue'
- import Vue from 'vue'
- // import dictVue from '../../../system/dict.vue'
- export default {
- props: ['pkeyId'],
- data () {
- return {
- setUptype: 0,//右侧显示的类型1
- htmlData: {
- name: '',
- tr: '',
- td: ''
- },
- type:{},
- option:{
- column: [{
- label: '设置输入框',
- prop: 'tab1',
- width: 10,
- }, {
- label: '电签位置配置',
- prop: 'tab2',
- }, {
- label: '设置公式开放条件',
- prop: 'tab3',
- }, {
- label: '编辑默认信息',
- prop: 'tab4',
- }, {
- label: '提示设置',
- prop: 'tab5',
- }
- ]
- }
- }
- },
- mounted () {
- this.cop()
- this.type = this.option.column[0];
- },
- methods: {
- GoBack () {//返回上一级
- this.$emit('remove')
- },
- handleChange(column) {
- this.type = column;
- },
- async cop () {
- let _that = this
- console.log("11")
- var MyComponent = await Vue.extend({
- template: localStorage.getItem('excelHtml'),
- data () {
- return {
- formData: {},
- getTokenHeader: {}
- }
- },
- methods: {
- getInformation (name, tr, td) {//鼠标右键事件
- _that.getInformation(name, tr, td)
- },
- formUploadSuccess(){},
- formUploadExceed(){},
- formUploadLoading(){},
- delTableFormFile(){},
- formUploadError(){},
- uploadprogress(){}
- }
- })
- var component = new MyComponent().$mount()
- document.getElementById('parent').appendChild(component.$el);
- },
- async copss () {
- let _that = this
- console.log("22")
- var MyComponent = await Vue.extend({
- template: localStorage.getItem('excelHtml'),
- data () {
- return {
- formData: {},
- getTokenHeader: {}
- }
- },
- methods: {
- getInformation (name, tr, td) {//鼠标右键事件
- _that.getInformation(name, tr, td)
- },
- formUploadSuccess(){},
- formUploadExceed(){},
- formUploadLoading(){},
- delTableFormFile(){},
- formUploadError(){},
- uploadprogress(){}
- }
- })
- var component = new MyComponent().$mount()
- let na = document.getElementById('parent')
- na.innerHTML = `<div
- class='parent'
- id='parent'
- ></div>`
- document.getElementById('parent').appendChild(component.$el);
- },
- domss () {
- this.copss()
- },
- getInformation (name, tr, td) {//鼠标点击事件
- this.htmlData = {
- name,
- tr,
- td
- }
- },
- },
- components: {
- setInputTPT,
- electronicSignature,
- setFormula,
- editDefault,
- promptSettings
- }
- }
- </script>
- <style lang="scss" scoped>
- .excelHtnl {
- margin: 0 0 0 10px;
- background-color: #fff;
- box-sizing: border-box;
- padding: 0 20px 100px 20px;
- height: 100%;
- .header {
- border-radius: 4px;
- box-sizing: border-box;
- width: calc(100% - 20px);
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- z-index: 99;
- height: 50px;
- align-items: center;
- .GoBack {
- color: rgba(0, 82, 216, 1);
- text-decoration: underline;
- display: flex;
- align-items: center;
- font-family: SourceHanSansSC;
- cursor: pointer;
- }
- }
- .excelBox {
- margin-top: 10px;
- display: flex;
- justify-content: flex-start;
- .excelRight {
- flex-grow: 1;
- box-sizing: border-box;
- padding: 20px 0px 0px 30px;
- }
- }
- }
- // 设置图片样式
- .hc-upload-table-form {
- position: relative;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .hc-upload-table-form .el-upload {
- position: relative;
- flex: 1;
- height: 100%;
- color: #ccc;
- }
- .hc-upload-table-form .el-upload .hc-table-form-icon {
- font-size: 24px;
- font-weight: 100;
- }
- .hc-upload-table-form .el-upload .hc-table-form-img {
- width: 100%;
- height: 100%;
- }
- </style>
|