123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587 |
- <!-- 购卡订单 -->
- <template>
- <div class="silent-expire-alarm">
- <!-- 搜索条件区 -->
- <!-- <div class="search-section">
- <a-form :model="searchForm" layout="inline">
- <a-form-item field="cardNumber" label="订单编号">
- <a-input v-model="searchForm.orderNumber" placeholder="请输入订单编号" allow-clear />
- </a-form-item>
- <a-form-item field="customerName" label="客户">
- <a-input v-model="searchForm.customerName" placeholder="请输入客户名称" allow-clear />
- </a-form-item>
- <a-form-item>
- <a-space>
- <a-button type="primary" @click="handleSearch">搜索</a-button>
- <a-button @click="resetSearch">重置</a-button>
- </a-space>
- </a-form-item>
- </a-form>
- </div> -->
- <div class="audit-btn">
- <a-button @click="openAudit" type="text">
- <template #icon>
- <icon-plus-circle />
- </template>
- <template #default>购卡</template>
- </a-button>
- </div>
- <!-- 数据表格 -->
- <a-table :data="tableData" :pagination="pageData" :columns="columns" @page-change="evChangePage"
- :scroll="{ x: '100%', y: '800px' }">
- <template #status="{ record }">
- {{ record.status }}
- </template>
- <template #moderation_status="{ record }">
- {{ record.moderation_status }}
- </template>
- <template #operate="{ record }">
- <div v-if="userType == 1 && record.moderation_status == 1">
- <a-popconfirm :content="`是否通过?`" type="warning" @ok="platformCancel(record, 2)">
- <a-button type="text">通过</a-button>
- </a-popconfirm>
- <a-popconfirm :content="`是否驳回`" type="warning" @ok="platformCancel(record, 3)">
- <a-button type="text">驳回</a-button>
- </a-popconfirm>
- </div>
- <div v-if="userType == 2">
- <a-popconfirm :content="`是否确认退订?`" type="warning" @ok="adminCancel(record)">
- <a-button type="text">退订</a-button>
- </a-popconfirm>
- </div>
- <!-- <a-button @click="openDetail(record, 2)" type="text">查看</a-button> -->
- </template>
- </a-table>
- <a-modal v-model:visible="uploadContract" title="上传合同" @cancel="handleCancel" @before-ok="handleBeforeOk"
- okText="保存" cancelText="关闭">
- <a-form :model="formContract" auto-label-width>
- <a-form-item field="orderNumber" label="单号">
- <!-- <a-input v-model="formContract.orderNumber" disabled placeholder="请输入单号" /> -->
- <div class="audit-txt">{{ formContract.orderNumber }}</div>
- </a-form-item>
- <a-form-item field="customerName" label="客户">
- <!-- <a-input v-model="formContract.customerName" disabled placeholder="请输入客户" /> -->
- <div class="audit-txt" style="color:#418035;">{{ formContract.customerName }}</div>
- </a-form-item>
- <a-form-item field="fileList" label="销售合同">
- <a-upload action="/" :default-file-list="formContract.fileList" />
- </a-form-item>
- </a-form>
- </a-modal>
- <!-- 创建 -->
- <a-modal v-model:visible="showAudit" title="购卡" width="600px" @cancel="cancelPurchase" centered
- :maskClosable="false" okText="确定" cancelText="关闭" :footer="null">
- <a-form ref="formRef" :rules="rules" :model="formState" @submit="submitPurchase">
- <a-form-item field="customerName" label="客户名称">
- <!-- <a-input v-model="formAudit.customerName" placeholder="请输入客户" /> -->
- <div class="audit-txt">{{ userName }}</div>
- </a-form-item>
- <a-form-item label="运营商" field="source">
- <a-select v-model="formState.source" :style="{ width: '380px' }" placeholder="请选择运营商">
- <a-option v-for="item of sourceList" :value="item.id" :label="item.label" />
- </a-select>
- </a-form-item>
- <a-form-item label="资费名称" field="tariffId">
- <a-select v-model="formState.tariffId" :style="{ width: '380px' }" @change="tariffChange"
- placeholder="请选择资费ID">
- <a-option v-for="item of tariffData" :value="item.value" :label="item.label" />
- </a-select>
- </a-form-item>
- <!-- <a-form-item label="资费详情" v-if="formState.tariffId">
- <div class="audit-txt">
- <div class="audit-tag">套餐类型<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- </div>
- </a-form-item>
- <a-form-item label="资费计费详情" v-if="formState.tariffId">
- <div class="audit-txt">
- <div class="audit-tag">套餐类型<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- <div class="audit-tag">资费编码<span>流量</span></div>
- </div>
- </a-form-item> -->
- <a-form-item label="卡类型" field="cardType">
- <a-select v-model="formState.cardType" :style="{ width: '380px' }" placeholder="请选择卡类型">
- <a-option v-for="item of orderType" :value="item.value" :label="item.label" />
- </a-select>
- </a-form-item>
- <a-form-item label="沉默期">
- <a-select v-model="formState.silencePeriod" :style="{ width: '380px' }" placeholder="请选择沉默期">
- <a-option v-for="item of silenceOptions" :value="item.value" :label="item.label" />
- </a-select>
- </a-form-item>
- <a-form-item label="流量池" field="flowPool">
- <a-radio-group v-model="formState.flowPool" :options="flowPoolData">
- <template #label="{ data }">
- <a-tag>{{ data.label }}</a-tag>
- </template>
- </a-radio-group>
- </a-form-item>
- <a-form-item label="购卡数量" field="num">
- <a-input v-model="formState.num" placeholder="请输入购卡数量" />
- </a-form-item>
- <a-form-item>
- <a-button type="primary" html-type="submit" style="margin-right: 10px;">确定</a-button>
- <a-button @click="cancelPurchase">取消</a-button>
- </a-form-item>
- </a-form>
- </a-modal>
- <!-- 详情 -->
- <a-modal v-model:visible="showDetail" width="800px" :title="currentIndex == 1 ? '退卡详情' : '查看'"
- @cancel="showDetail = false" :footer="null">
- <div class="detail-box">
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">订单编号</div>
- <div class="item-content">53357981207</div>
- </div>
- <div class="detail-item">
- <div class="item-label">订单状态</div>
- <div class="item-content">已发货</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">发货日期</div>
- <div class="item-content">2024-10-24 17:46:33</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">运营商</div>
- <div class="item-content">泰国AIS</div>
- </div>
- <div class="detail-item">
- <div class="item-label">资费信息</div>
- <div class="item-content">1.0G/月</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">最短订阅周期</div>
- <div class="item-content">3个月</div>
- </div>
- <div class="detail-item">
- <div class="item-label">最长订阅周期</div>
- <div class="item-content">--</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">计费方式</div>
- <div class="item-content">按单流量消耗计费</div>
- </div>
- <div class="detail-item">
- <div class="item-label">结算周期</div>
- <div class="item-content">月</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">流量资费计费</div>
- <div class="item-content">0.8美金/G;MRC:0元;网络接入0元</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">卡类型</div>
- <div class="item-content">工业级PlugIn</div>
- </div>
- <div class="detail-item">
- <div class="item-label">卡板费</div>
- <div class="item-content">1美金</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">流量池</div>
- <div class="item-content">组池</div>
- </div>
- <div class="detail-item">
- <div class="item-label">沉默期</div>
- <div class="item-content">6个月</div>
- </div>
- </div>
- <div class="detail-item-box">
- <div class="detail-item">
- <div class="item-label">卡数量</div>
- <div class="item-content">10000;已分配0,已退回0,已转移0
- <!-- <a-button type="primary" @click="showCard = true" style="margin-left:10px;">分配卡号</a-button> -->
- </div>
- </div>
- </div>
- </div>
- <div class="detail-table">
- <a-table :columns="columnsDetail" :data="dataDetail" />
- </div>
- <div style="text-align: right;margin-top: 20px;">
- <a-button type="primary" html-type="submit" style="margin-right: 10px;" @click="operateHandle">确定</a-button>
- </div>
- </a-modal>
- <!-- <a-modal v-model:visible="showCard" width="800px" title="分配卡号" @cancel="showCard = false" @before-ok="submitCard"
- okText="确认" cancelText="取消">
- <a-textarea :auto-size="{
- minRows: 15,
- maxRows: 15
- }" v-model="cardNumber" max-length="1000" :show-word-limit="true" placeholder="请输入iccid,一行一个或者逗号分隔;不支持两种混合号码。"
- allow-clear />
- </a-modal> -->
- </div>
- </template>
- <script setup>
- import { ref, reactive, onMounted } from 'vue';
- import { Message } from '@arco-design/web-vue';
- import { enum_dict } from "@/hooks/enum";
- import { tariffList } from "@/api/path/tariffManagement.api";
- import { purchaseOrderList, addPurchaseOrder, platformUpdate, adminUpdate } from '@/api/path/purchase';
- const selectedKeys = ref([]);
- const rowSelection = reactive({
- type: 'checkbox',
- showCheckedAll: true,
- onlyCurrent: false,
- });
- const searchForm = reactive({
- cardNumber: '',
- customerName: '',
- });
- const columns = [
- { title: '订单编号', dataIndex: 'id', align: 'center', width: 300 },
- { title: '客户名称', dataIndex: 'user_id', align: 'center' },
- { title: '订阅状态', slotName: 'status', align: 'center' },
- { title: '审核状态', slotName: 'moderation_status', align: 'center' },
- { title: '采购数量', dataIndex: 'quantity', align: 'center' },
- { title: '支付金额', dataIndex: 'payment_amount', align: 'center' },
- { title: '下单时间', dataIndex: 'created_at', align: 'center' },
- { title: '操作', slotName: 'operate', align: 'center' }
- ];
- const columnsDetail = [{ title: 'ICCID', dataIndex: 'iccid' },
- { title: '池名称及编号', dataIndex: 'nameAndId' },
- { title: '卡状态', dataIndex: 'status' },
- ]
- const dataDetail = ref([{
- iccid: '8986061800002054589N',
- nameAndId: '泰国监控40G共享/53357981207',
- status: '沉默期'
- },
- {
- iccid: '8986061800002054588N',
- nameAndId: '泰国监控40G共享/53357981207',
- status: '沉默期'
- }, {
- iccid: '8986061800002054587N',
- nameAndId: '泰国监控40G共享/53357981207',
- status: '沉默期'
- }, {
- iccid: '8986061800002054586N',
- nameAndId: '泰国监控40G共享/53357981207',
- status: '沉默期'
- },])
- const userName = ref('')
- const userType = ref(''); // 1平台 2用户
- const tableData = ref([]);
- const formRef = ref(null);
- const currentIndex = ref(null);
- const rules = {
- source: [{ required: true, trigger: 'change', }],
- tariffId: [
- {
- required: true,
- trigger: 'change',
- },
- ],
- cardType: [
- {
- required: true,
- trigger: 'change',
- },
- ],
- flowPool: [
- {
- required: true,
- trigger: 'change',
- },
- ],
- num: [
- {
- required: true,
- trigger: 'change',
- },
- ],
- };
- const pageData = ref({
- total: 0,
- size: 10,
- current: 1,
- })
- const formState = ref({
- source: null,
- tariffId: null,
- cardType: null,
- silencePeriod: null,
- flowPool: null,
- num: null
- })
- const sourceList = ref([]) // 来源
- const tariffData = ref([]) // 自费
- const silenceOptions = ref([]); // 沉默期
- const orderType = ref([]); // 卡类型
- const flowPoolData = ref([]); // 组池
- const showAudit = ref(false);
- const handleDictValue = () => {
- const dictList = JSON.parse(window.localStorage.getItem('dictList')) ?? []
- sourceList.value = dictList.filter((item) => item.type_key == enum_dict.SOURCE)
- orderType.value = dictList.filter((item) => item.type_key == enum_dict.CARD_TYPE)
- flowPoolData.value = dictList.filter((item) => item.type_key == enum_dict.GROUP_POOL)
- silenceOptions.value = dictList.filter((item) => item.type_key == enum_dict.SILENCE)
- }
- // 订单列表
- const intData = () => {
- const param = {
- current: pageData.value.current,
- size: pageData.value.size,
- }
- purchaseOrderList(param).then(res => {
- tableData.value = res.data.records;
- pageData.value.total = res.data.total;
- })
- }
- // 资费
- const getTariff = () => {
- const param = {
- current: 1,
- size: 999,
- }
- tariffList(param).then(res => {
- tariffData.value = res.data.records.map(item => ({
- label: item.label,
- value: item.id,
- ...item
- }));
- })
- }
- // 确认购卡
- const submitPurchase = ({ values, errors }) => {
- formRef.value.validate(async (errors) => {
- if (!errors) {
- const data = {
- source: String(formState.value.source),
- tariff_id: formState.value.tariffId,
- quantity: Number(formState.value.num),
- card_type: formState.value.cardType,
- period_of_silence: String(formState.value.silencePeriod),
- is_traffic_pool: formState.value.flowPool
- }
- addPurchaseOrder(data).then(res => {
- intData();
- showAudit.value = false;
- })
- }
- })
- }
- // 取消
- const cancelPurchase = () => {
- showAudit.value = false;
- formRef.value.resetFields();
- Object.assign(formState, {
- source: null,
- tariffId: null,
- cardType: null,
- silencePeriod: null,
- flowPool: 0,
- num: null
- });
- }
- // 平台退订
- const platformCancel = (data, type) => {
- const param = {
- id: data.id,
- status: type
- }
- platformUpdate(param).then(res => {
- intData();
- })
- }
- // 用户退订
- const adminCancel = (data) => {
- const param = {
- id: data.id,
- status: data.status
- }
- adminUpdate(param).then(res => {
- intData();
- })
- }
- //
- const tariffChange = (e) => {
- formState.value.tariffId = e;
- // tariffObj.value = res.data.records.map(item=>{
- // })
- }
- //
- const operateHandle = () => {
- if (currentIndex.value == 1) {
- } else {
- showDetail.value = false;
- }
- }
- // 分页
- const evChangePage = (page) => {
- pageData.value.current = page
- intData()
- }
- onMounted(() => {
- intData();
- userName.value = localStorage.getItem('remember_user_name');
- userType.value = localStorage.getItem('role');
- })
- // 上传合同的弹框
- const uploadContract = ref(false);
- const openContract = (item) => {
- console.log(item, '???')
- uploadContract.value = true;
- formContract.customerName = item.customerName;
- formContract.orderNumber = item.cardNumber;
- };
- //订单详情的弹框
- const showDetail = ref(false);
- // 查看订单详情
- const openDetail = (item, current) => {
- currentIndex.value = current;
- showDetail.value = true;
- }
- const handleBeforeOk = (done) => {
- console.log(formContract)
- window.setTimeout(() => {
- done()
- // prevent close
- // done(false)
- }, 3000)
- };
- const handleCancel = () => {
- uploadContract.value = false;
- }
- const handleSearch = () => {
- console.log('Search form data:', searchForm);
- Message.success('执行搜索操作');
- };
- const resetSearch = () => {
- Object.keys(searchForm).forEach(key => {
- if (Array.isArray(searchForm[key])) {
- searchForm[key] = [];
- } else {
- searchForm[key] = null;
- }
- });
- Message.success('搜索条件已重置');
- };
- // 文件上传的列表
- const formContract = reactive({
- orderNumber: '',
- customerName: '',
- fileList: []
- })
- // 触发购卡弹框
- const openAudit = () => {
- showAudit.value = true;
- handleDictValue();
- getTariff();
- }
- // 分配卡号的值
- const cardNumber = ref('');
- const showCard = ref(false);
- const submitCard = () => {
- }
- </script>
- <style scoped lang="less">
- .silent-expire-alarm {
- padding: 20px !important;
- // background: #fcf;
- }
- .search-section {
- margin-bottom: 20px;
- }
- .arco-table-th {
- white-space: nowrap;
- }
- .audit-txt {
- display: flex;
- flex-wrap: wrap;
- .audit-tag {
- width: 180px;
- color: #b2b2b2;
- margin-right: 20px;
- span {
- color: #000;
- margin-left: 20px;
- }
- }
- }
- .audit-btn {
- margin-bottom: 10px;
- }
- .detail-box {
- .detail-item-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- .detail-item {
- //styleName: Body/Medium;
- font-family: PingFang SC;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- text-align: left;
- display: flex;
- align-items: center;
- min-width: 350px;
- .item-label {
- color: rgba(0, 0, 0, 0.4);
- width: 120px;
- text-align: right;
- margin-right: 10px;
- }
- .item-content {
- color: rgba(51, 51, 51, 1);
- }
- }
- }
- }
- .detail-table {
- margin-top: 20px;
- }
- </style>
|