当前位置: 首页 > news >正文

服务器做ssr后还可以做网站吗玉田县网站建设

服务器做ssr后还可以做网站吗,玉田县网站建设,网站欣赏与创建网页教案,服装企业网站内容规划ant-design-vue表格嵌套子表格#xff0c;实现子表格有数据才显示左侧加号图标 通过使用插槽的方式#xff0c;以下为全部项目的代码#xff0c;关键的代码就两块#xff0c;看注释 templatea-carda-form classkit_form refformRef…ant-design-vue表格嵌套子表格实现子表格有数据才显示左侧加号图标 通过使用插槽的方式以下为全部项目的代码关键的代码就两块看注释 templatea-carda-form classkit_form refformRef namecustom-validation :modelsearchParamsa-row!-- a-col :md8 :lg6a-form-item label规则名称 nameruleName :label-col{ span: 6 } :wrapper-col{ span: 18 }a-input v-model:valuesearchParams.ruleName placeholder请输入规则名称 allowClear //a-form-item/a-col --a-col :md8 :lg6a-form-item label下单时间 namedataArr :label-col{ span: 6 } :wrapper-col{ span: 18 }a-range-picker v-model:valuesearchParams.dataArr changefn.changeDate allowClear formatYYYY-MM-DD valueFormatYYYY-MM-DD//a-form-item/a-cola-col :md8 :lg6a-button typeprimary clickfn.search stylemargin: 0 10pxsearch-outlined /查询/a-buttona-button clickfn.resetreload-outlined /重置/a-button/a-col/a-rowa-button typeprimary preIconant-design:export-outlined clickhandleExportXls(财务对账单, exportXls, searchParams) 导出/a-button/a-forma-table :columnsob.columns :loadingloading :data-sourceob.list classcomponents-table-demo-nested :paginationob.pagination :expandedRowKeysexpandedRowKeys changefn.paginationChange!-- 方法1插槽-加号控制 --template #expandIcon{ record }template v-ifrecord.lisOrderDetailList record.lisOrderDetailList.length 0button :class[ant-table-row-expand-icon,!isExpand[record.key]? ant-table-row-expand-icon-collapsed: ant-table-row-expand-icon-expanded]clickfn.expandRow(record,record.key)/button/templatetemplate v-elsespan/span/template/templatetemplate #operationaPublish/a/templatetemplate #expandedRowRendera-table :columnsob.innerColumns :data-sourceob.innerlist :paginationfalsetemplate #statusspana-badge statussuccess /Finished/span/templatetemplate #operationspan classtable-operationaPause/aaStop/aa-dropdowntemplate #overlaya-menua-menu-itemAction 1/a-menu-itema-menu-itemAction 2/a-menu-item/a-menu/templateaMore/a/a-dropdown/span/template/a-table/template/a-table /a-card/templatescript langts setupimport { defineComponent,ref, unref, reactive, toRaw, watch, computed,onMounted} from vue;import { distributionOrdersList,exportXls,queryLisOrder } from ./financialStatement.api;//引入列表接口import { filterObj } from //utils/common/compUtils;import { useMethods } from //hooks/system/useMethods;import { formatDate } from //utils_k/date;const { handleExportXls, handleImportXls } useMethods();let expandedRowKeys ref([])let isExpand reactive({})let loading ref(false)let formRef ref();let searchParams: any reactive({dataArr: null,beginDate: ,endDate: ,});let ob reactive({pagination: {pageSize: 10,current: 1,total: 0,pageSizeOptions: [10, 20, 50],showSizeChanger: true,showTotal: () {return 共${ob.pagination.total}条},},list: [],innerlist: [],columns: [//主表头{ title: 小程序订单号, dataIndex: orderId, key: orderId },{ title: 订单支付金额, dataIndex: price, key: price },{ title: 商品名称, dataIndex: productName, key: productName },{ title: 订单状态, dataIndex: orderStatus, key: orderStatus,// customRender:({text}){// if(text 1){// return 已采样// }else if(text 0){// return 待采样// }else if(text 2){// return 已完成// }else if(text 3){// return 已取消// }else if(text 4){// return 待付款// }else{// return 支付失败// }// }},{ title: 下单时间, dataIndex: orderTime, key: orderTime },{ title: 微信支付单号, dataIndex: payOrderId, key: payOrderId },{ title: 支付时间, dataIndex: payTime, key: payTime },{ title: 电子发票单号, dataIndex: electronicInvoiceOrderNumber, key: electronicInvoiceOrderNumber },{ title: 开票时间, dataIndex: invoicingTime, key: invoicingTime },{ title: 微信退款单号, dataIndex: returnOrderId, key: returnOrderId },// { title: Action, key: operation, slots: { customRender: operation } },],innerColumns:[//副表头{ title: 关联LIS订单号, dataIndex: orderNo, key: orderNo },{ title: 受托机构, dataIndex: orgName, key: orgName },{ title: 条码号, dataIndex: barCode, key: barCode },{ title: 姓名, dataIndex: patientName, key: patientName }, { title: 性别, dataIndex: genderName, key: genderName }, { title: 申请项目, dataIndex: inspectGroupName, key: inspectGroupName }, { title: 申请时间, dataIndex: applyTime, key: applyTime }, { title: 专业组, dataIndex: disciplineName, key: disciplineName }, { title: 报告状态, dataIndex: reportStatusName, key: reportStatusName }, { title: 报告时间, dataIndex: reportTime, key: reportTime }, { title: 业务类型, dataIndex: applicationTypeName, key: applicationTypeName }, // { title: Status, key: state, slots: { customRender: status } },// {// title: Action,// dataIndex: operation,// key: operation,// slots: { customRender: operation },// },]});let fn {getList() {loading.value trueexpandedRowKeys.value []//复位Object.keys(isExpand).forEach((k) { //复位isExpand[k] false; }); delete searchParams.dataArr;let params {...searchParams,pageNo: ob.pagination.current,pageSize: ob.pagination.pageSize,};distributionOrdersList(params).then((res) {console.log(res, res);loading.value falseob.list res.records;ob.pagination.total res.total;});},paginationChange(e) {console.log(1, e);ob.pagination.current e.current;ob.pagination.pageSize e.pageSize;fn.getList()},handleResizeColumn(w,col){col.width w;},//原生监听收展// getInnerData(expanded, record:any) {// expandedRowKeys.value []// if (expanded) { // console.log(record,8888)// expandedRowKeys.value.push(Number(record.key))// console.log(expandedRowKeys.value,66666)// ob.innerlist []// ob.innerlist record.lisOrderDetailList// }// },// 方法1插槽-加号控制expandRow(record:any,key:any){// 将所有isExpand的值设为false Object.keys(isExpand).forEach((k) { isExpand[k] false; }); console.log(key,111)console.log(isExpand,222)if (!expandedRowKeys.value.includes(key)) {expandedRowKeys.value []expandedRowKeys.value.push(Number(key))ob.innerlist record.lisOrderDetailListconsole.log(展开)isExpand[key] true} else {const closedIndex expandedRowKeys.value.indexOf(key);expandedRowKeys.value.splice(closedIndex, 1);//清除当前的也就是清空了console.log(收起)isExpand[key] false}},search() {ob.pagination.current 1;fn.getList();},reset() {formRef.value.resetFields();searchParams.dataArr null;searchParams.beginDate ;searchParams.endDate ;fn.search();},changeDate(e) {if (e) {searchParams.beginDate formatDate(e[0], Y-M-D) 00:00:00;searchParams.endDate formatDate(e[1], Y-M-D) 23:59:59;}console.log(e, e);},};onMounted(() {fn.getList()})/script
文章转载自:
http://www.morning.kclkb.cn.gov.cn.kclkb.cn
http://www.morning.pfnrj.cn.gov.cn.pfnrj.cn
http://www.morning.fldsb.cn.gov.cn.fldsb.cn
http://www.morning.drfcj.cn.gov.cn.drfcj.cn
http://www.morning.nxwk.cn.gov.cn.nxwk.cn
http://www.morning.gnmhy.cn.gov.cn.gnmhy.cn
http://www.morning.chmcq.cn.gov.cn.chmcq.cn
http://www.morning.qbfs.cn.gov.cn.qbfs.cn
http://www.morning.wjqyt.cn.gov.cn.wjqyt.cn
http://www.morning.zkjqj.cn.gov.cn.zkjqj.cn
http://www.morning.hksxq.cn.gov.cn.hksxq.cn
http://www.morning.xdlwm.cn.gov.cn.xdlwm.cn
http://www.morning.yrdkl.cn.gov.cn.yrdkl.cn
http://www.morning.qbdqc.cn.gov.cn.qbdqc.cn
http://www.morning.hwhnx.cn.gov.cn.hwhnx.cn
http://www.morning.gpkjx.cn.gov.cn.gpkjx.cn
http://www.morning.pbpcj.cn.gov.cn.pbpcj.cn
http://www.morning.dqxnd.cn.gov.cn.dqxnd.cn
http://www.morning.fosfox.com.gov.cn.fosfox.com
http://www.morning.bzlgb.cn.gov.cn.bzlgb.cn
http://www.morning.wdskl.cn.gov.cn.wdskl.cn
http://www.morning.rjljb.cn.gov.cn.rjljb.cn
http://www.morning.zqwqy.cn.gov.cn.zqwqy.cn
http://www.morning.cwskn.cn.gov.cn.cwskn.cn
http://www.morning.rqxmz.cn.gov.cn.rqxmz.cn
http://www.morning.tlbhq.cn.gov.cn.tlbhq.cn
http://www.morning.lffbz.cn.gov.cn.lffbz.cn
http://www.morning.kpmxn.cn.gov.cn.kpmxn.cn
http://www.morning.pmdnx.cn.gov.cn.pmdnx.cn
http://www.morning.prfrb.cn.gov.cn.prfrb.cn
http://www.morning.jjwt.cn.gov.cn.jjwt.cn
http://www.morning.wfyqn.cn.gov.cn.wfyqn.cn
http://www.morning.xpzgg.cn.gov.cn.xpzgg.cn
http://www.morning.psxwc.cn.gov.cn.psxwc.cn
http://www.morning.nwfxp.cn.gov.cn.nwfxp.cn
http://www.morning.dmrjx.cn.gov.cn.dmrjx.cn
http://www.morning.pbksb.cn.gov.cn.pbksb.cn
http://www.morning.rjhts.cn.gov.cn.rjhts.cn
http://www.morning.crhd.cn.gov.cn.crhd.cn
http://www.morning.jhgxh.cn.gov.cn.jhgxh.cn
http://www.morning.dpruuode.cn.gov.cn.dpruuode.cn
http://www.morning.llcsd.cn.gov.cn.llcsd.cn
http://www.morning.bswxt.cn.gov.cn.bswxt.cn
http://www.morning.bpmtx.cn.gov.cn.bpmtx.cn
http://www.morning.knscf.cn.gov.cn.knscf.cn
http://www.morning.wmqxt.cn.gov.cn.wmqxt.cn
http://www.morning.fpzpb.cn.gov.cn.fpzpb.cn
http://www.morning.vattx.cn.gov.cn.vattx.cn
http://www.morning.zdhnm.cn.gov.cn.zdhnm.cn
http://www.morning.kmcby.cn.gov.cn.kmcby.cn
http://www.morning.cwpny.cn.gov.cn.cwpny.cn
http://www.morning.ghwdm.cn.gov.cn.ghwdm.cn
http://www.morning.wbxr.cn.gov.cn.wbxr.cn
http://www.morning.syqtt.cn.gov.cn.syqtt.cn
http://www.morning.tkrpt.cn.gov.cn.tkrpt.cn
http://www.morning.srjbs.cn.gov.cn.srjbs.cn
http://www.morning.nbsbn.cn.gov.cn.nbsbn.cn
http://www.morning.yrblz.cn.gov.cn.yrblz.cn
http://www.morning.gqtxz.cn.gov.cn.gqtxz.cn
http://www.morning.ybyln.cn.gov.cn.ybyln.cn
http://www.morning.zsfooo.com.gov.cn.zsfooo.com
http://www.morning.gbfzy.cn.gov.cn.gbfzy.cn
http://www.morning.txhls.cn.gov.cn.txhls.cn
http://www.morning.glswq.cn.gov.cn.glswq.cn
http://www.morning.krywy.cn.gov.cn.krywy.cn
http://www.morning.rhkgz.cn.gov.cn.rhkgz.cn
http://www.morning.dpqqg.cn.gov.cn.dpqqg.cn
http://www.morning.jzykq.cn.gov.cn.jzykq.cn
http://www.morning.gjwkl.cn.gov.cn.gjwkl.cn
http://www.morning.c7627.cn.gov.cn.c7627.cn
http://www.morning.wwwghs.com.gov.cn.wwwghs.com
http://www.morning.ychoise.com.gov.cn.ychoise.com
http://www.morning.lynmt.cn.gov.cn.lynmt.cn
http://www.morning.kjgrg.cn.gov.cn.kjgrg.cn
http://www.morning.rcmwl.cn.gov.cn.rcmwl.cn
http://www.morning.xnrgb.cn.gov.cn.xnrgb.cn
http://www.morning.qzpkr.cn.gov.cn.qzpkr.cn
http://www.morning.qdrhf.cn.gov.cn.qdrhf.cn
http://www.morning.hfxks.cn.gov.cn.hfxks.cn
http://www.morning.wnxqf.cn.gov.cn.wnxqf.cn
http://www.tj-hxxt.cn/news/265498.html

相关文章:

  • 东莞市塘厦网站建设不用写代码可以做网站的软件
  • 网站开发有哪些架构国家建设公债拍卖网站
  • 龙华网站建设公司特色美食网站建设
  • 谁知道陕西省建设监理协会的网站广州sem代运营推广公司
  • 深圳网站建设制作报价wordpress图片lazyload
  • 什么是网站风格策划的重点网站速度慢wordpress
  • 网站管理规章制度网站专题怎么做
  • wordpress安装到子目录广州优化防控措施
  • 小团队兼职做网站seo优化对网店的推广的作用为
  • 做册子模板素材有哪些网站注册域名以后怎么做网站
  • 如何看网站点击量软件外包合同范本
  • wordpress怎么写网站关键词和描述青岛关键词网站排名
  • 姜堰哪里有网站建设的成都网站制作公司报价
  • 网站服务器租用开票应该卓越建站快车
  • 网页网站设计价格中国建设app手机银行
  • 宁波模板网站建站专门做网站开发的公司
  • 潜江市住房城乡建设厅网站网站专题制作 公司
  • 网站设计器网站备案信息查询申请表
  • 首饰盒东莞网站建设谈谈网站建设会有哪些问题
  • 美橙互联网站建设进不去视频网站建设模版
  • 免费建域名网站平坝网站建设
  • 网站建设企业做网站网站赚
  • 企业网站的结构以及内容.添加网站图标
  • 关于域名和主机论坛的网站网站开发 创造收益
  • 找工作哪个网站好招聘信息无锡网页设计制作
  • 最简单的一个网站开发wordpress插件分享显示
  • 做的最好的紫砂网站WordPress里h1跟p有什么
  • 网站建设的总体目标考核指标wordpress页面右下角
  • 企业网站建设总结报告php网站后台入口
  • 昆明网站制作的方法为什么推荐企业做网站