li.shaoyi 3 éve
szülő
commit
93f275c054

+ 1 - 1
src/@next/components/layout/footer/index.vue

@@ -7,7 +7,7 @@
       <mtp-tabbar class="mtp-tabbar--top" :data-source="components" label="title" @change="componentChange">
         <a-button class="operBtn" @click="getTradeAccountList">刷新</a-button>
         <!-- 资金信息 -->
-        <a-select class="select" style="width: 180px" placeholder="请选择账户" @change="tradeAccountChange" v-model:value="selectedAccountId">
+        <a-select class="select" style="width: 200px" placeholder="请选择账户" @change="tradeAccountChange" v-model:value="selectedAccountId">
           <a-select-option v-for="item in tradeAccountList" :value="item.accountid" :key="item.accountid">{{item.accountid}}/{{ item.accountname }}</a-select-option>
         </a-select>
         <div class="iconfont icon icon-shouqi" @click="isShow = !isShow"></div>

+ 3 - 0
src/views/business/search/spot/setup.ts

@@ -15,6 +15,7 @@ function getColumns() {
         {
             title: '对手方',
             key: 'negative',
+            width: 160,
             customRender: ({ record }: { record: Ermcp3ContractRsp }) => {
                 // 根据合同类型显示对手方
                 if (record.contracttype === 1) {
@@ -68,6 +69,7 @@ function getColumns() {
         {
             title: '点价期',
             key: 'startdate',
+            width: 200,
             customRender: ({ record }: { record: Ermcp3ContractRsp }) => {
                 return formatValue(formatTime(record.startdate, 'd') + '--' + formatTime(record.enddate, 'd'));
             }
@@ -75,6 +77,7 @@ function getColumns() {
         {
             title: '交收期',
             key: 'deliverystartdate',
+            width: 200,
             customRender: ({ record }: { record: Ermcp3ContractRsp }) => {
                 return formatValue(formatTime(record.deliverystartdate, 'd') + '--' + formatTime(record.deliveryenddate, 'd'));
             }

+ 2 - 2
src/views/information/spot-contract/components/add/index.vue

@@ -41,7 +41,7 @@
                 <a-select class="inlineFormSelect" style="width: 200px" :getPopupContainer="(triggerNode) => triggerNode.parentNode" v-model:value="formState.BuyUserID" placeholder="请选择客户">
                   <!-- 客户资料列表 正常 -->
                   <a-select-option :value="item.userid" v-for="item in customList" :key="item.userid">
-                    {{ item.nickname }}
+                    {{ item.customername }}
                   </a-select-option>
                 </a-select>
               </a-form-item>
@@ -63,7 +63,7 @@
                 <a-select class="inlineFormSelect" v-model:value="formState.SellUserID" style="width: 200px" :getPopupContainer="(triggerNode) => triggerNode.parentNode" placeholder="请选择客户">
                   <!-- 客户资料列表 正常 -->
                   <a-select-option :value="item.userid" v-for="item in customList" :key="item.userid">
-                    {{ item.nickname }}
+                    {{ item.customername }}
                   </a-select-option>
                 </a-select>
               </a-form-item>