| | |
| | | @click="toggleStepList(item)" |
| | | class="cursor-pointer border border-gray-300 border-solid w-fit px-2 flex items-center space-x-2 rounded-lg mb-3 hover:bg-gray-100 active:bg-gray-200" |
| | | > |
| | | <span> |
| | | <span > |
| | | {{ toggleStepLabel(item) }} |
| | | </span> |
| | | <span class="ywifont" :class="{ 'ywicon-unfold': !item.stepIsShow, 'ywicon-fold': item.stepIsShow }"></span> |
| | |
| | | <span v-else class="ywifont ywicon-loading1 animate-spin"></span> |
| | | </template> --> |
| | | <template #title> |
| | | <span>{{ subItem.title }}</span> |
| | | <span class="text-sm">{{ subItem.title }}</span> |
| | | </template> |
| | | </el-step> |
| | | </el-steps> |
| | |
| | | const createAxiosInstance = (option: Partial<CreateAxiosDefaults<any>> = {}) => { |
| | | return axios.create({ |
| | | baseURL: MAIN_URL, |
| | | timeout: 50000, |
| | | timeout: 120000, |
| | | headers: { 'Content-Type': 'application/json;charset=utf-8 ' }, |
| | | ...option, |
| | | }); |