123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- <template>
- <div>
- <div class="dianqian">
- <el-row :span="24">
- <el-col :span="3.3" style="line-height: 40px">
- 元素坐标:
- </el-col>
- <el-col :span="18">
- <avue-input v-model="htmlData1.name" placeholder="请点击坐标" :disabled='true' ></avue-input>
- </el-col>
- </el-row>
- <el-row :span="24">
- <el-col :span="3.3" style="line-height: 40px">
- 证书类型:
- </el-col>
- <el-col :span="18">
- <el-select v-model="signType" placeholder="请选择证书类型" @change="signTypeChang()">
- <el-option v-for="item in seloptions" :label="item.label" :value="item.value" :key="item.value"></el-option>
- </el-select>
- </el-col>
- </el-row>
- <el-row :span="24" v-if="signType==2">
- <el-col :span="3.3">
- 所属方:
- </el-col>
- <el-col :span="18">
- <avue-radio v-model="radio" :dic="roleType" v-on:click="roleTypeChang()"></avue-radio>
- </el-col>
- </el-row>
- <el-row :span="24" v-if="signType==2">
- <el-col :span="3.3" style="line-height: 40px">
- 签字角色:
- </el-col>
- <el-col :span="18">
- <el-select v-model="roleInfo" placeholder="请选择签字岗位" filterable @change="changeRole">
- <el-option v-for="item in options" :key="item" :value="item" :label="item.label" ></el-option>
- </el-select>
- </el-col>
- </el-row>
- <el-row :span="24" v-if="signType==6">
- <el-col :span="3.3" style="line-height: 40px">
- 签章类型:
- </el-col>
- <el-col :span="18">
- <el-select v-model="signInfo" placeholder="请选择签章类型" @change="signInfoChang">
- <el-option v-for="item in options" :key="item.dictKey" :value="item.dictKey" :label="item.dictValue"></el-option>
- </el-select>
- </el-col>
- </el-row>
- <el-row :span="24">
- <el-col :span="3.3" style="line-height: 40px">
- 偏移位X:
- </el-col>
- <el-col :span="16">
-
- <avue-input v-model="pyzbx" placeholder="横坐标,负代表左移,正代表右移,偏移量50大概等于一厘米" type="number"></avue-input>
-
- </el-col>
- </el-row>
- <el-row :span="24">
- <el-col :span="3.3" style="line-height: 40px">
- 偏移位Y:
- </el-col>
- <el-col :span="16">
-
- <avue-input v-model="pyzby" placeholder="纵坐标,负代表下移,正代表上移,偏移量50大概等于一厘米" type="number"></avue-input>
-
- </el-col>
- </el-row>
- <el-row :span="24" style="text-align: center">
- <el-button type="primary"
- size="small"
- icon="el-icon-circle-plus-outline"
- @click="addRoleInfo()">添加列表</el-button>
- </el-row>
- </div>
- <div
- style="border: 1px dotted rgb(187, 187, 187);box-sizing: border-box;padding: 0px 15px;"
- class="martop20 marbottom10"
- >
- <table @click
- class="table martop20 copyTable"
- width='100%'
- border='1px '
- bordercolor="#E5E5E5"
- cellpadding='2px'
- >
- <thead
- cellpadding='2px'
- height='40px'
- >
- <tr>
- <th width='30%'>元素位置</th>
- <th width='30%'>签字岗位</th>
- <th width='10%'>偏移x</th>
- <th width='10%'>偏移y</th>
- <th width='20%'>操作</th>
- </tr>
- </thead>
- <tbody height='36px'>
- <tr v-for="(item,key) in setsignaTable" :key="key" v-on:click="">
- <td>{{item.colName}}</td>
- <td>{{item.sigRoleName}}</td>
- <td>{{item.pyzbx}}</td>
- <td>{{item.pyzby}}</td>
- <td align="center">
- <span style="color:#409EFF;;cursor: pointer;margin-right: 5px;" @click="editClick(item)" v-if="item.show===false">编辑</span>
- <span style="color:green;;cursor: pointer;margin-right: 5px;" @click="saveClick(item)" v-else v-loading="isEditLoaing">保存</span>
-
- <span style="color:red;cursor: pointer;" v-on:click="deleteTableSig(key,item.id,item)">删除</span>
-
- </td>
- </tr>
- </tbody>
- </table>
- <el-button type="primary"
- size="small"
- class="martop25"
- style="float:right;"
- icon="el-icon-circle-plus-outline"
- :loading="saveLoaing"
- @click="saveSingInfo()">保存入库</el-button>
- </div>
- </div>
- </template>
- <script>
- import {getRoleInfoByParentId, getRoleType, getSigList, saveSig,remove,updateDetail,getSignDetail} from "../../../../../api/manager/AdjustForm";
- import {findPfxType} from "../../../../../api/certificate/list";
- export default {
- props: ['pkeyId1', 'htmlData1','excelId'],
- data () {
- return {
- radio: '',
- roleType:[],
- options: [],
- roleInfo: '',
- signInfo: '',
- signInfoarr:[],
- signType: '2', // 证书类型
- pyzbx: 0.0,
- pyzby: 0.0 ,
- setsignaTable:[],
- seloptions : [
- {
- value: '2',
- label: '个人证书',
- },
- {
- value: '6',
- label: '企业证书',
- }
- ],
- isCansave:false,
- colKey:'',
- colName:'',
- signId:'',
- isDeleted:'',
- parentRoleId:'',
- isEditLoaing:false,
- sigRoleName:'',
- saveLoaing:false
-
- }
- },
- watch: {
- 'htmlData1': {
- handler(val) {
- console.log(val,'val');
-
- setTimeout(async() => {
-
- if(val.obj){
- let obj=val.obj
- console.log(obj,'obj');
- this.signType=obj.type.toString()
- this.pyzbx=obj.pyzbx
- this.pyzby=obj.pyzby
- this.sigRoleId=obj.sigRoleId
- this.colKey=obj.colKey
-
- this.colName=obj.colName
- this.signId=obj.id
- this.isDeleted=obj.isDeleted
- if(obj.type==2){
- this.radio=obj.parentRoleId
- await this.roleTypeChang()
-
- }else{
- this.radio=''
- await this.signTypeChang()
- this.signInfo=obj.sigRoleId
- this.options.forEach((ele)=>{
- if(ele.dictKey=== this.signInfo){
- this.sigRoleName=ele.dictValue
- }
- })
-
- }
- }else{
- let isEdit= this.setsignaTable.some(element => element.show === true);
- if(!isEdit){
- this.radio=''
- this.roleInfo=''
- this.signInfo=''
- this.signType=''
- this.pyzbx=0
- this.pyzby=0
- }
-
- this.colKey=val.keyname
- }
- }, 1000);
-
-
- // todo
- },
- deep: true
- },
- 'options':{
- handler(val){
- if(this.sigRoleId&&val.length>0&&this.radio.length>1){
- this.options.forEach((ele)=>{
- if(ele.value===this.sigRoleId){
- this.roleInfo=ele
- }
- })
- }
-
- }
- }
- },
- methods: {
- async getRoleType () {//获取角色类型
- const { data: res } = await getRoleType()
- if (res.code === 200) {
- this.roleType = res.data
- }
- },
- // 签证类型
- async signTypeChang(){
- setTimeout(async () => {
- if(this.signType==6){
- const {data: res} = await findPfxType({ typeOrStatus: 'pfx_type'})
- if (res.code === 200) {
- this.options = res.data
- }
- }
- }, 200);
- },
- // 单选按钮改变事件
- async roleTypeChang(){
- setTimeout(async () => {
- const {data: res} = await getRoleInfoByParentId({ParentId: this.radio})
- if (res.code === 200) {
- this.options = res.data
- }
- }, 200);
- },
- //签章类型改变e
- signInfoChang(e){
- console.log(e,'e');
- this.signInfoarr= this.options.filter(item=>{
- if(item.dictKey===e){
- return item
- }
- })
- this.options.forEach((ele)=>{
- if(ele.dictKey=== this.signInfo){
- this.sigRoleName=ele.dictValue
- }
- })
- },
- //角色改变
- changeRole(e){
- this.sigRoleName=e.label
- this.sigRoleId=e.value
-
- },
- async addRoleInfo(){
- var isadd = true;
- // 集合中添加数据
- var data = {};
- // 坐标位置
- if(this.htmlData1.name ===''){
- this.$message({
- type: "error",
- message: "请选坐标位置"
- });
- return;
- }
- // 证书类型
- if(this.signType===''){
- this.$message({
- type: "error",
- message: "请选择证书类型"
- });
- return;
- }
- if (this.signType==2){
- if(this.roleInfo ==='') {
- this.$message({
- type: "error",
- message: "请选择签字岗位"
- });
- return;
- }
- data.sigRoleId = this.roleInfo.value;
- data.sigRoleName = this.roleInfo.label;
- data.type=2;
- }else if(this.signType==6){
- if(this.signInfo ===''){
- this.$message({
- type: "error",
- message: "请选择签章类型"
- });
- return;
- }
- // data.sigRoleId = this.signInfo.dictKey;
- // data.sigRoleName = this.signInfo.dictValue;
- data.sigRoleId = this.signInfoarr[0].dictKey;
- data.sigRoleName = this.signInfoarr[0].dictValue;
- data.type=6;
- }
- console.log(this.htmlData1,'this.htmlData11111');
- data.colKey="__"+this.htmlData1.tr+"_"+this.htmlData1.td;
- data.tabId = this.pkeyId1;
- data.colName= this.htmlData1.name;
- data.pyzbx = this.pyzbx;
- data.pyzby = this.pyzby;
- try {
- this.setsignaTable.forEach(val => {
- if(val.colName == this.htmlData1.name){ // 位置只能添加一个
- this.$message({
- type: "error",
- message: "位置只能配置一个电签"
- });
- isadd = false;
- throw new Error('位置只能配置一个电签')
- }
- if(val.colName === this.htmlData1.name && val.sigRoleId === this.roleInfo.value){
- this.$message({
- type: "error",
- message: "数据已添加列表中"
- });
- isadd = false;
- throw new Error('位置只能配置一个电签');
- }
- })
- if(isadd){
- data.show=false
- data.colKey=this.htmlData1.keyname
- this.setsignaTable.push(data);
- }
- }catch (e){
- throw e;
- }
- },
- async editClick (item){
- console.log(item,'item');
-
- this.setsignaTable.forEach((ele)=>{
- ele.show=false
- })
- item.show=true
- console.log(this.htmlData1,'htmlData1');
- const {data: res} = await getSignDetail({id: item.id})
- if(res.code===200){
- console.log(res,'res');
- this.htmlData1.obj=res.data
- let obj=this.htmlData1.obj
- console.log(obj,'opbj');
- if(obj){
- console.log(obj,'obj');
- this.htmlData1.name=obj.colName;
- this.signType=obj.type.toString()
- this.pyzbx=obj.pyzbx
- this.pyzby=obj.pyzby
- this.sigRoleId=obj.sigRoleId
- this.sigRoleName=obj.sigRoleName
- this.colKey=obj.colKey
-
- this.colName=obj.colName
- this.signId=obj.id
- this.isDeleted=obj.isDeleted
- if(obj.type==2){
- this.radio=obj.parentRoleId
- await this.roleTypeChang()
-
- }else{
- this.radio=''
- await this.signTypeChang()
- this.signInfo=obj.sigRoleId
- this.options.forEach((ele)=>{
- if(ele.dictKey=== this.signInfo){
- this.sigRoleName=ele.dictValue
- }
- })
-
-
- }
- }else{
- this.radio=''
- this.roleInfo=''
- this.signInfo=''
- this.signType=''
- this.pyzbx=0
- this.pyzby=0
- }
-
- }
- console.log( this.htmlData1,' this.htmlData1111');
-
- },
- saveClick(item){
- console.log('保存');
- this.editRoleInfo(item)
-
-
- },
- async editRoleInfo(){
- let obj={}
- obj.colKey=this.colKey
- obj.colName=this.colName
- obj.sigRoleName=this.sigRoleName
- obj.tabId=this.pkeyId1
- obj.excelId=this.excelId
- obj.type=this.signType
- obj.pyzbx=this.pyzbx
- obj.pyzby=this.pyzby
- obj.id=this.signId
- obj.isDeleted=this.isDeleted
- if(this.signType==2){
- obj.parentRoleId=this.radio
- obj.sigRoleId=this.sigRoleId
-
- }else{
- obj.sigRoleId=this.signInfo
- }
- let arr=this.setsignaTable
- arr.forEach((ele)=>{
- if(obj.id==ele.id){
- ele.colKey=this.colKey
- ele.excelId=obj.excelId
- ele.pyzbx=obj.pyzbx
- ele.pyzby=obj.pyzby
- ele.sigRoleId=obj.sigRoleId
- ele.sigRoleName=obj.sigRoleName
- ele.type=obj.type
- ele.tabId=obj.tabId
- ele.show=false
- ele.colName=this.htmlData1.name
-
- }
- })
- this.$nextTick(()=>{
- this.setsignaTable=arr
- })
- this.$forceUpdate()
- console.log(this.setsignaTable,'this.setsignaTable');
- // this.saveSingInfo()
-
-
- },
- async deleteTableSig (key,id,item) {//删除数据
- console.log(item,'item');
- this.setsignaTable.splice(key,1);
- this.isCansave=true
- // this.saveSingInfo();
- // const {data: res} = await saveSig({dataInfo: this.setsignaTable,tabId:this.pkeyId1})
- if(id){
- const {data: res} = await remove(id)
- if (res.code === 200) {
- //console.log(this.$parent)
- this.isCansave=false
- this.$parent.getExcelHtml(this.pkeyId1);
- this.getSingInfo()
- this.$message({
- type: "success",
- message: "操作成功"
- });
- }
- }
-
- },
- async saveSingInfo() {
- console.log(this.setsignaTable,'this.setsignaTable');
- if(this.setsignaTable.length===0){
- this.$message.warning('请先选择数据')
- return
- }
- this.saveLoaing=true
- setTimeout(() => {
- this.saveLoaing=false
- }, 1500);
- const {data: res} = await saveSig({dataInfo: this.setsignaTable,tabId:this.pkeyId1})
- if (res.code === 200) {
- //console.log(this.$parent)
- this.$parent.getExcelHtml(this.pkeyId1);
- this.getSingInfo()
- this.$message({
- type: "success",
- message: "操作成功"
- });
- }
-
- },
- async getSingInfo() {
- console.log(this.excelId,'this.excelId1111111');
- const {data: res} = await getSigList(
- {
- current: 0,
- size: 100,
- tabId: this.pkeyId1,
- type:2,
- excelId:this.excelId
- }
- )
- if (res.code === 200) {
- this.setsignaTable = res.data.records;
- this.setsignaTable.forEach((ele)=>{
- ele.show=false
- })
- }
- }
- },
- created () {
- this.getRoleType(); //获取文本类型接口
- this.getSingInfo();
- this.setsignaTable=[];
- console.log(this.htmlData1,'html1');
- },
- }
- </script>
- <style lang="scss" scoped>
- .table {
- margin-top: 20px;
- border-radius: 5px;
- color: #101010;
- font-size: 14px;
- }
- .dianqian{
- width: 90%;
- height: 100%;
- }
- .copyTable td{
- user-select:initial !important;
- }
- </style>
|