kongdeqiang
2023-06-09 b6218e1a65289b9c232408e9ee6247c36258a155
修改前端页面
4个文件已修改
3个文件已删除
214 ■■■■■ 已修改文件
App.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
index.html 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
main.js 159 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
public/words/administratorReturn.docx 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/ticket/index.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/ticket/picture-form.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/ticket/ticket-form.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
App.vue
File was deleted
index.html
File was deleted
main.js
File was deleted
public/words/administratorReturn.docx
Binary files differ
src/components/page/ticket/index.vue
@@ -125,10 +125,11 @@
                  align="center"
                  label="操作">
            <template slot-scope="scope">
              <el-button  type="text" size="small" icon="el-icon-view" @click="addOrUpdateHandle(scope.row.id)">处决书</el-button>
              <el-button  type="text" size="small" icon="el-icon-view" @click="addOrUpdateHandle2(scope.row)">送达回证</el-button>
              <el-button  type="text" size="small" icon="el-icon-document" @click="addOrUpdateHandle(scope.row.id)">处决书</el-button>
              <el-button  type="text" size="small" icon="el-icon-document-checked" @click="addOrUpdateHandle2(scope.row)">送达回证</el-button>
              <el-button  type="text" size="small" icon="el-icon-view" @click="pictureHandle(scope.row)">图像证据</el-button>
              <el-button  type="text" size="small" icon="el-pay6zhifu" @click="jiaofeiHandle(scope.row.id)">现场缴费</el-button>
              <el-button  type="text" size="small" icon="el-icon-delete" @click="onDelete(scope.row.id)">撤销</el-button>
<!--              <el-button  type="text" size="small" icon="el-pay6zhifu" @click="jiaofeiHandle(scope.row.id)">现场缴费</el-button>-->
            </template>
          </el-table-column>
        </el-table>
@@ -235,7 +236,7 @@
        if(row.personName != null){
          this.addOrUpdateVisible2 = true
          this.$nextTick(() => {
            this.$refs.addOrUpdate2.init(id)
            this.$refs.addOrUpdate2.init(row.id)
          })
        }else {
          this.$message.error("处决书还未填写!")
@@ -252,6 +253,13 @@
            }
        })
      },
      //删除
      onDelete(id) {
        this.$byutil.deleteData(this,this.$systemconfig.basePath+'/ffzf/ticket/delete',{id:id}, res => {
          this.$message({message: '撤销成功', type: 'success'});
          this.getDataList();
        })
      },
    }
  }
</script>
src/components/page/ticket/picture-form.vue
@@ -37,7 +37,7 @@
                this.visible = true
                this.pictureList = data.map((item,index) => {
                    return {
                        url: '/ffzf/fileinfo/showImg/'+item,
                        url: this.$systemconfig.basePath+'/ffzf/fileInfo/showImg?path='+item,
                        title: item,
                        preview:'1',
                        //larg: require('@/assets/img/enlarge.png')
src/components/page/ticket/ticket-form.vue
@@ -174,9 +174,9 @@
          if (valid) {
            this.loadingSubmit = true;
            if (this.dataForm.id) {
              this.$byutil.postData(this, this.$systemconfig.basePath + '/ffzf/ticket/updateById', this.formData, res => {
              this.$byutil.postData(this, this.$systemconfig.basePath + '/ffzf/ticket/updateById', this.dataForm, res => {
                if (res.code === 0) {
                  this.$notify.success('修改成功')
                  this.$message.success('修改成功')
                  this.visible = false
                  this.loadingSubmit = false;
                  this.$emit('refreshDataList')