mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 22:30:28 +08:00
更新components.js
This commit is contained in:
@@ -1316,7 +1316,7 @@ Vue.component("traffic-map-box",{props:["v-stats","v-is-attack"],mounted:functio
|
|||||||
<th class="width10">缓存时间</th>
|
<th class="width10">缓存时间</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-for="(cacheRef, index) in refs">
|
<tr v-for="(cacheRef, index) in refs">
|
||||||
<td :class="{'color-border': cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
<td :class="{'color-border': cacheRef.conds != null && cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
||||||
<http-request-conds-view :v-conds="cacheRef.conds" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
<http-request-conds-view :v-conds="cacheRef.conds" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
||||||
<http-request-cond-view :v-cond="cacheRef.simpleCond" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
<http-request-cond-view :v-cond="cacheRef.simpleCond" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
||||||
|
|
||||||
@@ -1335,8 +1335,11 @@ Vue.component("traffic-map-box",{props:["v-stats","v-is-attack"],mounted:functio
|
|||||||
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
|
<span v-if="cacheRef.conds != null">
|
||||||
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
||||||
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>或</span>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
||||||
@@ -1898,7 +1901,7 @@ Vue.component("traffic-map-box",{props:["v-stats","v-is-attack"],mounted:functio
|
|||||||
<tbody v-for="(cacheRef, index) in refs" :key="cacheRef.id" :v-id="cacheRef.id">
|
<tbody v-for="(cacheRef, index) in refs" :key="cacheRef.id" :v-id="cacheRef.id">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;"><i class="icon bars handle grey"></i> </td>
|
<td style="text-align: center;"><i class="icon bars handle grey"></i> </td>
|
||||||
<td :class="{'color-border': cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
<td :class="{'color-border': cacheRef.conds != null && cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
||||||
<http-request-conds-view :v-conds="cacheRef.conds" ref="cacheRef" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
<http-request-conds-view :v-conds="cacheRef.conds" ref="cacheRef" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
||||||
<http-request-cond-view :v-cond="cacheRef.simpleCond" ref="cacheRef" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
<http-request-cond-view :v-cond="cacheRef.simpleCond" ref="cacheRef" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
||||||
|
|
||||||
@@ -1917,8 +1920,11 @@ Vue.component("traffic-map-box",{props:["v-stats","v-is-attack"],mounted:functio
|
|||||||
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
|
<span v-if="cacheRef.conds != null">
|
||||||
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
||||||
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>或</span>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
||||||
@@ -2829,7 +2835,7 @@ Vue.component("traffic-map-box",{props:["v-stats","v-is-attack"],mounted:functio
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<div class="margin"></div>
|
<div class="margin"></div>
|
||||||
</div>`}),Vue.component("http-cache-policy-selector",{props:["v-cache-policy"],mounted:function(){let t=this;Tea.action("/servers/components/cache/count").post().success(function(e){t.count=e.data.count})},data:function(){return{count:0,cachePolicy:this.vCachePolicy}},methods:{remove:function(){this.cachePolicy=null},select:function(){let t=this;teaweb.popup("/servers/components/cache/selectPopup",{callback:function(e){t.cachePolicy=e.data.cachePolicy}})},create:function(){let t=this;teaweb.popup("/servers/components/cache/createPopup",{height:"26em",callback:function(e){t.cachePolicy=e.data.cachePolicy}})}},template:`<div>
|
</div>`}),Vue.component("http-cache-policy-selector",{props:["v-cache-policy"],mounted:function(){let t=this;Tea.action("/servers/components/cache/count").post().success(function(e){t.count=e.data.count})},data:function(){return{count:0,cachePolicy:this.vCachePolicy}},methods:{remove:function(){this.cachePolicy=null},select:function(){let t=this;teaweb.popup("/servers/components/cache/selectPopup",{width:"42em",height:"26em",callback:function(e){t.cachePolicy=e.data.cachePolicy}})},create:function(){let t=this;teaweb.popup("/servers/components/cache/createPopup",{height:"26em",callback:function(e){t.cachePolicy=e.data.cachePolicy}})}},template:`<div>
|
||||||
<div v-if="cachePolicy != null" class="ui label basic">
|
<div v-if="cachePolicy != null" class="ui label basic">
|
||||||
<input type="hidden" name="cachePolicyId" :value="cachePolicy.id"/>
|
<input type="hidden" name="cachePolicyId" :value="cachePolicy.id"/>
|
||||||
{{cachePolicy.name}} <a :href="'/servers/components/cache/policy?cachePolicyId=' + cachePolicy.id" target="_blank" title="修改"><i class="icon pencil small"></i></a> <a href="" @click.prevent="remove()" title="删除"><i class="icon remove small"></i></a>
|
{{cachePolicy.name}} <a :href="'/servers/components/cache/policy?cachePolicyId=' + cachePolicy.id" target="_blank" title="修改"><i class="icon pencil small"></i></a> <a href="" @click.prevent="remove()" title="删除"><i class="icon remove small"></i></a>
|
||||||
|
|||||||
@@ -3763,7 +3763,7 @@ Vue.component("http-cache-refs-box", {
|
|||||||
<th class="width10">缓存时间</th>
|
<th class="width10">缓存时间</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-for="(cacheRef, index) in refs">
|
<tr v-for="(cacheRef, index) in refs">
|
||||||
<td :class="{'color-border': cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
<td :class="{'color-border': cacheRef.conds != null && cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
||||||
<http-request-conds-view :v-conds="cacheRef.conds" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
<http-request-conds-view :v-conds="cacheRef.conds" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
||||||
<http-request-cond-view :v-cond="cacheRef.simpleCond" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
<http-request-cond-view :v-cond="cacheRef.simpleCond" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
||||||
|
|
||||||
@@ -3782,8 +3782,11 @@ Vue.component("http-cache-refs-box", {
|
|||||||
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
|
<span v-if="cacheRef.conds != null">
|
||||||
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
||||||
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>或</span>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
||||||
@@ -5866,7 +5869,7 @@ Vue.component("http-cache-refs-config-box", {
|
|||||||
<tbody v-for="(cacheRef, index) in refs" :key="cacheRef.id" :v-id="cacheRef.id">
|
<tbody v-for="(cacheRef, index) in refs" :key="cacheRef.id" :v-id="cacheRef.id">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;"><i class="icon bars handle grey"></i> </td>
|
<td style="text-align: center;"><i class="icon bars handle grey"></i> </td>
|
||||||
<td :class="{'color-border': cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
<td :class="{'color-border': cacheRef.conds != null && cacheRef.conds.connector == 'and', disabled: !cacheRef.isOn}" :style="{'border-left':cacheRef.isReverse ? '1px #db2828 solid' : ''}">
|
||||||
<http-request-conds-view :v-conds="cacheRef.conds" ref="cacheRef" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
<http-request-conds-view :v-conds="cacheRef.conds" ref="cacheRef" :class="{disabled: !cacheRef.isOn}" v-if="cacheRef.conds != null && cacheRef.conds.groups != null"></http-request-conds-view>
|
||||||
<http-request-cond-view :v-cond="cacheRef.simpleCond" ref="cacheRef" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
<http-request-cond-view :v-cond="cacheRef.simpleCond" ref="cacheRef" v-if="cacheRef.simpleCond != null"></http-request-cond-view>
|
||||||
|
|
||||||
@@ -5885,8 +5888,11 @@ Vue.component("http-cache-refs-config-box", {
|
|||||||
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
<grey-label v-if="cacheRef.enableIfModifiedSince">If-Modified-Since</grey-label>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
|
<span v-if="cacheRef.conds != null">
|
||||||
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
<span v-if="cacheRef.conds.connector == 'and'">和</span>
|
||||||
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
<span v-if="cacheRef.conds.connector == 'or'">或</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>或</span>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled: !cacheRef.isOn}">
|
<td :class="{disabled: !cacheRef.isOn}">
|
||||||
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
<span v-if="!cacheRef.isReverse">{{cacheRef.life.count}} {{timeUnitName(cacheRef.life.unit)}}</span>
|
||||||
@@ -8205,6 +8211,8 @@ Vue.component("http-cache-policy-selector", {
|
|||||||
select: function () {
|
select: function () {
|
||||||
let that = this
|
let that = this
|
||||||
teaweb.popup("/servers/components/cache/selectPopup", {
|
teaweb.popup("/servers/components/cache/selectPopup", {
|
||||||
|
width: "42em",
|
||||||
|
height: "26em",
|
||||||
callback: function (resp) {
|
callback: function (resp) {
|
||||||
that.cachePolicy = resp.data.cachePolicy
|
that.cachePolicy = resp.data.cachePolicy
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user