123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <template>
- <div class="pageIndexClass">
- <div class="content">
- <byTable :source="sourceList.data" :pagination="sourceList.pagination" :config="config" :loading="loading" highlight-current-row :action-list="[
- {
- text: '添加账户',
- action: () => openModal('add'),
- },
- ]" @get-list="getList">
- </byTable>
- </div>
- <el-dialog :title="modalType == 'add' ? '添加账户' : '编辑账户'" v-if="dialogVisible" v-model="dialogVisible" width="60%">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit" v-loading="loadingDialog">
- <template #balance>
- <div style="width: 100%">
- <el-button type="primary" @click="clickBalance">添加</el-button>
- <el-table :data="formData.data.accountRemainderList" style="width: 100%; margin-top: 16px">
- <el-table-column label="币种">
- <template #default="{ row, $index }">
- <el-form-item :prop="'accountRemainderList.' + $index + '.currency'" :rules="rules.currency" :inline-message="true"
- class="margin-b-0 wid100">
- <el-select v-model="row.currency" placeholder="请选择币种" style="width: 100%" :disabled="row.id">
- <el-option v-for="item in accountCurrency" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey" />
- </el-select>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="余额">
- <template #default="{ row, $index }">
- <el-form-item :prop="'accountRemainderList.' + $index + '.remainder'" :rules="rules.remainder" :inline-message="true"
- class="margin-b-0 wid100">
- <el-input-number onmousewheel="return false;" v-model="row.remainder" placeholder="请输入余额" style="width: 100%" :precision="2"
- :controls="false" :min="0" :disabled="row.id" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="80">
- <template #default="{ row, $index }">
- <el-button type="primary" link @click="handleRemove($index)" v-if="!row.id">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="default">取 消</el-button>
- <el-button type="primary" @click="submitForm()" size="default">确 定</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { computed, ref } from "vue";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import useUserStore from "@/store/modules/user";
- import { ElMessage, ElMessageBox } from "element-plus";
- const { proxy } = getCurrentInstance();
- const accountCurrency = ref([]);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- keyword: "",
- },
- });
- const loading = ref(false);
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "企业信息",
- prop: "corporationName",
- },
- },
- {
- attrs: {
- label: "类型",
- prop: "type",
- },
- render(val) {
- return proxy.dictValueLabel(val, typeData.value);
- },
- },
- {
- attrs: {
- label: "账户别名",
- prop: "alias",
- },
- },
- {
- attrs: {
- label: "开户银行",
- prop: "openingBank",
- },
- },
- {
- attrs: {
- label: "账户名",
- prop: "name",
- },
- },
- {
- attrs: {
- label: "账号",
- prop: "accountOpening",
- },
- },
- {
- attrs: {
- label: "联行号",
- prop: "interbankNumber",
- },
- },
- {
- attrs: {
- label: "操作",
- width: "120",
- align: "center",
- },
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "修改",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- update(row);
- },
- },
- {
- attrs: {
- label: "删除",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- ElMessageBox.confirm(
- "此操作将永久删除该数据, 是否继续?",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- ).then(() => {
- proxy
- .post("/accountManagement/delete", {
- id: row.id,
- })
- .then(() => {
- ElMessage({
- message: "删除成功",
- type: "success",
- });
- getList();
- });
- });
- },
- },
- ];
- },
- },
- ];
- });
- const corporationList = ref([]);
- const typeData = ref([
- {
- label: "公账",
- value: 10,
- },
- {
- label: "私账",
- value: 20,
- },
- ]);
- const getDict = () => {
- proxy
- .post("/dictTenantData/page", {
- pageNum: 1,
- pageSize: 999,
- dictCode: "account_currency",
- tenantId: useUserStore().user.tenantId,
- })
- .then((res) => {
- if (res.rows && res.rows.length > 0) {
- accountCurrency.value = res.rows;
- }
- });
- proxy
- .post("/corporation/page", { pageNum: 1, pageSize: 9999 })
- .then((res) => {
- corporationList.value = res.rows.map((item) => {
- return {
- ...item,
- label: item.name,
- value: item.id,
- };
- });
- });
- };
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post("/accountManagement/page", sourceList.value.pagination)
- .then((res) => {
- sourceList.value.data = res.rows;
- sourceList.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getDict();
- getList();
- const modalType = ref("add");
- const dialogVisible = ref(false);
- const loadingDialog = ref(false);
- const submit = ref(null);
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const formConfig = computed(() => {
- return [
- {
- type: "title1",
- title: "基本信息",
- },
- {
- type: "select",
- prop: "corporationId",
- label: "企业信息",
- data: corporationList.value,
- itemWidth: 50,
- },
- {
- type: "select",
- prop: "type",
- label: "类型",
- data: typeData.value,
- itemWidth: 50,
- },
- {
- type: "input",
- prop: "alias",
- label: "账户别名",
- required: true,
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "openingBank",
- label: "开户银行",
- required: true,
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "name",
- label: "账户名",
- required: true,
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "accountOpening",
- label: "账号",
- required: true,
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "interbankNumber",
- label: "联行号",
- required: true,
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "number",
- prop: "taxPoints",
- label: "税点",
- precision: 2,
- min: 0,
- max: 100,
- controls: false,
- itemWidth: 50,
- },
- {
- type: "input",
- prop: "taxpayerCode",
- label: "纳税人识别号",
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "beneficiaryAddress",
- label: "地址",
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "beneficiaryTel",
- label: "电话",
- itemWidth: 50,
- itemType: "text",
- },
- {
- type: "input",
- prop: "jdSubjectCode",
- label: "银行科目代码",
- },
- {
- type: "input",
- prop: "jdSubjectName",
- label: "银行科目名称",
- },
- // {
- // type: "title1",
- // title: "外汇信息",
- // },
- // {
- // type: "input",
- // prop: "beneficiaryName",
- // label: "Beneficiary Name",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "input",
- // prop: "beneficiaryBank",
- // label: "Beneficiary Bank",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "input",
- // prop: "beneficiaryBankAddress",
- // label: "Beneficiary Bank Address",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "input",
- // prop: "beneficiaryAccountNumber",
- // label: "Beneficiary Account Number",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "input",
- // prop: "swiftCode",
- // label: "Swift Code",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "input",
- // prop: "beneficiaryAddress",
- // label: "Beneficiary Address",
- // required: true,
- // itemType: "text",
- // itemWidth: 50,
- // },
- // {
- // type: "title1",
- // title: "账户余额",
- // },
- // {
- // type: "slot",
- // slotName: "balance",
- // label: "账户余额",
- // },
- ];
- });
- const rules = ref({
- alias: [{ required: true, message: "请输入账户别名", trigger: "blur" }],
- openingBank: [{ required: true, message: "请输入开户银行", trigger: "blur" }],
- name: [{ required: true, message: "请输入账户名", trigger: "blur" }],
- accountOpening: [{ required: true, message: "请输入账号", trigger: "blur" }],
- currency: [{ required: true, message: "请选择币种", trigger: "change" }],
- remainder: [{ required: true, message: "请输入账户余额", trigger: "blur" }],
- corporationId: [
- { required: true, message: "请选择业务公司", trigger: "change" },
- ],
- type: [{ required: true, message: "请选择类型", trigger: "change" }],
- taxPoints: [{ required: true, message: "请输入税点", trigger: "blur" }],
- });
- const formData = reactive({
- data: {
- accountRemainderList: [{ currency: "", remainder: undefined }],
- },
- });
- const openModal = (val) => {
- modalType.value = val;
- formData.data = {
- accountRemainderList: [{ currency: "", remainder: undefined }],
- };
- loadingDialog.value = false;
- dialogVisible.value = true;
- };
- const clickBalance = () => {
- if (
- formData.data.accountRemainderList &&
- formData.data.accountRemainderList.length > 0
- ) {
- formData.data.accountRemainderList.push({
- currency: "",
- remainder: undefined,
- });
- } else {
- formData.data.accountRemainderList = [
- { currency: "", remainder: undefined },
- ];
- }
- };
- const handleRemove = (index) => {
- formData.data.accountRemainderList.splice(index, 1);
- };
- const isRepeat = (arr) => {
- var hash = {};
- for (var i in arr) {
- if (hash[arr[i].currency]) return true;
- hash[arr[i].currency] = true;
- }
- return false;
- };
- const submitForm = () => {
- submit.value.handleSubmit(() => {
- loadingDialog.value = true;
- proxy.post("/accountManagement/" + modalType.value, formData.data).then(
- () => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- getList();
- },
- (err) => {
- console.log(err);
- loadingDialog.value = false;
- }
- );
- // if (
- // formData.data.accountRemainderList &&
- // formData.data.accountRemainderList.length > 0
- // ) {
- // if (isRepeat(formData.data.accountRemainderList)) {
- // return ElMessage("请勿重复添加货币余额");
- // } else {
- // loadingDialog.value = true;
- // proxy.post("/accountManagement/" + modalType.value, formData.data).then(
- // () => {
- // ElMessage({
- // message: modalType.value == "add" ? "添加成功" : "编辑成功",
- // type: "success",
- // });
- // dialogVisible.value = false;
- // getList();
- // },
- // (err) => {
- // console.log(err);
- // loadingDialog.value = false;
- // }
- // );
- // }
- // } else {
- // return ElMessage("请添加至少一条账户余额");
- // }
- });
- };
- const update = (row) => {
- modalType.value = "edit";
- loadingDialog.value = true;
- proxy.post("/accountManagement/detail", { id: row.id }).then((res) => {
- res.accountRemainderList = res.accountRemainderList.map((item) => {
- return {
- id: item.id,
- currency: item.currency,
- remainder: item.remainder,
- };
- });
- formData.data = res;
- loadingDialog.value = false;
- });
- dialogVisible.value = true;
- };
- </script>
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- </style>
|