index.vue 13.2 KB
Newer Older
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
1 2 3 4 5
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
Marcus's avatar
Marcus committed
6 7
      <el-form-item :label="$t('中文名称')" prop="titleZh">
        <el-input v-model="queryParams.titleZh" :placeholder="$t('请输入中文名称')" clearable @keyup.enter.native="handleQuery"/>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
8
      </el-form-item>
Marcus's avatar
Marcus committed
9 10
      <el-form-item :label="$t('英文名称')" prop="titleEn">
        <el-input v-model="queryParams.titleEn" :placeholder="$t('请输入英文名称')" clearable @keyup.enter.native="handleQuery"/>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
11
      </el-form-item>
Marcus's avatar
Marcus committed
12 13
      <el-form-item :label="$t('货币符号')" prop="fuhao">
        <el-input v-model="queryParams.fuhao" :placeholder="$t('请输入货币符号')" clearable @keyup.enter.native="handleQuery"/>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
14
      </el-form-item>
Marcus's avatar
Marcus committed
15 16
      <el-form-item :label="$t('状态')" prop="status">
        <el-select v-model="queryParams.status" :placeholder="$t('用户状态')" clearable style="width: 240px">
17 18 19
          <el-option v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="dict.label" :value="parseInt(dict.value)"/>
        </el-select>
      </el-form-item>
Marcus's avatar
Marcus committed
20 21
<!--      <el-form-item :label="$t('汇率')" prop="huilv">-->
<!--        <el-input v-model="queryParams.huilv" :placeholder="$t('请输入汇率')" clearable @keyup.enter.native="handleQuery"/>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
22
<!--      </el-form-item>-->
Marcus's avatar
Marcus committed
23 24
<!--      <el-form-item :label="$t('排序')" prop="aorder">-->
<!--        <el-input v-model="queryParams.aorder" :placeholder="$t('请输入排序')" clearable @keyup.enter.native="handleQuery"/>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
25 26
<!--      </el-form-item>-->
<!--      <el-form-item label="" prop="createAt">-->
Marcus's avatar
Marcus committed
27
<!--        <el-input v-model="queryParams.createAt" :placeholder="$t('请输入')" clearable @keyup.enter.native="handleQuery"/>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
28 29
<!--      </el-form-item>-->
<!--      <el-form-item label="" prop="updateAt">-->
Marcus's avatar
Marcus committed
30
<!--        <el-input v-model="queryParams.updateAt" :placeholder="$t('请输入')" clearable @keyup.enter.native="handleQuery"/>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
31
<!--      </el-form-item>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
32
      <el-form-item>
Marcus's avatar
Marcus committed
33 34
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{ $t('搜索') }}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{ $t('重置') }}</el-button>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
35 36 37 38 39 40 41
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
Marcus's avatar
Marcus committed
42
                   v-hasPermi="['ecw:currency:create']">{{ $t('新增') }}</el-button>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
43 44
      </el-col>
      <el-col :span="1.5">
45 46
<!--        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"-->
<!--                   v-hasPermi="['ecw:currency:export']">{{ $t('导出') }}</el-button>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
47 48 49
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>
50
<!--    100外币兑人民币(CNY)汇率表-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
51 52 53
    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
      <el-table-column label="" align="center" prop="id" />
Marcus's avatar
Marcus committed
54 55 56 57
      <el-table-column :label="$t('中文名称')" align="center" prop="titleZh" />
      <el-table-column :label="$t('英文名称')" align="center" prop="titleEn" />
      <el-table-column :label="$t('货币符号')" align="center" prop="fuhao" />
      <el-table-column :label="$t('状态')" align="center" prop="show" >
58 59 60 61
      <template slot-scope="scope">
        <el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)" />
      </template>
      </el-table-column>
62 63
<!--      <el-table-column label="100外币兑人民币汇率" align="center" prop="huilv" />-->
<!--      <el-table-column label="100人民币兑外币汇率" align="center" prop="exchangeToFc" />-->
Marcus's avatar
Marcus committed
64
      <el-table-column :label="$t('排序')" align="center" prop="aorder" />
65 66 67 68 69
<!--      <el-table-column label="" align="center" prop="createAt" width="180">-->
<!--        <template slot-scope="scope">-->
<!--          <span>{{ parseTime(scope.row.createAt) }}</span>-->
<!--        </template>-->
<!--      </el-table-column>-->
Marcus's avatar
Marcus committed
70
      <el-table-column :label="$t('最后更新时间')" align="center" prop="updateAt" width="180">
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
71
        <template slot-scope="scope">
72
          <span>{{ parseTime(scope.row.updateTime) }}</span>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
73 74
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
75
      <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
76 77
        <template slot-scope="scope">
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
Marcus's avatar
Marcus committed
78
                     v-hasPermi="['ecw:currency:update']">{{ $t('修改') }}</el-button>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
79
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
Marcus's avatar
Marcus committed
80
                     v-hasPermi="['ecw:currency:delete']">{{ $t('删除') }}</el-button>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
81 82 83 84 85 86 87 88 89
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
90
      <el-form ref="form" :model="form" :rules="rules" label-width="180px">
Marcus's avatar
Marcus committed
91 92
        <el-form-item :label="$t('中文名称')" prop="titleZh">
          <el-input v-model="form.titleZh" :placeholder="$t('请输入中文名称')" />
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
93
        </el-form-item>
Marcus's avatar
Marcus committed
94 95
        <el-form-item :label="$t('英文名称')" prop="titleEn">
          <el-input v-model="form.titleEn" :placeholder="$t('请输入英文名称')" />
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
96
        </el-form-item>
Marcus's avatar
Marcus committed
97 98
        <el-form-item :label="$t('货币符号')" prop="fuhao">
          <el-input v-model="form.fuhao" :placeholder="$t('请输入货币符号')" />
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
99
        </el-form-item>
Marcus's avatar
Marcus committed
100 101
<!--        <el-form-item :label="$t('状态')" prop="show">-->
<!--          <el-input v-model="form.show" :placeholder="$t('请输入状态')" />-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
102
<!--        </el-form-item>-->
103 104 105 106 107 108
<!--        <el-form-item label="100外币兑人民币汇率" prop="huilv">-->
<!--          <el-input v-model="form.huilv" placeholder="请输入100外币兑人民币汇率" />-->
<!--        </el-form-item>-->
<!--        <el-form-item label="100人民币兑外币汇率" prop="exchangeToFc">-->
<!--          <el-input v-model="form.exchangeToFc" placeholder="请输入100人民币兑外币汇率" />-->
<!--        </el-form-item>-->
109 110 111
        <!-- <el-form-item label="100人民币兑外币汇率" prop="huilv">
          {{ form.huilv ? (10000 / form.huilv).toFixed(6) : ''}}
        </el-form-item> -->
Marcus's avatar
Marcus committed
112 113
        <el-form-item :label="$t('排序')" prop="aorder">
          <el-input v-model="form.aorder" :placeholder="$t('请输入排序')" />
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
114
        </el-form-item>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
115
<!--        <el-form-item label="" prop="createAt">-->
Marcus's avatar
Marcus committed
116
<!--          <el-input v-model="form.createAt" :placeholder="$t('请输入')" />-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
117 118
<!--        </el-form-item>-->
<!--        <el-form-item label="" prop="updateAt">-->
Marcus's avatar
Marcus committed
119
<!--          <el-input v-model="form.updateAt" :placeholder="$t('请输入')" />-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
120
<!--        </el-form-item>-->
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
121 122
      </el-form>
      <div slot="footer" class="dialog-footer">
Marcus's avatar
Marcus committed
123 124
        <el-button type="primary" @click="submitForm">{{ $t('确 定') }}</el-button>
        <el-button @click="cancel">{{ $t('取 消') }}</el-button>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
125 126 127 128 129 130
      </div>
    </el-dialog>
  </div>
</template>

<script>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
131 132 133 134 135 136 137 138 139
import {
  createCurrency,
  updateCurrency,
  deleteCurrency,
  getCurrency,
  getCurrencyPage,
  exportCurrencyExcel,
  updateCurrencyStatus
} from "@/api/ecw/currency";
140 141 142
import {CommonStatusEnum} from "@/utils/constants";
import {changeUserStatus} from "@/api/system/user";
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
143
import {updateBankAccount} from "@/api/ecw/bankAccount";
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

export default {
  name: "Currency",
  components: {
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
        titleZh: null,
        titleEn: null,
        fuhao: null,
172
        status: null,
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
173 174 175 176 177 178 179 180 181
        huilv: null,
        aorder: null,
        createAt: null,
        updateAt: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
182 183 184
           titleZh:{required:true,message:'请输入中文名称',target:'blur'},
           titleEn:{required:true,message:'请输入英文名称',target:'blur'},
           fuhao:{required:true,message:'请输入货币符号  ',target:'blur'},
185 186 187
      },
      statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),

houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    };
  },
  created() {
    this.getList();
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = {...this.queryParams};
      // 执行查询
      getCurrencyPage(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
        titleZh: undefined,
        titleEn: undefined,
        fuhao: undefined,
218
        status: undefined,
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
219
        huilv: undefined,
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
220
        exchangeToFc: undefined,
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
221 222 223 224 225 226 227 228 229 230 231 232 233
        aorder: undefined,
        createAt: undefined,
        updateAt: undefined,
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
邓春圆's avatar
邓春圆 committed
234 235 236 237 238 239 240 241 242 243 244 245
      this.queryParams = {
          pageNo: 1,
          pageSize: 10,
          titleZh: null,
          titleEn: null,
          fuhao: null,
          status: null,
          huilv: null,
          aorder: null,
          createAt: null,
          updateAt: null,
      };
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
246 247 248 249 250 251
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
Marcus's avatar
Marcus committed
252
      this.title = this.$t("添加");
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
253
    },
254 255
    // 用户状态修改
    handleStatusChange(row) {
Marcus's avatar
Marcus committed
256
      let text = row.status === CommonStatusEnum.ENABLE ? this.$t("启用") : this.$t("停用");
257
      this.$modal.confirm('确认要' + text + '"' + row.titleZh + '"吗?').then(function() {
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
258
        // return changeUserStatus(row.id, row.status);
wanglianghe's avatar
wanglianghe committed
259
        return updateCurrencyStatus(row);
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
260

261 262 263 264 265 266 267
      }).then(() => {
        this.$modal.msgSuccess(text + "成功");
      }).catch(function() {
        row.status = row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE
          : CommonStatusEnum.ENABLE;
      });
    },
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
268 269 270 271 272 273 274
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getCurrency(id).then(response => {
        this.form = response.data;
        this.open = true;
Marcus's avatar
Marcus committed
275
        this.title = this.$t("修改");
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateCurrency(this.form).then(response => {
            this.$modal.msgSuccess("修改成功");
            this.open = false;
            this.getList();
          });
          return;
        }
        // 添加的提交
        createCurrency(this.form).then(response => {
          this.$modal.msgSuccess("新增成功");
          this.open = false;
          this.getList();
        });
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm('是否确认删除编号为"' + id + '"的数据项?').then(function() {
          return deleteCurrency(id);
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      let params = {...this.queryParams};
      params.pageNo = undefined;
      params.pageSize = undefined;
      // 执行导出
      this.$modal.confirm('是否确认导出所有数据项?').then(() => {
          this.exportLoading = true;
          return exportCurrencyExcel(params);
        }).then(response => {
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
322
          this.$download.excel(response, '货币单位管理.xls');
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
323 324 325
          this.exportLoading = false;
        }).catch(() => {});
    }
邓春圆's avatar
邓春圆 committed
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
  },
  watch:{
    'queryParams.titleZh':{
       handler(value){
         if(value === ''){
           this.queryParams.titleZh = undefined
         }
       }
    },
    'queryParams.titleEn':{
      handler(value){
        if(value === ''){
          this.queryParams.titleEn = undefined
        }
      },
    },
    'queryParams.fuhao':{
       handler(value){
          if(value === ''){
            this.queryParams.fuhao = undefined
          }
        },
    },
    'queryParams.status':{
      handler(value){
        if(value === ''){
          this.queryParams.status = undefined
        }
      }
    }
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
356 357 358
  }
};
</script>