odc.xiaohui
2023-02-21 7f1956cafa4bbc08e67713e7bfeb1748b9e588b0
2023/2/21
肖辉
修改消息删除错误,添加发布系统
6个文件已修改
25 ■■■■ 已修改文件
src/api/operate/writ.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/disposal/casepool/dispatch/updateUser/uploadResult/components/arrive/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/fivepack/threepack/components/content.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/message/myIndex/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/message/myIndex/update/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/writManager/writ/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/operate/writ.js
@@ -17,4 +17,4 @@
    deleteWrit: (id) => {
        return http.delete('/sccg/writ/delete/' + id);
    },
};
};
src/views/operate/disposal/casepool/dispatch/updateUser/uploadResult/components/arrive/index.vue
@@ -153,7 +153,7 @@
.upImg {
    display: flex;
    overflow: auto;
    .tip {
        position: absolute;
        bottom: 0;
@@ -208,4 +208,4 @@
// ::v-deep .el-form-item__label {
//     color: #4b9bb7;
// }
</style>
</style>
src/views/operate/fivepack/threepack/components/content.vue
@@ -58,6 +58,7 @@
        :data="tableData"
        style="width: 100%"
        :row-class-name="tableRowClassName"
        @selection-change="tableChange"
      >
        <el-table-column type="selection" min-width="5"> </el-table-column>
        <el-table-column prop="storeNumber" label="店铺编号" min-width="10">
@@ -326,6 +327,10 @@
      }
    };
    return {
      tempList: [],
      myIdx: 0,
      all: false,
      unsame: false,
      storeCode: null,
      storeStatus: null,
      options: [
@@ -387,6 +392,11 @@
  },
  methods: {
    // 监听表格选中状态
    tableChange(list) {
      this.tempList = list;
      this.all = list.length === this.tableData.length;
    },
    // 批量删除
    mulDelete(idArr) {
      this.$axios({
src/views/operate/message/myIndex/index.vue
@@ -380,7 +380,7 @@
            line-height: 100px;
            justify-content: space-between;
            align-items: center;
          flex-wrap: wrap;
            .search {
                display: flex;
                justify-content: space-between;
src/views/operate/message/myIndex/update/index.vue
@@ -327,7 +327,7 @@
              );
          }
          }
          if(mystatus==0){
          if(mystatus==0){
            const { body, head, messageType, channelCode } = this.role;
          const params = {
            body,
@@ -367,7 +367,7 @@
              );
          }
          }
        } else {
          this.$message.error({ type: "warning", message: "请检查必填项" });
        }
@@ -388,7 +388,7 @@
        url: "sccg/admin/info?name=" + name,
      }).then((res) => {
        this.role.targetFrom = res.data.userId;
        this.sendUser = res.data.username;
        this.sendUser = res.data.user.username;
      });
    },
src/views/operate/writManager/writ/index.vue
@@ -187,6 +187,7 @@
    },
    handleDelete(row) {
      this.$confirm("确认删除?").then((_) => {
        console.log(row)
        this.deleteWrit(row.baseCaseId).then((res) => {
          this.$message({
            type: "success",