Handy_Cao %!s(int64=2) %!d(string=hai) anos
pai
achega
00f9323f60

+ 1 - 1
public/config/appconfig.json

@@ -1,6 +1,6 @@
 {
   "version": "1.0.0",
   "versionCode": "100000",
-  "apiUrl": "http://192.168.31.202:8080/cfg?key=test_202",
+  "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "appName": "多元世纪"
 }

+ 1 - 2
src/packages/qxst/views/account/certification/components/certification-next/Index.vue

@@ -24,7 +24,7 @@
                 <Cell v-for="(item, index) in dataList" :key="index" @click="signer(item)">
                     <template #title>
                         <Icon :name="iconName(item.recordstatus)"></Icon>
-                        <Button :disable="item.recordstatus === 2">{{ item.templatename }}</Button>
+                        <Button :disable="item.recordstatus === 2" :text="true">{{ item.templatename }}</Button>
                     </template>
                 </Cell>
             </CellGroup>
@@ -138,7 +138,6 @@ onMounted(() => {
             if (res.data.length != 0) {
                 dataList.value = res.data
             }
-
             /// 只有全部签署才可以进行下一步
             canAdd.value = res.data.some(obj => { [1, 2, 4].includes(obj.recordstatus) })
         },

+ 1 - 1
src/services/http/index.ts

@@ -156,7 +156,7 @@ export default new (class {
      * @returns 
      */
     async goRequest<T>(config: AxiosRequestConfig, errMsg?: string) {
-        const baseUrl = 'http://192.168.30.172:8888/api'//service.getConfig('goAccess')
+        const baseUrl = service.getConfig('goAccess')
         config.url = baseUrl + config.url
         const res = await this.request<CommonResult<T>>(config, errMsg)
         switch (res.code) {